[llvm-commits] CVS: llvm/lib/Analysis/IPA/FindUnsafePointerTypes.cpp

Chris Lattner lattner at cs.uiuc.edu
Sun Oct 19 16:38:23 PDT 2003


Changes in directory llvm/lib/Analysis/IPA:

FindUnsafePointerTypes.cpp updated: 1.18 -> 1.19

---
Log message:

Change the Opcode enum for PHI nodes from "Instruction::PHINode" to "Instruction::PHI" to be more consistent with the other instructions.



---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/Analysis/IPA/FindUnsafePointerTypes.cpp
diff -u llvm/lib/Analysis/IPA/FindUnsafePointerTypes.cpp:1.18 llvm/lib/Analysis/IPA/FindUnsafePointerTypes.cpp:1.19
--- llvm/lib/Analysis/IPA/FindUnsafePointerTypes.cpp:1.18	Sun Oct 12 22:32:07 2003
+++ llvm/lib/Analysis/IPA/FindUnsafePointerTypes.cpp	Sun Oct 19 16:34:19 2003
@@ -43,7 +43,7 @@
   case Instruction::GetElementPtr:
   case Instruction::Call:
   case Instruction::Invoke:
-  case Instruction::PHINode:
+  case Instruction::PHI:
     return true;
   }
   return false;





More information about the llvm-commits mailing list