diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-11-12 19:53:52 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-11-12 19:53:52 +0000 |
commit | 4deff7bc1d7d2799d25a99f81edece68e18859ff (patch) | |
tree | fac018cd7d80d222def4e5380a4adae2338e17ee /llvm/test/CodeGen/Thumb2/thumb2-ldrd.ll | |
parent | 6ac6aa782d9b48d5576934c01ca6b92d5a1eca18 (diff) | |
download | bcm5719-llvm-4deff7bc1d7d2799d25a99f81edece68e18859ff.tar.gz bcm5719-llvm-4deff7bc1d7d2799d25a99f81edece68e18859ff.zip |
Switch a few tests off linearscan.
llvm-svn: 144460
Diffstat (limited to 'llvm/test/CodeGen/Thumb2/thumb2-ldrd.ll')
-rw-r--r-- | llvm/test/CodeGen/Thumb2/thumb2-ldrd.ll | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/Thumb2/thumb2-ldrd.ll b/llvm/test/CodeGen/Thumb2/thumb2-ldrd.ll index d3b781dbc0d..2e83ea146cd 100644 --- a/llvm/test/CodeGen/Thumb2/thumb2-ldrd.ll +++ b/llvm/test/CodeGen/Thumb2/thumb2-ldrd.ll @@ -1,10 +1,11 @@ -; RUN: llc < %s -mtriple=thumbv7-apple-darwin -mattr=+thumb2 -regalloc=linearscan | FileCheck %s +; RUN: llc < %s -mtriple=thumbv7-apple-darwin -mattr=+thumb2 | FileCheck %s @b = external global i64* define i64 @t(i64 %a) nounwind readonly { entry: -;CHECK: ldrd r2, r3, [r2] +; CHECK: ldrd +; CHECK: umull %0 = load i64** @b, align 4 %1 = load i64* %0, align 4 %2 = mul i64 %1, %a |