Remove extraneous ';'s.
authorBill Wendling <isanbard@gmail.com>
Mon, 23 Jan 2012 22:55:02 +0000 (22:55 +0000)
committerBill Wendling <isanbard@gmail.com>
Mon, 23 Jan 2012 22:55:02 +0000 (22:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148740 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/JSONParser.h
lib/CodeGen/AsmPrinter/DwarfAccelTable.h
lib/ExecutionEngine/Interpreter/Interpreter.h

index 39bda31738ff73bdbf87ee93e5756020575a8896..11149f1e47baf1320252d22321c69b373cec419f 100644 (file)
@@ -174,7 +174,7 @@ public:
         return true;
       case JK_KeyValuePair:
         return false;
-    };
+    }
     llvm_unreachable("Invalid JSONAtom kind");
   }
   static bool classof(const JSONValue *Value) { return true; }
@@ -190,7 +190,7 @@ public:
   ///
   /// This is the unescaped content of the JSON text.
   /// See http://www.ietf.org/rfc/rfc4627.txt for details.
-  StringRef getRawText() const { return RawText; };
+  StringRef getRawText() const { return RawText; }
 
 private:
   JSONString(StringRef RawText) : JSONValue(JK_String), RawText(RawText) {}
@@ -380,7 +380,7 @@ public:
       case JK_KeyValuePair:
       case JK_String:
         return false;
-    };
+    }
     llvm_unreachable("Invalid JSONAtom kind");
   }
   static bool classof(const JSONContainer *Container) { return true; }
index 464ada48474f98d84830ec878c35a96afc2c7e7f..2278d4c784f44674ca6a9fc280de9c140b0d8138 100644 (file)
@@ -207,7 +207,7 @@ public:
 
     HashDataContents(DIE *D, char Flags) :
       Die(D),
-      Flags(Flags) { };
+      Flags(Flags) { }
     #ifndef NDEBUG
     void print(raw_ostream &O) const {
       O << "  Offset: " << Die->getOffset() << "\n";
index 7c8e71e14f6fa34c3ef10824818b9159a49b4b00..5a1af6d3536f8737007f305fd9c7eced8504c06f 100644 (file)
@@ -119,7 +119,7 @@ public:
                                           bool AbortOnFailure = true) {
     // FIXME: not implemented.
     return 0;
-  };
+  }
 
   /// recompileAndRelinkFunction - For the interpreter, functions are always
   /// up-to-date.