DebugLoc defines LineCol as 32 bit in comment but unsigned in code.
authorYaron Keren <yaron.keren@gmail.com>
Sun, 17 Nov 2013 09:47:39 +0000 (09:47 +0000)
committerYaron Keren <yaron.keren@gmail.com>
Sun, 17 Nov 2013 09:47:39 +0000 (09:47 +0000)
This patch modifies LineCol to be a uint32_t.

See http://llvm.org/bugs/show_bug.cgi?id=17957

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194957 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/DebugLoc.h

index f35d40729263c13bd2b478a3a431d9fec53bf5a1..05f31d7a4994d2da3eb10d4f0c43ee5e74dbee76 100644 (file)
@@ -15,6 +15,8 @@
 #ifndef LLVM_SUPPORT_DEBUGLOC_H
 #define LLVM_SUPPORT_DEBUGLOC_H
 
+#include "llvm/Support/DataTypes.h"\r
+
 namespace llvm {
   template <typename T> struct DenseMapInfo;
   class MDNode;
@@ -45,7 +47,7 @@ namespace llvm {
     /// LineCol - This 32-bit value encodes the line and column number for the
     /// location, encoded as 24-bits for line and 8 bits for col.  A value of 0
     /// for either means unknown.
-    unsigned LineCol;
+    uint32_t LineCol;
 
     /// ScopeIdx - This is an opaque ID# for Scope/InlinedAt information,
     /// decoded by LLVMContext.  0 is unknown.