[llvm-commits] [llvm] r144172 - /llvm/trunk/lib/CodeGen/AsmPrinter/DwarfAccelTable.h

Devang Patel dpatel at apple.com
Tue Nov 8 22:20:50 PST 2011


Author: dpatel
Date: Wed Nov  9 00:20:49 2011
New Revision: 144172

URL: http://llvm.org/viewvc/llvm-project?rev=144172&view=rev
Log:
Remove extra ';'

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/DwarfAccelTable.h

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfAccelTable.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfAccelTable.h?rev=144172&r1=144171&r2=144172&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfAccelTable.h (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfAccelTable.h Wed Nov  9 00:20:49 2011
@@ -96,7 +96,7 @@
     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 @@
     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) {





More information about the llvm-commits mailing list