mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
Disable 91381 for now. It's miscompiling ARMISelDAG2DAG.cpp.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91405 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e4ac23a0ff
commit
d7760a4905
@ -5752,7 +5752,9 @@ SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) {
|
||||
SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
|
||||
|
||||
// Use sbb x, x to materialize carry bit into a GPR.
|
||||
if (X86CC == X86::COND_B) {
|
||||
// FIXME: Temporarily disabled since it breaks self-hosting. It's apparently
|
||||
// miscompiling ARMISelDAGToDAG.cpp.
|
||||
if (0 && !isFP && X86CC == X86::COND_B) {
|
||||
return DAG.getNode(ISD::AND, dl, MVT::i8,
|
||||
DAG.getNode(X86ISD::SETCC_CARRY, dl, MVT::i8,
|
||||
DAG.getConstant(X86CC, MVT::i8), Cond),
|
||||
|
@ -1,4 +1,5 @@
|
||||
; RUN: llc < %s -mtriple=x86_64-apple-darwin | FileCheck %s
|
||||
; XFAIL: *
|
||||
; rdar://7329206
|
||||
|
||||
; Use sbb x, x to materialize carry bit in a GPR. The value is either
|
||||
|
Loading…
Reference in New Issue
Block a user