aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-03-29 01:04:05 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-03-29 01:04:05 +0000
commitcae913cdcbf7341d57d7ea99c88b8ae59b526742 (patch)
tree8eb416b95072e5d10d22d18683684afe2267597f /include/llvm
parent720326628e462f8dcca8999dff372961af3ce76c (diff)
downloadexternal_llvm-cae913cdcbf7341d57d7ea99c88b8ae59b526742.zip
external_llvm-cae913cdcbf7341d57d7ea99c88b8ae59b526742.tar.gz
external_llvm-cae913cdcbf7341d57d7ea99c88b8ae59b526742.tar.bz2
Cosmetic change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48935 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-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 d4438d2..af4e8ce 100644
--- a/include/llvm/CodeGen/MachineInstr.h
+++ b/include/llvm/CodeGen/MachineInstr.h
@@ -177,7 +177,7 @@ public:
/// findRegisterUseOperand - Wrapper for findRegisterUseOperandIdx, it returns
/// a pointer to the MachineOperand rather than an index.
- MachineOperand *findRegisterUseOperand(unsigned Reg,bool isKill = false,
+ MachineOperand *findRegisterUseOperand(unsigned Reg, bool isKill = false,
const TargetRegisterInfo *TRI = NULL) {
int Idx = findRegisterUseOperandIdx(Reg, isKill, TRI);
return (Idx == -1) ? NULL : &getOperand(Idx);