Skip to content

Commit

Permalink
Merge pull request #16112 from gita-omr/fix_binary_literal
Browse files Browse the repository at this point in the history
Fix binary literal in VectorAPIExpansion.hpp
  • Loading branch information
keithc-ca committed Oct 17, 2022
2 parents ab96f4e + 42b05ac commit 18d68f4
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 18d68f4

Please sign in to comment.