aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-03-27 23:55:04 +0000
committerDan Gohman <gohman@apple.com>2009-03-27 23:55:04 +0000
commita80efceb93211a22e13dfc68198da4a25c1a7762 (patch)
tree4dd5e6b27f0e99b63acf0e3aa08f99f80c9647a5 /lib/CodeGen/SelectionDAG
parent84d08db733f64d9c3da4d534a3c9b553e0f77ed8 (diff)
downloadexternal_llvm-a80efceb93211a22e13dfc68198da4a25c1a7762.zip
external_llvm-a80efceb93211a22e13dfc68198da4a25c1a7762.tar.gz
external_llvm-a80efceb93211a22e13dfc68198da4a25c1a7762.tar.bz2
Fix what surely must be a copy+pasto.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67881 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index fdabd4c..d7d0efc 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -548,8 +548,8 @@ void SelectionDAGISel::ComputeLiveOutVRegInfo() {
FLI.LiveOutRegInfo.resize(DestReg+1);
FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[DestReg];
LOI.NumSignBits = NumSignBits;
- LOI.KnownOne = NumSignBits;
- LOI.KnownZero = NumSignBits;
+ LOI.KnownOne = KnownOne;
+ LOI.KnownZero = KnownZero;
}
}
}