diff options
Diffstat (limited to 'test/Transforms/ScalarRepl/2009-02-02-ScalarPromoteOutOfRange.ll')
-rw-r--r-- | test/Transforms/ScalarRepl/2009-02-02-ScalarPromoteOutOfRange.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Transforms/ScalarRepl/2009-02-02-ScalarPromoteOutOfRange.ll b/test/Transforms/ScalarRepl/2009-02-02-ScalarPromoteOutOfRange.ll index 3c8a364..f0af1ca 100644 --- a/test/Transforms/ScalarRepl/2009-02-02-ScalarPromoteOutOfRange.ll +++ b/test/Transforms/ScalarRepl/2009-02-02-ScalarPromoteOutOfRange.ll @@ -6,11 +6,11 @@ target triple = "i386-pc-linux-gnu" define i32 @f(i32 %x, i32 %y) { %instance = alloca %pair - %first = getelementptr %pair* %instance, i32 0, i32 0 + %first = getelementptr %pair, %pair* %instance, i32 0, i32 0 %cast = bitcast [1 x i32]* %first to i32* store i32 %x, i32* %cast - %second = getelementptr %pair* %instance, i32 0, i32 1 + %second = getelementptr %pair, %pair* %instance, i32 0, i32 1 store i32 %y, i32* %second - %v = load i32* %cast + %v = load i32, i32* %cast ret i32 %v } |