diff options
Diffstat (limited to 'test/Transforms/SimplifyLibCalls/IsDigit.ll')
-rw-r--r-- | test/Transforms/SimplifyLibCalls/IsDigit.ll | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/Transforms/SimplifyLibCalls/IsDigit.ll b/test/Transforms/SimplifyLibCalls/IsDigit.ll new file mode 100644 index 0000000..bcdb60c --- /dev/null +++ b/test/Transforms/SimplifyLibCalls/IsDigit.ll @@ -0,0 +1,21 @@ +; Test that the IsDigitOptimizer works correctly +; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | \ +; RUN: not grep call + +declare int %isdigit(int) +declare int %isascii(int) + +implementation ; Functions: + +int %main () { + %val1 = call int %isdigit(int 47) + %val2 = call int %isdigit(int 48) + %val3 = call int %isdigit(int 57) + %val4 = call int %isdigit(int 58) + %rslt1 = add int %val1, %val2 + %rslt2 = add int %val3, %val4 + %sum = add int %rslt1, %rslt2 + %rslt = call int %isdigit(int %sum) + %tmp = call int %isascii(int %rslt) + ret int %tmp +} |