diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-06-08 23:15:12 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-06-08 23:15:12 +0000 |
commit | 6660ed5f2f51a91e34664437f0218c52e80a95b8 (patch) | |
tree | 249afc91f1d2c9b4d598cf2fcc4b5361fe839e9c /test/CodeGen/X86/2010-05-06-LocalInlineAsmClobber.ll | |
parent | 0f68fbb9e5a6ccc59c3c75581d4e594347ca4c92 (diff) |
Don't run RAFast in the optimizing regalloc pipeline.
The fast register allocator is not supposed to work in the optimizing
pipeline. It doesn't make sense to compute live intervals, run full copy
coalescing, and then run RAFast.
Fast register allocation in the optimizing pipeline is better done by
RABasic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158242 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/2010-05-06-LocalInlineAsmClobber.ll')
-rw-r--r-- | test/CodeGen/X86/2010-05-06-LocalInlineAsmClobber.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/2010-05-06-LocalInlineAsmClobber.ll b/test/CodeGen/X86/2010-05-06-LocalInlineAsmClobber.ll index 90eb84d1dc..35f233952d 100644 --- a/test/CodeGen/X86/2010-05-06-LocalInlineAsmClobber.ll +++ b/test/CodeGen/X86/2010-05-06-LocalInlineAsmClobber.ll @@ -1,4 +1,4 @@ -; RUN: llc -regalloc=fast %s -o %t +; RUN: llc -regalloc=fast -optimize-regalloc=0 %s -o %t ; PR7066 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64" |