mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-29 16:12:44 +00:00
Made isPhi const
llvm-svn: 1251
This commit is contained in:
parent
c47553b77d
commit
da9d0c48ba
@ -176,7 +176,8 @@ public:
|
||||
|
||||
|
||||
// delete this later *******
|
||||
bool isPhi(const MachineOpCode opCode) { return isDummyPhiInstr(opCode); }
|
||||
bool isPhi(const MachineOpCode opCode) const
|
||||
{ return isDummyPhiInstr(opCode); }
|
||||
|
||||
|
||||
// Check if an instruction can be issued before its operands are ready,
|
||||
|
@ -176,7 +176,8 @@ public:
|
||||
|
||||
|
||||
// delete this later *******
|
||||
bool isPhi(const MachineOpCode opCode) { return isDummyPhiInstr(opCode); }
|
||||
bool isPhi(const MachineOpCode opCode) const
|
||||
{ return isDummyPhiInstr(opCode); }
|
||||
|
||||
|
||||
// Check if an instruction can be issued before its operands are ready,
|
||||
|
Loading…
x
Reference in New Issue
Block a user