diff options
author | Andrew Trick <atrick@apple.com> | 2011-04-12 20:14:07 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2011-04-12 20:14:07 +0000 |
commit | 1b60ad6644c37d401a878facb48c03331e0e5e0f (patch) | |
tree | 61bb0de430a8909beaf2533a88ca7c9a072d92cc /llvm/test/CodeGen/ARM/memcpy-inline.ll | |
parent | 2b473f8c8542a71bc7efc108eb5ad8b7c6e54bd4 (diff) | |
download | bcm5719-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/CodeGen/ARM/memcpy-inline.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/memcpy-inline.ll | 8 |
1 files changed, 5 insertions, 3 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 } |