[llvm-commits] CVS: llvm/lib/VMCore/Verifier.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed Sep 29 14:19:45 PDT 2004



Changes in directory llvm/lib/VMCore:

Verifier.cpp updated: 1.119 -> 1.120
---
Log message:

Make sure to check select instructions for generic instruction properties


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

Index: llvm/lib/VMCore/Verifier.cpp
diff -u llvm/lib/VMCore/Verifier.cpp:1.119 llvm/lib/VMCore/Verifier.cpp:1.120
--- llvm/lib/VMCore/Verifier.cpp:1.119	Wed Sep 29 15:07:45 2004
+++ llvm/lib/VMCore/Verifier.cpp	Wed Sep 29 16:19:28 2004
@@ -410,6 +410,7 @@
           "Select values must have identical types!", &SI);
   Assert1(SI.getTrueValue()->getType() == SI.getType(),
           "Select values must have same type as select instruction!", &SI);
+  visitInstruction(SI);
 }
 
 






More information about the llvm-commits mailing list