diff options
Diffstat (limited to 'test/CodeGen/PowerPC/emptystruct.ll')
-rw-r--r-- | test/CodeGen/PowerPC/emptystruct.ll | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/test/CodeGen/PowerPC/emptystruct.ll b/test/CodeGen/PowerPC/emptystruct.ll index 36b4abd2bfad6..47cfadd0a7bbc 100644 --- a/test/CodeGen/PowerPC/emptystruct.ll +++ b/test/CodeGen/PowerPC/emptystruct.ll @@ -1,4 +1,4 @@ -; RUN: llc -mcpu=pwr7 -O0 < %s | FileCheck %s +; RUN: llc -mcpu=pwr7 -O0 -fast-isel=false < %s | FileCheck %s ; This tests correct handling of empty aggregate parameters and return values. ; An empty parameter passed by value does not consume a protocol register or @@ -25,9 +25,8 @@ entry: ret void } -; CHECK: callee: +; CHECK-LABEL: callee: ; CHECK: std 4, -; CHECK: std 3, ; CHECK-NOT: std 5, ; CHECK-NOT: std 6, ; CHECK: blr @@ -43,9 +42,8 @@ entry: ret void } -; CHECK: caller: +; CHECK-LABEL: caller: ; CHECK: addi 4, -; CHECK: std 3, ; CHECK-NOT: std 5, ; CHECK-NOT: std 6, ; CHECK: bl callee |