diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-24 06:11:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-24 06:11:37 +0000 |
commit | df8a8a8c6f4d528084c55aa4c690098774a49100 (patch) | |
tree | f4535528d5b09c3e95d5b95856be70c512fda875 /llvm/test/CodeGen/PowerPC/LargeAbsoluteAddr.ll | |
parent | f0485ed9acbb955ec62c178e7767ba21eeaa780a (diff) | |
download | bcm5719-llvm-df8a8a8c6f4d528084c55aa4c690098774a49100.tar.gz bcm5719-llvm-df8a8a8c6f4d528084c55aa4c690098774a49100.zip |
Change the scheduler from adding nodes in allnodes order
to adding them in a determinstic order (bottom up from
the root) based on the structure of the graph itself.
This updates tests for some random changes, interesting
bits: CodeGen/Blackfin/promote-logic.ll no longer crashes.
I have no idea why, but that's good right?
CodeGen/X86/2009-07-16-LoadFoldingBug.ll also fails, but
now compiles to have one fewer constant pool entry, making
the expected load that was being folded disappear. Since it
is an unreduced mass of gnast, I just removed it.
This fixes PR6370
llvm-svn: 97023
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/LargeAbsoluteAddr.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/LargeAbsoluteAddr.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/PowerPC/LargeAbsoluteAddr.ll b/llvm/test/CodeGen/PowerPC/LargeAbsoluteAddr.ll index 75374abeb00..b10a9968676 100644 --- a/llvm/test/CodeGen/PowerPC/LargeAbsoluteAddr.ll +++ b/llvm/test/CodeGen/PowerPC/LargeAbsoluteAddr.ll @@ -1,7 +1,7 @@ ; RUN: llc < %s -march=ppc32 -mtriple=powerpc-apple-darwin | \ -; RUN: grep {stw r4, 32751} +; RUN: grep {stw r3, 32751} ; RUN: llc < %s -march=ppc64 -mtriple=powerpc-apple-darwin | \ -; RUN: grep {stw r4, 32751} +; RUN: grep {stw r3, 32751} ; RUN: llc < %s -march=ppc64 -mtriple=powerpc-apple-darwin | \ ; RUN: grep {std r3, 9024} |