summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichelle McDaniel <adiaaida@gmail.com>2017-02-09 13:09:33 -0800
committerMichelle McDaniel <adiaaida@gmail.com>2017-02-09 13:09:33 -0800
commit1854a78c56a215aca8e5573c921c64a50b7113f0 (patch)
tree0daa24a5edf8ed51ca048c58b12686cf9a64be0f
parent7d81c60da7846d73df31d657a5c8c27aaed15d83 (diff)
downloadcoreclr-1854a78c56a215aca8e5573c921c64a50b7113f0.tar.gz
coreclr-1854a78c56a215aca8e5573c921c64a50b7113f0.tar.bz2
coreclr-1854a78c56a215aca8e5573c921c64a50b7113f0.zip
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.
-rw-r--r--src/jit/flowgraph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/flowgraph.cpp b/src/jit/flowgraph.cpp
index 47a93d6bb9..50318b0940 100644
--- a/src/jit/flowgraph.cpp
+++ b/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;
};