1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Cleanup test

llvm-svn: 10090
This commit is contained in:
Chris Lattner 2003-11-19 19:42:12 +00:00
parent 072ae8be8f
commit e3dc8c0190

View File

@ -6,16 +6,13 @@
; 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]
%tmp.2 = load sbyte** %envp.1
%tmp.3 = call uint %strlen( sbyte* %tmp.2 )
%T = seteq uint %tmp.3, 0
%R = cast bool %T to int
ret int %R