diff options
| author | Dan Gohman <gohman@apple.com> | 2009-03-27 23:55:04 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-03-27 23:55:04 +0000 |
| commit | 2785e4be37a720fd4c5a8b482a5ae304cff9d40b (patch) | |
| tree | a4526b54fbb81bb3eb285a44099fe4046e95a62a /llvm/lib/CodeGen | |
| parent | c741fb15a5de66dc84b5e3e75325c4af3269acf3 (diff) | |
| download | bcm5719-llvm-2785e4be37a720fd4c5a8b482a5ae304cff9d40b.tar.gz bcm5719-llvm-2785e4be37a720fd4c5a8b482a5ae304cff9d40b.zip | |
Fix what surely must be a copy+pasto.
llvm-svn: 67881
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index fdabd4cb25e..d7d0efcd292 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/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; } } } |

