mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
8fe86dde1c
* 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
14 lines
339 B
LLVM
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
|
|
}
|