Lines Matching full:strcmp
11 declare i32 @strcmp(i8*, i8*)
13 ; strcmp("", x) -> -*x
15 %temp1 = call i32 @strcmp(i8* getelementptr inbounds ([1 x i8]* @null, i32 0, i32 0), i8* %str)
24 ; strcmp(x, "") -> *x
26 %temp1 = call i32 @strcmp(i8* %str, i8* getelementptr inbounds ([1 x i8]* @null, i32 0, i32 0))
34 ; strcmp(x, y) -> cnst
36 %temp1 = call i32 @strcmp(i8* getelementptr inbounds ([5 x i8]* @hell, i32 0, i32 0), i8* getelementptr inbounds ([6 x i8]* @hello, i32 0, i32 0))
42 %temp1 = call i32 @strcmp(i8* getelementptr inbounds ([5 x i8]* @hell, i32 0, i32 0), i8* getelementptr inbounds ([1 x i8]* @null, i32 0, i32 0))
48 ; strcmp(x, y) -> memcmp(x, y, <known length>)
52 %temp1 = call i32 @strcmp(i8* getelementptr inbounds ([6 x i8]* @hello, i32 0, i32 0), i8* %sel)
59 ; strcmp(x,x) -> 0
61 %temp1 = call i32 @strcmp(i8* %str, i8* %str)