11/*
2- * Copyright (c) 1997, 2024 , Oracle and/or its affiliates. All rights reserved.
2+ * Copyright (c) 1997, 2025 , Oracle and/or its affiliates. All rights reserved.
33 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44 *
55 * This code is free software; you can redistribute it and/or modify it
@@ -532,49 +532,49 @@ class SqrtFNode : public Node {
532532// reverse bytes of an integer
533533class ReverseBytesINode : public Node {
534534public:
535- ReverseBytesINode (Node *c, Node *in1 ) : Node(c, in1 ) {}
535+ ReverseBytesINode (Node* in ) : Node(nullptr , in ) {}
536536 virtual int Opcode () const ;
537- const Type * bottom_type () const { return TypeInt::INT; }
537+ const Type* bottom_type () const { return TypeInt::INT; }
538538 virtual uint ideal_reg () const { return Op_RegI; }
539539};
540540
541541// -------------------------------ReverseBytesLNode--------------------------------
542542// reverse bytes of a long
543543class ReverseBytesLNode : public Node {
544544public:
545- ReverseBytesLNode (Node *c, Node *in1 ) : Node(c, in1 ) {}
545+ ReverseBytesLNode (Node* in ) : Node(nullptr , in ) {}
546546 virtual int Opcode () const ;
547- const Type * bottom_type () const { return TypeLong::LONG; }
547+ const Type* bottom_type () const { return TypeLong::LONG; }
548548 virtual uint ideal_reg () const { return Op_RegL; }
549549};
550550
551551// -------------------------------ReverseBytesUSNode--------------------------------
552552// reverse bytes of an unsigned short / char
553553class ReverseBytesUSNode : public Node {
554554public:
555- ReverseBytesUSNode (Node *c, Node * in1) : Node(c , in1) {}
555+ ReverseBytesUSNode (Node* in1) : Node(nullptr , in1) {}
556556 virtual int Opcode () const ;
557- const Type * bottom_type () const { return TypeInt::CHAR; }
557+ const Type* bottom_type () const { return TypeInt::CHAR; }
558558 virtual uint ideal_reg () const { return Op_RegI; }
559559};
560560
561561// -------------------------------ReverseBytesSNode--------------------------------
562562// reverse bytes of a short
563563class ReverseBytesSNode : public Node {
564564public:
565- ReverseBytesSNode (Node *c, Node *in1 ) : Node(c, in1 ) {}
565+ ReverseBytesSNode (Node* in ) : Node(nullptr , in ) {}
566566 virtual int Opcode () const ;
567- const Type * bottom_type () const { return TypeInt::SHORT; }
567+ const Type* bottom_type () const { return TypeInt::SHORT; }
568568 virtual uint ideal_reg () const { return Op_RegI; }
569569};
570570
571571// -------------------------------ReverseINode--------------------------------
572572// reverse bits of an int
573573class ReverseINode : public Node {
574574public:
575- ReverseINode (Node *c, Node *in1 ) : Node(c, in1 ) {}
575+ ReverseINode (Node* in ) : Node(nullptr , in ) {}
576576 virtual int Opcode () const ;
577- const Type * bottom_type () const { return TypeInt::INT; }
577+ const Type* bottom_type () const { return TypeInt::INT; }
578578 virtual uint ideal_reg () const { return Op_RegI; }
579579 virtual Node* Identity (PhaseGVN* phase);
580580 virtual const Type* Value (PhaseGVN* phase) const ;
@@ -584,9 +584,9 @@ class ReverseINode : public Node {
584584// reverse bits of a long
585585class ReverseLNode : public Node {
586586public:
587- ReverseLNode (Node *c, Node *in1 ) : Node(c, in1 ) {}
587+ ReverseLNode (Node* in ) : Node(nullptr , in ) {}
588588 virtual int Opcode () const ;
589- const Type * bottom_type () const { return TypeLong::LONG; }
589+ const Type* bottom_type () const { return TypeLong::LONG; }
590590 virtual uint ideal_reg () const { return Op_RegL; }
591591 virtual Node* Identity (PhaseGVN* phase);
592592 virtual const Type* Value (PhaseGVN* phase) const ;
0 commit comments