diff options
author | Chris Lattner <sabre@nondot.org> | 2009-11-06 06:33:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-11-06 06:33:01 +0000 |
commit | d71e0318a7639a78ea87cc0f6eabf13358fd4c9e (patch) | |
tree | 9228143975b4c6405b723860dc362e7e18232180 /utils/TableGen/CodeGenTarget.h | |
parent | 002e65d73c9060d48f73b259ccfcc483352e859a (diff) | |
download | external_llvm-d71e0318a7639a78ea87cc0f6eabf13358fd4c9e.zip external_llvm-d71e0318a7639a78ea87cc0f6eabf13358fd4c9e.tar.gz external_llvm-d71e0318a7639a78ea87cc0f6eabf13358fd4c9e.tar.bz2 |
clang++ points out that this is pointless.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86239 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenTarget.h')
-rw-r--r-- | utils/TableGen/CodeGenTarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/CodeGenTarget.h b/utils/TableGen/CodeGenTarget.h index e763795..da4b1cc 100644 --- a/utils/TableGen/CodeGenTarget.h +++ b/utils/TableGen/CodeGenTarget.h @@ -229,7 +229,7 @@ class ComplexPattern { unsigned Properties; // Node properties unsigned Attributes; // Pattern attributes public: - ComplexPattern() : NumOperands(0) {}; + ComplexPattern() : NumOperands(0) {} ComplexPattern(Record *R); MVT::SimpleValueType getValueType() const { return Ty; } |