diff options
author | Chris Lattner <sabre@nondot.org> | 2007-09-21 17:06:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-09-21 17:06:39 +0000 |
commit | b3d01d2f564aeb5354a4e5e7934b788f99234848 (patch) | |
tree | 778568fce796a7635d7d16b1065323e2a10e7c07 /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | 4730c049049a430f7c32d3c09c75468f24835c23 (diff) | |
download | bcm5719-llvm-b3d01d2f564aeb5354a4e5e7934b788f99234848.tar.gz bcm5719-llvm-b3d01d2f564aeb5354a4e5e7934b788f99234848.zip |
initialize SetCCResultContents, fixing PR1693
llvm-svn: 42193
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 4d87ac347a4..5943cc1ebd3 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -161,6 +161,7 @@ TargetLowering::TargetLowering(TargetMachine &tm) StackPointerRegisterToSaveRestore = 0; ExceptionPointerRegister = 0; ExceptionSelectorRegister = 0; + SetCCResultContents = UndefinedSetCCResult; SchedPreferenceInfo = SchedulingForLatency; JumpBufSize = 0; JumpBufAlignment = 0; |