[llvm-commits] [llvm] r53326 - /llvm/trunk/include/llvm/Target/TargetAsmInfo.h

Anton Korobeynikov asl at math.spbu.ru
Wed Jul 9 06:56:45 PDT 2008


Author: asl
Date: Wed Jul  9 08:56:43 2008
New Revision: 53326

URL: http://llvm.org/viewvc/llvm-project?rev=53326&view=rev
Log:
Silence a warning

Modified:
    llvm/trunk/include/llvm/Target/TargetAsmInfo.h

Modified: llvm/trunk/include/llvm/Target/TargetAsmInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetAsmInfo.h?rev=53326&r1=53325&r2=53326&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Target/TargetAsmInfo.h (original)
+++ llvm/trunk/include/llvm/Target/TargetAsmInfo.h Wed Jul  9 08:56:43 2008
@@ -45,7 +45,7 @@
   }
 
   namespace SectionFlags {
-    const unsigned Invalid    = -1UL;
+    const unsigned Invalid    = -1U;
     const unsigned None       = 0;
     const unsigned Code       = 1 << 0;  ///< Section contains code
     const unsigned Writeable  = 1 << 1;  ///< Section is writeable





More information about the llvm-commits mailing list