[llvm] r256390 - Fix signed/unsigned warning in Line.h.

Dave Bartolomeo via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 24 11:17:55 PST 2015


Author: dbartol
Date: Thu Dec 24 13:17:54 2015
New Revision: 256390

URL: http://llvm.org/viewvc/llvm-project?rev=256390&view=rev
Log:
Fix signed/unsigned warning in Line.h.

Modified:
    llvm/trunk/include/llvm/DebugInfo/CodeView/Line.h

Modified: llvm/trunk/include/llvm/DebugInfo/CodeView/Line.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/DebugInfo/CodeView/Line.h?rev=256390&r1=256389&r2=256390&view=diff
==============================================================================
--- llvm/trunk/include/llvm/DebugInfo/CodeView/Line.h (original)
+++ llvm/trunk/include/llvm/DebugInfo/CodeView/Line.h Thu Dec 24 13:17:54 2015
@@ -17,8 +17,8 @@ namespace codeview {
 
 class LineInfo {
 public:
-  static const int32_t AlwaysStepIntoLineNumber = 0xfeefee;
-  static const int32_t NeverStepIntoLineNumber = 0xf00f00;
+  static const uint32_t AlwaysStepIntoLineNumber = 0xfeefee;
+  static const uint32_t NeverStepIntoLineNumber = 0xf00f00;
 
 private:
   static const uint32_t StartLineMask = 0x00ffffff;




More information about the llvm-commits mailing list