aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2010-02-10 00:41:49 +0000
committerDale Johannesen <dalej@apple.com>2010-02-10 00:41:49 +0000
commitdb9d33ba6ce91d8365153ac92c96046a68afa871 (patch)
treeb49955fb580d864d121d0f9c02172623b8f4c0bf /lib
parent726d397a8cc48a5cb5d2f8a0fe10f7f17f7d4afc (diff)
downloadexternal_llvm-db9d33ba6ce91d8365153ac92c96046a68afa871.zip
external_llvm-db9d33ba6ce91d8365153ac92c96046a68afa871.tar.gz
external_llvm-db9d33ba6ce91d8365153ac92c96046a68afa871.tar.bz2
Add isDebug argument to ChangeToRegister; this prevents
the field from being used uninitialized later in some cases. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95735 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/MachineInstr.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp
index 12d3006..34f7781 100644
--- a/lib/CodeGen/MachineInstr.cpp
+++ b/lib/CodeGen/MachineInstr.cpp
@@ -127,7 +127,8 @@ void MachineOperand::ChangeToImmediate(int64_t ImmVal) {
/// the specified value. If an operand is known to be an register already,
/// the setReg method should be used.
void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp,
- bool isKill, bool isDead, bool isUndef) {
+ bool isKill, bool isDead, bool isUndef,
+ bool isDebug) {
// If this operand is already a register operand, use setReg to update the
// register's use/def lists.
if (isReg()) {
@@ -152,6 +153,7 @@ void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp,
IsDead = isDead;
IsUndef = isUndef;
IsEarlyClobber = false;
+ IsDebug = isDebug;
SubReg = 0;
}