mirror of
https://github.com/openjdk/jdk.git
synced 2026-04-24 05:40:39 +00:00
8378233: depends_only_on_test_impl() assertion hit after JDK-8347365
Reviewed-by: qamai, mbaesken
This commit is contained in:
parent
16f2b80327
commit
2052b443ed
@ -221,6 +221,9 @@ public:
|
||||
virtual int Opcode() const;
|
||||
const Type* bottom_type() const { return TypeInt::BOOL; }
|
||||
virtual uint ideal_reg() const { return Op_RegI; }
|
||||
|
||||
private:
|
||||
virtual bool depends_only_on_test_impl() const { return false; }
|
||||
};
|
||||
|
||||
//------------------------------LowerCaseNode------------------------------------
|
||||
@ -230,6 +233,9 @@ public:
|
||||
virtual int Opcode() const;
|
||||
const Type* bottom_type() const { return TypeInt::BOOL; }
|
||||
virtual uint ideal_reg() const { return Op_RegI; }
|
||||
|
||||
private:
|
||||
virtual bool depends_only_on_test_impl() const { return false; }
|
||||
};
|
||||
|
||||
//------------------------------UpperCaseNode------------------------------------
|
||||
@ -239,6 +245,9 @@ public:
|
||||
virtual int Opcode() const;
|
||||
const Type* bottom_type() const { return TypeInt::BOOL; }
|
||||
virtual uint ideal_reg() const { return Op_RegI; }
|
||||
|
||||
private:
|
||||
virtual bool depends_only_on_test_impl() const { return false; }
|
||||
};
|
||||
|
||||
//------------------------------WhitespaceCode-----------------------------------
|
||||
@ -248,6 +257,9 @@ public:
|
||||
virtual int Opcode() const;
|
||||
const Type* bottom_type() const { return TypeInt::BOOL; }
|
||||
virtual uint ideal_reg() const { return Op_RegI; }
|
||||
|
||||
private:
|
||||
virtual bool depends_only_on_test_impl() const { return false; }
|
||||
};
|
||||
|
||||
//------------------------------CopySign-----------------------------------------
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user