diff options
Diffstat (limited to 'llvm/test/CodeGen/PowerPC')
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/add-fi.ll | 24 | ||||
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/ppc64-vaarg-int.ll | 2 |
2 files changed, 25 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/PowerPC/add-fi.ll b/llvm/test/CodeGen/PowerPC/add-fi.ll new file mode 100644 index 00000000000..18892c8cdf5 --- /dev/null +++ b/llvm/test/CodeGen/PowerPC/add-fi.ll @@ -0,0 +1,24 @@ +; RUN: llc -mcpu=ppc64 < %s | FileCheck %s +target datalayout = "E-m:e-i64:64-n32:64" +target triple = "powerpc64-unknown-linux-gnu" + +define i32* @test1() { + %X = alloca { i32, i32 } + %Y = getelementptr {i32,i32}* %X, i32 0, i32 1 + ret i32* %Y + +; CHECK-LABEL: @test1 +; CHECK: addi 3, 1, -4 +; CHECK: blr +} + +define i32* @test2() { + %X = alloca { i32, i32, i32, i32 } + %Y = getelementptr {i32,i32,i32,i32}* %X, i32 0, i32 3 + ret i32* %Y + +; CHECK-LABEL: @test2 +; CHECK: addi 3, 1, -4 +; CHECK: blr +} + diff --git a/llvm/test/CodeGen/PowerPC/ppc64-vaarg-int.ll b/llvm/test/CodeGen/PowerPC/ppc64-vaarg-int.ll index 5a63b01badc..c9a4f91fdde 100644 --- a/llvm/test/CodeGen/PowerPC/ppc64-vaarg-int.ll +++ b/llvm/test/CodeGen/PowerPC/ppc64-vaarg-int.ll @@ -16,5 +16,5 @@ declare void @llvm.va_start(i8*) nounwind ; CHECK: @intvaarg ; Make sure that the va pointer is incremented by 8 (not 4). -; CHECK: addi{{.*}}, 8 +; CHECK: addi{{.*}}, 1, 64 |

