Fix disagreement about where the attributes are
authorEric Christopher <echristo@apple.com>
Tue, 7 Oct 2008 22:33:44 +0000 (22:33 +0000)
committerEric Christopher <echristo@apple.com>
Tue, 7 Oct 2008 22:33:44 +0000 (22:33 +0000)
~0 != ~0U.

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

include/llvm/Function.h

index f2b1a4f4361977e6f5182e0eebffff15ef274b61..4a078d6845f20461ebb77f5f76cfa253f2b5612e 100644 (file)
@@ -158,7 +158,7 @@ public:
   ///
   void addFnAttr(Attributes N) { 
     // Function Attributes are stored at ~0 index 
-    addAttribute(~0, N);
+    addAttribute(~0U, N);
   }
 
   /// hasGC/getGC/setGC/clearGC - The name of the garbage collection algorithm