[llvm-commits] [llvm] r156649 - /llvm/trunk/utils/TableGen/CodeGenRegisters.cpp
Bill Wendling
isanbard at gmail.com
Fri May 11 14:56:04 PDT 2012
Author: void
Date: Fri May 11 16:56:04 2012
New Revision: 156649
URL: http://llvm.org/viewvc/llvm-project?rev=156649&view=rev
Log:
Remove extraneous ; and the resulting warning.
Modified:
llvm/trunk/utils/TableGen/CodeGenRegisters.cpp
Modified: llvm/trunk/utils/TableGen/CodeGenRegisters.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/CodeGenRegisters.cpp?rev=156649&r1=156648&r2=156649&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/CodeGenRegisters.cpp (original)
+++ llvm/trunk/utils/TableGen/CodeGenRegisters.cpp Fri May 11 16:56:04 2012
@@ -132,7 +132,7 @@
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; }
More information about the llvm-commits
mailing list