1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/ExecutionEngine/2003-08-21-EnvironmentTest.ll

24 lines
489 B
LLVM
Raw Normal View History

; RUN: llvm-upgrade %s | llvm-as -f -o %t.bc
2004-11-07 00:32:43 +01:00
; RUN: lli %t.bc > /dev/null
;
; Regression Test: EnvironmentTest.ll
;
; Description:
; This is a regression test that verifies that the JIT passes the
; environment to the main() function.
;
2003-08-21 23:33:19 +02:00
implementation
declare uint %strlen(sbyte*)
int %main(int %argc.1, sbyte** %argv.1, sbyte** %envp.1) {
2003-11-19 20:42:12 +01:00
%tmp.2 = load sbyte** %envp.1
%tmp.3 = call uint %strlen( sbyte* %tmp.2 )
2003-08-21 23:33:19 +02:00
%T = seteq uint %tmp.3, 0
%R = cast bool %T to int
ret int %R
}