"LLVMContext* " --> "LLVMContext *"
[oota-llvm.git] / lib / Transforms / Scalar / JumpThreading.cpp
index 2252042320534265c173134a20cb69ed2320c157..7b9615b109cdbfc3513424ad3a8147638b339fcb 100644 (file)
@@ -795,7 +795,7 @@ bool JumpThreading::ProcessBranchOnLogical(Value *V, BasicBlock *BB,
 /// result can not be determined, a null pointer is returned.
 static Constant *GetResultOfComparison(CmpInst::Predicate pred,
                                        Value *LHS, Value *RHS,
-                                       LLVMContextContext) {
+                                       LLVMContext *Context) {
   if (Constant *CLHS = dyn_cast<Constant>(LHS))
     if (Constant *CRHS = dyn_cast<Constant>(RHS))
       return Context->getConstantExprCompare(pred, CLHS, CRHS);