Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: src/IceInst.cpp

Issue 429253002: Remove extra semicolon after method definition (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInst.cpp
diff --git a/src/IceInst.cpp b/src/IceInst.cpp
index 6893856e9e8846d33cb0f3951127fc6b6b7f1a29..af7152f0a690b8b221b58ae9d0a35b4234fbb60d 100644
--- a/src/IceInst.cpp
+++ b/src/IceInst.cpp
@@ -611,7 +611,7 @@ void InstExtractElement::dump(const Cfg *Func) const {
Str << ", ";
Str << getSrc(1)->getType() << " ";
getSrc(1)->dump(Func);
-};
+}
void InstInsertElement::dump(const Cfg *Func) const {
Ostream &Str = Func->getContext()->getStrDump();
@@ -625,7 +625,7 @@ void InstInsertElement::dump(const Cfg *Func) const {
Str << ", ";
Str << getSrc(2)->getType() << " ";
getSrc(2)->dump(Func);
-};
+}
void InstFcmp::dump(const Cfg *Func) const {
Ostream &Str = Func->getContext()->getStrDump();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698