diff options
author | dim <dim@FreeBSD.org> | 2014-06-28 09:53:44 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2014-06-28 09:53:44 +0000 |
commit | 8d2630ee6c3a38dc24cb83c794b8b67278b4b793 (patch) | |
tree | 410f19deae4f9bee3582761f1f4f0e38d2f7e9b3 /contrib/llvm/lib | |
parent | 3bf95dde7cf2fc4d84ac0212f2d94b96fa89d151 (diff) | |
download | FreeBSD-src-8d2630ee6c3a38dc24cb83c794b8b67278b4b793.zip FreeBSD-src-8d2630ee6c3a38dc24cb83c794b8b67278b4b793.tar.gz |
Fix breakage after r267981.
Pointy hat to: dim
MFC after: 3 days
X-MFC-With: r267981
Diffstat (limited to 'contrib/llvm/lib')
-rw-r--r-- | contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp b/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp index 47ec109..970c804 100644 --- a/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp +++ b/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp @@ -1027,7 +1027,7 @@ bool PPCFastISel::SelectFPToI(const Instruction *I, bool IsSigned) { return false; // If we don't have FCTIDUZ and we need it, punt to SelectionDAG. - if (DstVT == MVT::i64 && !IsSigned && !PPCSubTarget->hasFPCVT()) + if (DstVT == MVT::i64 && !IsSigned && !PPCSubTarget.hasFPCVT()) return false; Value *Src = I->getOperand(0); |