diff options
| author | Bill Schmidt <wschmidt@linux.vnet.ibm.com> | 2013-01-17 19:46:51 +0000 |
|---|---|---|
| committer | Bill Schmidt <wschmidt@linux.vnet.ibm.com> | 2013-01-17 19:46:51 +0000 |
| commit | 94b8cdbf5512ab4ffac0dc09f58ea70c87797546 (patch) | |
| tree | 6d4dec7fd37f83319937e43631ab02e5765dc1f0 /llvm/test/CodeGen/PowerPC | |
| parent | b400204fd82da5344575e0c41ffbd7988f5a29e4 (diff) | |
| download | bcm5719-llvm-94b8cdbf5512ab4ffac0dc09f58ea70c87797546.tar.gz bcm5719-llvm-94b8cdbf5512ab4ffac0dc09f58ea70c87797546.zip | |
Restore reverted test case, this time with REQUIRES: asserts
llvm-svn: 172747
Diffstat (limited to 'llvm/test/CodeGen/PowerPC')
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/quadint-return.ll | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/PowerPC/quadint-return.ll b/llvm/test/CodeGen/PowerPC/quadint-return.ll new file mode 100644 index 00000000000..03499915e78 --- /dev/null +++ b/llvm/test/CodeGen/PowerPC/quadint-return.ll @@ -0,0 +1,19 @@ +; REQUIRES: asserts +; RUN: llc -O0 -debug -o - < %s 2>&1 | FileCheck %s + +target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64" +target triple = "powerpc64-unknown-linux-gnu" + +define i128 @foo() nounwind { +entry: + %x = alloca i128, align 16 + store i128 27, i128* %x, align 16 + %0 = load i128* %x, align 16 + ret i128 %0 +} + +; CHECK: ********** Function: foo +; CHECK: ********** FAST REGISTER ALLOCATION ********** +; CHECK: %X3<def> = COPY %vreg +; CHECK-NEXT: %X4<def> = COPY %vreg +; CHECK-NEXT: BLR |

