diff options
author | Chris Lattner <sabre@nondot.org> | 2006-07-19 00:00:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-07-19 00:00:37 +0000 |
commit | c0973edc6999c136198552d9f6d415b8fe6faa33 (patch) | |
tree | 32648d64825e21b5e5cc911f2335f6d8ce7f3a68 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | a0ddced752ecc84bc9413a9d03c4fc92824ee623 (diff) | |
download | bcm5719-llvm-c0973edc6999c136198552d9f6d415b8fe6faa33.tar.gz bcm5719-llvm-c0973edc6999c136198552d9f6d415b8fe6faa33.zip |
Add an out-of-line virtual method for the sdnode class to give it a home.
llvm-svn: 29192
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 13f0c491aa9..07b7c88829e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2702,6 +2702,10 @@ void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To, // SDNode Class //===----------------------------------------------------------------------===// +// Out-of-line virtual method to give class a home. +void SDNode::ANCHOR() { +} + /// getValueTypeList - Return a pointer to the specified value type. /// |