Skip to content

Commit a71abe7

Browse files
committedApr 15, 2025·
Format
1 parent f636a4c commit a71abe7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/hotspot/share/opto/cfgnode.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3109,7 +3109,7 @@ void NeverBranchNode::format( PhaseRegAlloc *ra_, outputStream *st) const {
31093109
}
31103110
#endif
31113111

3112-
Node* BlackholeNode::Ideal(PhaseGVN *phase, bool can_reshape) {
3112+
Node* BlackholeNode::Ideal(PhaseGVN* phase, bool can_reshape) {
31133113
return remove_dead_region(phase, can_reshape) ? this : nullptr;
31143114
}
31153115
#ifndef PRODUCT

‎src/hotspot/share/opto/cfgnode.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ class BlackholeNode : public MultiNode {
735735
virtual int Opcode() const;
736736
virtual uint ideal_reg() const { return 0; } // not matched in the AD file
737737
virtual const Type* bottom_type() const { return TypeTuple::MEMBAR; }
738-
virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
738+
virtual Node* Ideal(PhaseGVN* phase, bool can_reshape);
739739

740740
const RegMask &in_RegMask(uint idx) const {
741741
// Fake the incoming arguments mask for blackholes: accept all registers

0 commit comments

Comments
 (0)