summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2011-11-09 06:20:49 +0000
committerDevang Patel <dpatel@apple.com>2011-11-09 06:20:49 +0000
commitc6bcf4315c568610b89e4c79898cfe36ff2e4905 (patch)
treefc8059d33d66903e3b242946a32a661126d5c7ed /lib
parentdfa30e1ab243990eda4732a6dffb91e965e7a755 (diff)
downloadllvm-c6bcf4315c568610b89e4c79898cfe36ff2e4905.tar.gz
llvm-c6bcf4315c568610b89e4c79898cfe36ff2e4905.tar.bz2
llvm-c6bcf4315c568610b89e4c79898cfe36ff2e4905.tar.xz
Remove extra ';'
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144172 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfAccelTable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfAccelTable.h b/lib/CodeGen/AsmPrinter/DwarfAccelTable.h
index a0f64f040b..0c1e949c7f 100644
--- a/lib/CodeGen/AsmPrinter/DwarfAccelTable.h
+++ b/lib/CodeGen/AsmPrinter/DwarfAccelTable.h
@@ -96,7 +96,7 @@ class DwarfAccelTable {
TableHeader (uint32_t data_len) :
magic (MagicHash), version (1), hash_function (eHashFunctionDJB),
bucket_count (0), hashes_count (0), header_data_len (data_len)
- {};
+ {}
#ifndef NDEBUG
void print(raw_ostream &O) {
@@ -140,7 +140,7 @@ public:
AtomType type; // enum AtomType
uint16_t form; // DWARF DW_FORM_ defines
- Atom(AtomType type, uint16_t form) : type(type), form(form) {};
+ Atom(AtomType type, uint16_t form) : type(type), form(form) {}
static const char * AtomTypeString(enum AtomType);
#ifndef NDEBUG
void print(raw_ostream &O) {