diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-05-11 21:56:04 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-05-11 21:56:04 +0000 |
commit | 9df5ec3984c6197939e5a9b1d3b893e909ca0632 (patch) | |
tree | a1d81853068d785ba2e7fab2ce3702e312acea93 /utils/TableGen/CodeGenRegisters.cpp | |
parent | de86beae7d94ebb7f32940f34935d41d3416938a (diff) |
Remove extraneous ; and the resulting warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156649 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenRegisters.cpp')
-rw-r--r-- | utils/TableGen/CodeGenRegisters.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/CodeGenRegisters.cpp b/utils/TableGen/CodeGenRegisters.cpp index 8f4fdf5acf..1d4536400f 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; } |