OSDN Git Service
(root)
/
android-x86
/
external-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d6565a
)
Should pass isKill and isDead to addRegOperand() as well.
author
Evan Cheng
<evan.cheng@apple.com>
Thu, 15 Feb 2007 02:52:40 +0000
(
02:52
+0000)
committer
Evan Cheng
<evan.cheng@apple.com>
Thu, 15 Feb 2007 02:52:40 +0000
(
02:52
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34294
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/CodeGen/MachineInstrBuilder.h
patch
|
blob
|
history
diff --git
a/include/llvm/CodeGen/MachineInstrBuilder.h
b/include/llvm/CodeGen/MachineInstrBuilder.h
index
44faa48
..
1d65a46
100644
(file)
--- a/
include/llvm/CodeGen/MachineInstrBuilder.h
+++ b/
include/llvm/CodeGen/MachineInstrBuilder.h
@@
-39,7
+39,7
@@
public:
const
MachineInstrBuilder &addReg(int RegNo, bool isDef = false, bool isImp = false,
bool isKill = false, bool isDead = false) const {
- MI->addRegOperand(RegNo, isDef, isImp);
+ MI->addRegOperand(RegNo, isDef, isImp
, isKill, isDead
);
return *this;
}