llvm-6502/test/Transforms/SimplifyLibCalls/ExitInMain.ll
Reid Spencer 8fe86dde1c * Add a test case for StrLenOptimization
* Rename ExitInMain and StrCat tests so they don't have the date the
  regression was entered since they are feature tests, not regressions.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21558 91177308-0d34-0410-b5e6-96231b3b80d8
2005-04-26 05:22:38 +00:00

14 lines
339 B
LLVM

; Test that the ExitInMainOptimization pass works correctly
; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | grep -c 'ret int 3' | grep 1
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
}