summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2011-05-27 20:11:27 +0000
committerEvan Cheng <evan.cheng@apple.com>2011-05-27 20:11:27 +0000
commit4abce0c90b0c7c7c859951069baf0c0a70e085a9 (patch)
tree0b5b164e7573b9adc2ac2c9906437b714e55ce39 /test/CodeGen/ARM
parent62057697418734441cf3489b4eae3f44e6d2c38a (diff)
downloadllvm-4abce0c90b0c7c7c859951069baf0c0a70e085a9.tar.gz
llvm-4abce0c90b0c7c7c859951069baf0c0a70e085a9.tar.bz2
llvm-4abce0c90b0c7c7c859951069baf0c0a70e085a9.tar.xz
Don't use movw / movt for iOS static codegen for now to workaround some tools issues. rdar://9514789
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132211 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM')
-rw-r--r--test/CodeGen/ARM/movt-movw-global.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/ARM/movt-movw-global.ll b/test/CodeGen/ARM/movt-movw-global.ll
index 5795c7b5c9..991d728ddd 100644
--- a/test/CodeGen/ARM/movt-movw-global.ll
+++ b/test/CodeGen/ARM/movt-movw-global.ll
@@ -16,8 +16,8 @@ entry:
; IOS-PIC: movw r0, :lower16:(L_foo$non_lazy_ptr-(LPC0_0+8))
; IOS-PIC-NEXT: movt r0, :upper16:(L_foo$non_lazy_ptr-(LPC0_0+8))
-; IOS-STATIC: movw r0, :lower16:_foo
-; IOS-STATIC-NEXT: movt r0, :upper16:_foo
+; IOS-STATIC-NOT: movw r0, :lower16:_foo
+; IOS-STATIC-NOT: movt r0, :upper16:_foo
ret i32* @foo
}
@@ -32,8 +32,8 @@ entry:
; IOS-PIC: movw r1, :lower16:(L_foo$non_lazy_ptr-(LPC1_0+8))
; IOS-PIC-NEXT: movt r1, :upper16:(L_foo$non_lazy_ptr-(LPC1_0+8))
-; IOS-STATIC: movw r1, :lower16:_foo
-; IOS-STATIC-NEXT: movt r1, :upper16:_foo
+; IOS-STATIC-NOT: movw r1, :lower16:_foo
+; IOS-STATIC-NOT: movt r1, :upper16:_foo
store i32 %baz, i32* @foo, align 4
ret void
}