Skip to content

Commit

Permalink
Merge pull request #19856 from cjjdespres/fix-j9node-assert
Browse files Browse the repository at this point in the history
Update _unionPropertyA assert
  • Loading branch information
hzongaro authored Jul 18, 2024
2 parents 129082f + 04930aa commit 679e183
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/compiler/il/J9Node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ J9::Node::Node(TR::Node *originatingByteCodeNode, TR::ILOpCodes op, uint16_t num
+ self()->hasBranchDestinationNode()
+ self()->hasBlock()
+ self()->hasArrayStride()
+ self()->hasPinningArrayPointer()
+ (self()->hasPinningArrayPointer() && !self()->supportsPinningArrayPointerInNodeExtension())
+ self()->hasDataType() <= 1,
"_unionPropertyA union is not disjoint for this node %s (%p):\n"
" has({SymbolReference, ...}, ..., DataType) = ({%1d,%1d},%1d,%1d,%1d,%1d,%1d)\n",
Expand All @@ -76,7 +76,7 @@ J9::Node::Node(TR::Node *originatingByteCodeNode, TR::ILOpCodes op, uint16_t num
self()->hasBranchDestinationNode(),
self()->hasBlock(),
self()->hasArrayStride(),
self()->hasPinningArrayPointer(),
(self()->hasPinningArrayPointer() && !self()->supportsPinningArrayPointerInNodeExtension()),
self()->hasDataType());

// check that _unionPropertyB union is disjoint
Expand Down

0 comments on commit 679e183

Please sign in to comment.