diff options
-rw-r--r-- | include/llvm/CodeGen/MachineInstr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 94a51c0..06d8f3a 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -180,7 +180,7 @@ public: assert(isRegister() && "Wrong MachineOperand accessor"); return IsImp; } - bool setImplicit() { + void setImplicit() { assert(isRegister() && "Wrong MachineOperand accessor"); IsImp = true; } |