Skip to content

Commit

Permalink
Fix binary literal in VectorAPIExpansion.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
gita-omr committed Oct 17, 2022
1 parent 153e812 commit 42b05ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/compiler/optimizer/VectorAPIExpansion.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 42b05ac

Please sign in to comment.