remove SectionFlags::Small: it is only used on Xcore, and we'll find
[oota-llvm.git] / include / llvm / Support / DebugLoc.h
index 5c089efc98ce97cad421f1f9781174d8c56f72d0..8ef7e4afc4474cc307f5999bb037040c9f59b985 100644 (file)
@@ -27,6 +27,9 @@ namespace llvm {
     GlobalVariable *CompileUnit;
     unsigned Line, Col;
 
+    DebugLocTuple()
+      : CompileUnit(0), Line(~0U), Col(~0U) {};
+
     DebugLocTuple(GlobalVariable *v, unsigned l, unsigned c)
       : CompileUnit(v), Line(l), Col(c) {};