summaryrefslogtreecommitdiffstats
path: root/llvm/test
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2011-04-12 20:14:07 +0000
committerAndrew Trick <atrick@apple.com>2011-04-12 20:14:07 +0000
commit1b60ad6644c37d401a878facb48c03331e0e5e0f (patch)
tree61bb0de430a8909beaf2533a88ca7c9a072d92cc /llvm/test
parent2b473f8c8542a71bc7efc108eb5ad8b7c6e54bd4 (diff)
downloadbcm5719-llvm-1b60ad6644c37d401a878facb48c03331e0e5e0f.tar.gz
bcm5719-llvm-1b60ad6644c37d401a878facb48c03331e0e5e0f.zip
Revert 129383. It causes some targets to hit a scheduler assert.
llvm-svn: 129385
Diffstat (limited to 'llvm/test')
-rw-r--r--llvm/test/CodeGen/ARM/memcpy-inline.ll8
-rw-r--r--llvm/test/CodeGen/ARM/vfp.ll2
2 files changed, 6 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/ARM/memcpy-inline.ll b/llvm/test/CodeGen/ARM/memcpy-inline.ll
index 5bae037cafb..e8a2a3b7d5b 100644
--- a/llvm/test/CodeGen/ARM/memcpy-inline.ll
+++ b/llvm/test/CodeGen/ARM/memcpy-inline.ll
@@ -1,8 +1,10 @@
-; RUN: llc < %s -mtriple=thumbv7-apple-darwin -regalloc=linearscan -disable-post-ra | FileCheck %s
+; RUN: llc < %s -mtriple=arm-apple-darwin -regalloc=linearscan -disable-post-ra | FileCheck %s
+; RUN: llc < %s -mtriple=arm-apple-darwin -regalloc=basic -disable-post-ra | FileCheck %s
; The ARM magic hinting works best with linear scan.
-; CHECK: ldrd
-; CHECK: strd
+; CHECK: ldmia
+; CHECK: stmia
+; CHECK: ldrh
; CHECK: ldrb
%struct.x = type { i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8 }
diff --git a/llvm/test/CodeGen/ARM/vfp.ll b/llvm/test/CodeGen/ARM/vfp.ll
index 49a69827bc0..390457fc21b 100644
--- a/llvm/test/CodeGen/ARM/vfp.ll
+++ b/llvm/test/CodeGen/ARM/vfp.ll
@@ -40,8 +40,8 @@ define void @test_add(float* %P, double* %D) {
define void @test_ext_round(float* %P, double* %D) {
;CHECK: test_ext_round:
%a = load float* %P ; <float> [#uses=1]
-;CHECK: vcvt.f64.f32
;CHECK: vcvt.f32.f64
+;CHECK: vcvt.f64.f32
%b = fpext float %a to double ; <double> [#uses=1]
%A = load double* %D ; <double> [#uses=1]
%B = fptrunc double %A to float ; <float> [#uses=1]
OpenPOWER on IntegriCloud