Skip to content

Commit

Permalink
Merge pull request #20608 from 0xdaryl/elif
Browse files Browse the repository at this point in the history
Fix incorrect preprocessor conditional
  • Loading branch information
pshipton authored Nov 15, 2024
2 parents c6b755c + 8894a20 commit d330919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/compiler/optimizer/VectorAPIExpansion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1666,7 +1666,7 @@ TR::Node *TR_VectorAPIExpansion::storeIntrinsicHandler(TR_VectorAPIExpansion *op
TR::Node *offset = node->getChild(4);
#if JAVA_SPEC_VERSION <= 21
TR::Node *valueToWrite = node->getChild(5);
#elif
#else
TR::Node *valueToWrite = node->getChild(6);
#endif

Expand Down

0 comments on commit d330919

Please sign in to comment.