diff options
author | Dan Gohman <gohman@apple.com> | 2008-11-13 23:24:17 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-11-13 23:24:17 +0000 |
commit | 40ae0f03c8becc9749d4339bfc7ff0b08a0202a1 (patch) | |
tree | ad74c00b8471cdc6ebaa7fc968c9be16848203de /test/CodeGen/X86/local-liveness.ll | |
parent | c4a5bedbbdf7fd5d9060494b360d6bb578faf5a7 (diff) | |
download | external_llvm-40ae0f03c8becc9749d4339bfc7ff0b08a0202a1.zip external_llvm-40ae0f03c8becc9749d4339bfc7ff0b08a0202a1.tar.gz external_llvm-40ae0f03c8becc9749d4339bfc7ff0b08a0202a1.tar.bz2 |
Remove the FlaggedNodes member from SUnit. Instead of requiring each SUnit
to carry a SmallVector of flagged nodes, just calculate the flagged nodes
dynamically when they are needed.
The local-liveness change is due to a trivial scheduling change where
the scheduler arbitrary decision differently.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59273 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/local-liveness.ll')
-rw-r--r-- | test/CodeGen/X86/local-liveness.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/local-liveness.ll b/test/CodeGen/X86/local-liveness.ll index f176ec2..18d999b 100644 --- a/test/CodeGen/X86/local-liveness.ll +++ b/test/CodeGen/X86/local-liveness.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=x86 -regalloc=local | grep {subl %eax, %esi} +; RUN: llvm-as < %s | llc -march=x86 -regalloc=local | grep {subl %eax, %edx} ; Local regalloc shouldn't assume that both the uses of the ; sub instruction are kills, because one of them is tied |