projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
de86bea
)
Remove extraneous ; and the resulting warning.
author
Bill Wendling
<isanbard@gmail.com>
Fri, 11 May 2012 21:56:04 +0000
(21:56 +0000)
committer
Bill Wendling
<isanbard@gmail.com>
Fri, 11 May 2012 21:56:04 +0000
(21:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156649
91177308
-0d34-0410-b5e6-
96231b3b80d8
utils/TableGen/CodeGenRegisters.cpp
patch
|
blob
|
history
diff --git
a/utils/TableGen/CodeGenRegisters.cpp
b/utils/TableGen/CodeGenRegisters.cpp
index 8f4fdf5acf094004fa50638ba582a6ffaffb2e65..1d4536400f34f5a25a2c6adf9e0e4be9a1b355fe 100644
(file)
--- 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; }