From ee3d2c8bc801bfd977fb8b0d1212bdbe59340159 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Thu, 14 Oct 2004 18:47:56 +0000 Subject: [PATCH] Convert tabs to spaces git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16988 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachineInstrBuilder.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }