diff --git a/include/llvm/CodeGen/MachineInstrBuilder.h b/include/llvm/CodeGen/MachineInstrBuilder.h index 122ce6c4e22..eb00ede9ef2 100644 --- a/include/llvm/CodeGen/MachineInstrBuilder.h +++ b/include/llvm/CodeGen/MachineInstrBuilder.h @@ -124,13 +124,13 @@ public: } const MachineInstrBuilder &addGlobalAddress(GlobalValue *GV, - bool isPCRelative = false) const { + bool isPCRelative = false) const { MI->addGlobalAddressOperand(GV, isPCRelative); return *this; } const MachineInstrBuilder &addExternalSymbol(const std::string &Name, - bool isPCRelative = false) const{ + bool isPCRelative = false) const{ MI->addExternalSymbolOperand(Name, isPCRelative); return *this; }