[llvm-branch-commits] [llvm-branch] r101296 - /llvm/branches/Apple/Morbo/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h

Devang Patel dpatel at apple.com
Wed Apr 14 15:13:03 PDT 2010


Author: dpatel
Date: Wed Apr 14 17:13:03 2010
New Revision: 101296

URL: http://llvm.org/viewvc/llvm-project?rev=101296&view=rev
Log:
initialize "Invalid" boolean flag.

Modified:
    llvm/branches/Apple/Morbo/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h

Modified: llvm/branches/Apple/Morbo/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Morbo/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h?rev=101296&r1=101295&r2=101296&view=diff
==============================================================================
--- llvm/branches/Apple/Morbo/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h (original)
+++ llvm/branches/Apple/Morbo/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h Wed Apr 14 17:13:03 2010
@@ -61,7 +61,7 @@
 
   // Constructor for constants.
   SDDbgValue(MDNode *mdP, Value *C, uint64_t off, DebugLoc dl, unsigned O) : 
-    mdPtr(mdP), Offset(off), DL(dl), Order(O) {
+    mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false) {
     kind = CONST;
     u.Const = C;
   }





More information about the llvm-branch-commits mailing list