mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-22 03:39:03 +00:00
Revert r215611 because it caused the infinite loop in bug 20736. There is a reduced testcase in that bug.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216307 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9fe92725af
commit
f591b9c33e
@ -156,8 +156,6 @@ public:
|
|||||||
// Node replacement helpers
|
// Node replacement helpers
|
||||||
void ReplacedNode(SDNode *N) {
|
void ReplacedNode(SDNode *N) {
|
||||||
LegalizedNodes.erase(N);
|
LegalizedNodes.erase(N);
|
||||||
if (UpdatedNodes)
|
|
||||||
UpdatedNodes->insert(N);
|
|
||||||
}
|
}
|
||||||
void ReplaceNode(SDNode *Old, SDNode *New) {
|
void ReplaceNode(SDNode *Old, SDNode *New) {
|
||||||
DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG);
|
DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG);
|
||||||
|
@ -1,6 +1,11 @@
|
|||||||
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mcpu=x86-64 -x86-experimental-vector-shuffle-lowering | FileCheck %s --check-prefix=ALL --check-prefix=SSE2
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mcpu=x86-64 -x86-experimental-vector-shuffle-lowering | FileCheck %s --check-prefix=ALL --check-prefix=SSE2
|
||||||
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mcpu=x86-64 -mattr=+ssse3 -x86-experimental-vector-shuffle-lowering | FileCheck %s --check-prefix=ALL --check-prefix=SSSE3
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mcpu=x86-64 -mattr=+ssse3 -x86-experimental-vector-shuffle-lowering | FileCheck %s --check-prefix=ALL --check-prefix=SSSE3
|
||||||
|
|
||||||
|
; XFAIL: *
|
||||||
|
; Only @stress_test0 is expected to fail, but XFAIL is not that selective. I
|
||||||
|
; expect this to be unxfailed soon enough that we won't regress the other tests
|
||||||
|
; in the interim.
|
||||||
|
|
||||||
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
||||||
target triple = "x86_64-unknown-unknown"
|
target triple = "x86_64-unknown-unknown"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user