From 42b05ac517df07798e84cb031f58e9e26c6e3efa Mon Sep 17 00:00:00 2001 From: Gita Koblents Date: Mon, 17 Oct 2022 09:26:23 -0400 Subject: [PATCH] Fix binary literal in VectorAPIExpansion.hpp --- runtime/compiler/optimizer/VectorAPIExpansion.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/compiler/optimizer/VectorAPIExpansion.hpp b/runtime/compiler/optimizer/VectorAPIExpansion.hpp index 9861fd80f7c..a9258551e9a 100644 --- a/runtime/compiler/optimizer/VectorAPIExpansion.hpp +++ b/runtime/compiler/optimizer/VectorAPIExpansion.hpp @@ -131,7 +131,7 @@ class TR_VectorAPIExpansion : public TR::Optimization static int32_t const BT_gt = 1; static int32_t const BT_overflow = 2; static int32_t const BT_no_overflow = 6; - static int32_t const BT_unsigned_compare = 0b10000; + static int32_t const BT_unsigned_compare = 0x10; static int32_t const BT_ule = BT_le | BT_unsigned_compare; static int32_t const BT_uge = BT_ge | BT_unsigned_compare; static int32_t const BT_ult = BT_lt | BT_unsigned_compare;