2003-10-29-ArrayProblem.ll 477 B

12345678910111213141516
  1. ; RUN: opt < %s -scalarrepl -S | grep "alloca %%T"
  2. %T = type { [80 x i8], i32, i32 }
  3. declare i32 @.callback_1(i8*)
  4. declare void @.iter_2(i32 (i8*)*, i8*)
  5. define i32 @main() {
  6. %d = alloca %T ; <{ [80 x i8], i32, i32 }*> [#uses=2]
  7. %tmp.0 = getelementptr %T, %T* %d, i64 0, i32 2 ; <i32*> [#uses=1]
  8. store i32 0, i32* %tmp.0
  9. %tmp.1 = getelementptr %T, %T* %d, i64 0, i32 0, i64 0 ; <i8*> [#uses=1]
  10. call void @.iter_2( i32 (i8*)* @.callback_1, i8* %tmp.1 )
  11. ret i32 0
  12. }