From: Bill Wendling Date: Fri, 11 May 2012 21:56:04 +0000 (+0000) Subject: Remove extraneous ; and the resulting warning. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=9df5ec3984c6197939e5a9b1d3b893e909ca0632;p=oota-llvm.git Remove extraneous ; and the resulting warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156649 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/CodeGenRegisters.cpp b/utils/TableGen/CodeGenRegisters.cpp index 8f4fdf5acf0..1d4536400f3 100644 --- a/utils/TableGen/CodeGenRegisters.cpp +++ b/utils/TableGen/CodeGenRegisters.cpp @@ -132,7 +132,7 @@ public: bool isValid() const { return UnitI != UnitE; } - unsigned operator* () const { assert(isValid()); return *UnitI; }; + unsigned operator* () const { assert(isValid()); return *UnitI; } const CodeGenRegister *getReg() const { assert(isValid()); return *RegI; }