diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-10-13 21:14:26 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-10-13 21:14:26 +0000 |
commit | ab51cf2e78023c5a9c715bb27d68e0b492822e16 (patch) | |
tree | d33b0d76086cbb54952be211b41c47ffc246e913 /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | df1ca3ff63b92c3c7c5d89d0ec43cf724a05236f (diff) | |
download | bcm5719-llvm-ab51cf2e78023c5a9c715bb27d68e0b492822e16.tar.gz bcm5719-llvm-ab51cf2e78023c5a9c715bb27d68e0b492822e16.zip |
Merge ISD::TRUNCSTORE to ISD::STORE. Switch to using StoreSDNode.
llvm-svn: 30945
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 0183678464f..ee1c4acad9f 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -28,6 +28,7 @@ TargetLowering::TargetLowering(TargetMachine &tm) // All operations default to being supported. memset(OpActions, 0, sizeof(OpActions)); memset(LoadXActions, 0, sizeof(LoadXActions)); + memset(&StoreXActions, 0, sizeof(StoreXActions)); IsLittleEndian = TD->isLittleEndian(); UsesGlobalOffsetTable = false; |