commit | a80efceb93211a22e13dfc68198da4a25c1a7762 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Fri Mar 27 23:55:04 2009 +0000 |
committer | Dan Gohman <gohman@apple.com> | Fri Mar 27 23:55:04 2009 +0000 |
tree | 4dd5e6b27f0e99b63acf0e3aa08f99f80c9647a5 | |
parent | 84d08db733f64d9c3da4d534a3c9b553e0f77ed8 [diff] [blame] |
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
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 @@ 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; } } }