commit | d38e97f8f5604a6e487633e94b489647c49ad733 | [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 | c6a39145b11356be3fcc21f17b4f2e7e27b41408 [diff] |
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; } } }