aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-01-20 17:30:40 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-01-20 17:30:40 +0000
commit631bd3cdf39eb099d5d5d279b17b08f119956538 (patch)
tree81743ebd9c2c43038d9020249f3db7d5cffe34f5
parentc60fbcc133a98090f3f6a67a4d1cfad61238fc8e (diff)
downloadexternal_llvm-631bd3cdf39eb099d5d5d279b17b08f119956538.zip
external_llvm-631bd3cdf39eb099d5d5d279b17b08f119956538.tar.gz
external_llvm-631bd3cdf39eb099d5d5d279b17b08f119956538.tar.bz2
Spacing
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62584 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/MachineInstr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h
index 4b9f459..379cf8f 100644
--- a/include/llvm/CodeGen/MachineInstr.h
+++ b/include/llvm/CodeGen/MachineInstr.h
@@ -208,7 +208,7 @@ public:
/// findRegisterDefOperand - Wrapper for findRegisterDefOperandIdx, it returns
/// a pointer to the MachineOperand rather than an index.
- MachineOperand *findRegisterDefOperand(unsigned Reg,bool isDead = false,
+ MachineOperand *findRegisterDefOperand(unsigned Reg, bool isDead = false,
const TargetRegisterInfo *TRI = NULL) {
int Idx = findRegisterDefOperandIdx(Reg, isDead, TRI);
return (Idx == -1) ? NULL : &getOperand(Idx);