diff options
Diffstat (limited to 'llvm/tools/llvm-mca/Instruction.h')
-rw-r--r-- | llvm/tools/llvm-mca/Instruction.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/tools/llvm-mca/Instruction.h b/llvm/tools/llvm-mca/Instruction.h index d7d26859d17..59134bc33de 100644 --- a/llvm/tools/llvm-mca/Instruction.h +++ b/llvm/tools/llvm-mca/Instruction.h @@ -313,7 +313,6 @@ public: bool isReady() const { return Stage == IS_READY; } bool isExecuting() const { return Stage == IS_EXECUTING; } bool isExecuted() const { return Stage == IS_EXECUTED; } - bool isZeroLatency() const; void retire() { assert(isExecuted() && "Instruction is in an invalid state!"); |