diff options
Diffstat (limited to 'test/CodeGen/SystemZ/alloca-02.ll')
-rw-r--r-- | test/CodeGen/SystemZ/alloca-02.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/SystemZ/alloca-02.ll b/test/CodeGen/SystemZ/alloca-02.ll index b5787b1..092ad86 100644 --- a/test/CodeGen/SystemZ/alloca-02.ll +++ b/test/CodeGen/SystemZ/alloca-02.ll @@ -38,13 +38,13 @@ define i64 @f1(i64 %length, i64 %index) { ; CHECK-E: stcy [[TMP]], 4096({{%r3,%r2|%r2,%r3}}) %a = alloca i8, i64 %length store volatile i8 0, i8 *%a - %b = getelementptr i8 *%a, i64 4095 + %b = getelementptr i8, i8 *%a, i64 4095 store volatile i8 1, i8 *%b - %c = getelementptr i8 *%a, i64 %index + %c = getelementptr i8, i8 *%a, i64 %index store volatile i8 2, i8 *%c - %d = getelementptr i8 *%c, i64 4095 + %d = getelementptr i8, i8 *%c, i64 4095 store volatile i8 3, i8 *%d - %e = getelementptr i8 *%d, i64 1 + %e = getelementptr i8, i8 *%d, i64 1 store volatile i8 4, i8 *%e %count = call i64 @bar(i8 *%a) %res = add i64 %count, 1 |