aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm/lib
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2014-06-28 09:53:44 +0000
committerDimitry Andric <dim@FreeBSD.org>2014-06-28 09:53:44 +0000
commit08e09c6e1345e0487589ec9370f6161362e74714 (patch)
tree410f19deae4f9bee3582761f1f4f0e38d2f7e9b3 /contrib/llvm/lib
parentb0bc0cadbe44ca7eb4fae2369126ffb5307b68f4 (diff)
downloadsrc-08e09c6e1345e0487589ec9370f6161362e74714.tar.gz
src-08e09c6e1345e0487589ec9370f6161362e74714.zip
Fix breakage after r267981.
Pointy hat to: dim MFC after: 3 days X-MFC-With: r267981
Notes
Notes: svn path=/head/; revision=268003
Diffstat (limited to 'contrib/llvm/lib')
-rw-r--r--contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp2
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 47ec109a543a..970c804e71ee 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);