llvm-6502/test/Transforms/SimplifyLibCalls/ExitInMain.ll
Reid Spencer 894cfffea1 For PR1319:
Convert to new test system. This exposes IsDigit.ll as failing.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36046 91177308-0d34-0410-b5e6-96231b3b80d8
2007-04-15 05:16:38 +00:00

16 lines
373 B
LLVM

; Test that the ExitInMainOptimization pass works correctly
; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | \
; RUN: grep -c {ret i32 3} | grep 1
; END.
declare void %exit(int)
declare void %exitonly(int)
implementation ; Functions:
int %main () {
call void %exitonly ( int 3 )
call void %exit ( int 3 )
ret int 0
}