From: Michelle McDaniel Date: Thu, 9 Feb 2017 21:09:33 +0000 (-0800) Subject: Replace binary literal with hex X-Git-Tag: submit/tizen/20210909.063632~11030^2~8136^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb7d96dc76cca6ad0426477324e14a3260f5f2c1;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Replace binary literal with hex 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 --- diff --git a/src/coreclr/src/jit/flowgraph.cpp b/src/coreclr/src/jit/flowgraph.cpp index 47a93d6..50318b0 100644 --- a/src/coreclr/src/jit/flowgraph.cpp +++ b/src/coreclr/src/jit/flowgraph.cpp @@ -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; };