Skip to content

Commit d330919

Browse files
authored
Merge pull request #20608 from 0xdaryl/elif
Fix incorrect preprocessor conditional
2 parents c6b755c + 8894a20 commit d330919

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/compiler/optimizer/VectorAPIExpansion.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1666,7 +1666,7 @@ TR::Node *TR_VectorAPIExpansion::storeIntrinsicHandler(TR_VectorAPIExpansion *op
16661666
TR::Node *offset = node->getChild(4);
16671667
#if JAVA_SPEC_VERSION <= 21
16681668
TR::Node *valueToWrite = node->getChild(5);
1669-
#elif
1669+
#else
16701670
TR::Node *valueToWrite = node->getChild(6);
16711671
#endif
16721672

0 commit comments

Comments
 (0)