"LLVMContext* " --> "LLVMContext *"
[oota-llvm.git] / lib / Transforms / Utils / Local.cpp
index f5477f093c2bda938fae31c96c557bf4ab739dec..583b26ad8721456c02e76705ce657972607178f2 100644 (file)
@@ -263,7 +263,7 @@ void llvm::RecursivelyDeleteTriviallyDeadInstructions(Value *V) {
 /// too, recursively.
 void
 llvm::RecursivelyDeleteDeadPHINode(PHINode *PN) {
-  LLVMContextContext = PN->getParent()->getContext();
+  LLVMContext *Context = PN->getParent()->getContext();
   
   // We can remove a PHI if it is on a cycle in the def-use graph
   // where each node in the cycle has degree one, i.e. only one use,