Replace binary literal with hex
authorMichelle McDaniel <adiaaida@gmail.com>
Thu, 9 Feb 2017 21:09:33 +0000 (13:09 -0800)
committerMichelle McDaniel <adiaaida@gmail.com>
Thu, 9 Feb 2017 21:09:33 +0000 (13:09 -0800)
The desktop build breaks with the binary literal used in the fat pointer
mask. Replace it with a hex equivalent.

Commit migrated from https://github.com/dotnet/coreclr/commit/1854a78c56a215aca8e5573c921c64a50b7113f0

src/coreclr/src/jit/flowgraph.cpp

index 47a93d6..50318b0 100644 (file)
@@ -24205,7 +24205,7 @@ private:
         var_types    pointerType;
         bool         doesReturnValue;
 
-        const int FAT_POINTER_MASK = 0b00000010;
+        const int FAT_POINTER_MASK = 0x2;
         const int HIGH_PROBABILITY = 80;
     };