summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/2009-10-27-double-align.ll
diff options
context:
space:
mode:
authorBalaram Makam <bmakam@codeaurora.org>2017-08-16 14:17:43 +0000
committerBalaram Makam <bmakam@codeaurora.org>2017-08-16 14:17:43 +0000
commitedd00a7e540950ce8cc513513bd807263fa8274c (patch)
tree26b6fa5460e4b5039e7d1db0e349271d01fce90c /test/CodeGen/ARM/2009-10-27-double-align.ll
parent600899c871151f7fe8e2cb09b9a35f458f57f902 (diff)
Revert "MachineInstr: Reason locally about some memory objects before going to AA."
r310825 caused the clang-ppc64le-linux-lnt bot to go red (http://lab.llvm.org:8011/builders/clang-ppc64le-linux-lnt/builds/5712) because of a test-suite failure of SingleSource/UnitTests/2003-07-09-SignedArgs This reverts commit 0028f6a87224fb595a1c19c544cde9b003035996. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@311008 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/2009-10-27-double-align.ll')
-rw-r--r--test/CodeGen/ARM/2009-10-27-double-align.ll10
1 files changed, 4 insertions, 6 deletions
diff --git a/test/CodeGen/ARM/2009-10-27-double-align.ll b/test/CodeGen/ARM/2009-10-27-double-align.ll
index 98a89a07af6..39f3292e260 100644
--- a/test/CodeGen/ARM/2009-10-27-double-align.ll
+++ b/test/CodeGen/ARM/2009-10-27-double-align.ll
@@ -1,15 +1,13 @@
-; RUN: llc < %s -mtriple=arm-linux-gnueabi | FileCheck %s --check-prefix=NOREGALLOC
-; RUN: llc < %s -mtriple=arm-linux-gnueabi -regalloc=basic | FileCheck %s --check-prefix=REGALLOC
+; RUN: llc < %s -mtriple=arm-linux-gnueabi | FileCheck %s
+; RUN: llc < %s -mtriple=arm-linux-gnueabi -regalloc=basic | FileCheck %s
@.str = private constant [1 x i8] zeroinitializer, align 1
define void @g() {
entry:
;CHECK: [sp, #8]
-;NOREGALLOC: [sp, #12]
-;NOREGALLOC: [sp]
-;REGALLOC: [sp]
-;REGALLOC: [sp, #12]
+;CHECK: [sp, #12]
+;CHECK: [sp]
tail call void (i8*, ...) @f(i8* getelementptr ([1 x i8], [1 x i8]* @.str, i32 0, i32 0), i32 1, double 2.000000e+00, i32 3, double 4.000000e+00)
ret void
}