search for: str11

Displaying 1 result from an estimated 1 matches for "str11".

Did you mean: str1
2009 Jul 14
1
[LLVMdev] An array of instructions?
Another question today: an array of string literals in my C program was transformed to independent global variables, each holding one string, and another array of getelementptr's to them, here it is: @words= global [5 x i8*] [ i8* getelementptr ([10 x i8]* @.str11, i32 0, i32 0), i8* getelementptr ([6 x i8]* @.str12, i32 0, i32 0), i8* getelementptr ([7 x i8]* @.str13, i32 0, i32 0), i8* getelementptr ([6 x i8]* @.str14, i32 0, i32 0), i8* getelementptr ([11 x i8]* @.str15, i32 0, i32 0) ] ; <[5 x i8*]*> [#uses=1] Does this make sense? Are...