diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-07-09 13:56:43 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-07-09 13:56:43 +0000 |
commit | 8e819aea34bfd291149c956c673e97f06ba22a1d (patch) | |
tree | a3f79d828e885ac1b1246e88f213c0f280748f7f | |
parent | 4b4d100ad0a12e6787930dc499ece1b3063c7e88 (diff) |
Silence a warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53326 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index eb90d94da3..1bde72e2d0 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -45,7 +45,7 @@ namespace llvm { } 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 |