diff options
author | Dan Gohman <gohman@apple.com> | 2008-08-14 21:51:29 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-08-14 21:51:29 +0000 |
commit | c44423853a31b0af89bfd698595d5c2268979440 (patch) | |
tree | 2e540aa1e38a7cbbba191bff3b44289d175ed8bd /llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | |
parent | 52dc07b01a0ae48ad5fbdd6a901dca51650b4e20 (diff) | |
download | bcm5719-llvm-c44423853a31b0af89bfd698595d5c2268979440.tar.gz bcm5719-llvm-c44423853a31b0af89bfd698595d5c2268979440.zip |
Make FastISel's constructor protected, and give it a destructor.
llvm-svn: 54793
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/FastISel.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index 6fe941fecbf..f4d453966b8 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -45,6 +45,8 @@ FastISel::SelectInstructions(BasicBlock::iterator Begin, BasicBlock::iterator En return I; } +FastISel::~FastISel() {} + unsigned FastISel::FastEmit_(MVT::SimpleValueType, ISD::NodeType) { return 0; } |