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 | eeb6e3049f0a62d2d61b87cc02ec5f7372731ab3 (patch) | |
tree | e32198df2a137da555e70e8c9ff06509418595da /lib/CodeGen | |
parent | fa3d0ff9818d1087e19f7cb92269f9a6d68cc72d (diff) | |
download | external_llvm-eeb6e3049f0a62d2d61b87cc02ec5f7372731ab3.zip external_llvm-eeb6e3049f0a62d2d61b87cc02ec5f7372731ab3.tar.gz external_llvm-eeb6e3049f0a62d2d61b87cc02ec5f7372731ab3.tar.bz2 |
Make FastISel's constructor protected, and give it a destructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54793 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/SelectionDAG/FastISel.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp index 6fe941f..f4d4539 100644 --- a/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/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; } |