blob: 82d4d460b957201844c393810f2395bd59e0af50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
;
; Regression Test: EnvironmentTest.ll
;
; Description:
; This is a regression test that verifies that the JIT passes the
; environment to the main() function.
;
target endian = little
target pointersize = 32
implementation
declare uint %strlen(sbyte*)
int %main(int %argc.1, sbyte** %argv.1, sbyte** %envp.1) {
%tmp.2 = load sbyte** %envp.1 ; <sbyte*> [#uses=2]
%tmp.3 = call uint %strlen( sbyte* %tmp.2 ) ; <uint> [#uses=1]
%T = seteq uint %tmp.3, 0
%R = cast bool %T to int
ret int %R
}
|