Files
llvm-6502/test/Transforms/SimplifyLibCalls/IsDigit.ll
Reid Spencer 3ec93c593c Make sure both optimization cases get tested.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21687 91177308-0d34-0410-b5e6-96231b3b80d8
2005-05-04 17:45:10 +00:00

19 lines
503 B
LLVM

; Test that the IsDigitOptimizer works correctly
; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*isdigit'
declare int %isdigit(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)
ret int %rslt
}