"LLVMContext* " --> "LLVMContext *"
[oota-llvm.git] / lib / Transforms / Utils / ValueMapper.cpp
index e16d2645f7e02c8bc29e0e1dd16860fc3a15fa97..21b3a220c30a841f8c42e93d0c3c6932173ed475 100644 (file)
@@ -22,7 +22,7 @@
 #include "llvm/ADT/SmallVector.h"
 using namespace llvm;
 
-Value *llvm::MapValue(const Value *V, ValueMapTy &VM, LLVMContextContext) {
+Value *llvm::MapValue(const Value *V, ValueMapTy &VM, LLVMContext *Context) {
   Value *&VMSlot = VM[V];
   if (VMSlot) return VMSlot;      // Does it exist in the map yet?