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 | deb48434e382de441595b0ac39cd585cab092080 (patch) | |
tree | 96f50bc8c58bffd072902ecc8e0ea7e152ecab85 /test/CodeGen/Blackfin | |
parent | fb36419a8347792ab37b26caf44cf5e267f4ddfe (diff) | |
download | external_llvm-deb48434e382de441595b0ac39cd585cab092080.zip external_llvm-deb48434e382de441595b0ac39cd585cab092080.tar.gz external_llvm-deb48434e382de441595b0ac39cd585cab092080.tar.bz2 |
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
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97023 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Blackfin')
-rw-r--r-- | test/CodeGen/Blackfin/promote-logic.ll | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/CodeGen/Blackfin/promote-logic.ll b/test/CodeGen/Blackfin/promote-logic.ll index 46da566..1ac1408 100644 --- a/test/CodeGen/Blackfin/promote-logic.ll +++ b/test/CodeGen/Blackfin/promote-logic.ll @@ -1,5 +1,4 @@ -; RUN: llc < %s -march=bfin > %t -; XFAIL: * +; RUN: llc < %s -march=bfin ; DAGCombiner::SimplifyBinOpWithSameOpcodeHands can produce an illegal i16 OR ; operation after LegalizeOps. |