Commit d7ee9728 by Derek Schuff

Remove extra semicolon after method definition

The mac build treats this as an error. R=stichnot@chromium.org Review URL: https://codereview.chromium.org/429253002
parent c820ddf2
...@@ -611,7 +611,7 @@ void InstExtractElement::dump(const Cfg *Func) const { ...@@ -611,7 +611,7 @@ void InstExtractElement::dump(const Cfg *Func) const {
Str << ", "; Str << ", ";
Str << getSrc(1)->getType() << " "; Str << getSrc(1)->getType() << " ";
getSrc(1)->dump(Func); getSrc(1)->dump(Func);
}; }
void InstInsertElement::dump(const Cfg *Func) const { void InstInsertElement::dump(const Cfg *Func) const {
Ostream &Str = Func->getContext()->getStrDump(); Ostream &Str = Func->getContext()->getStrDump();
...@@ -625,7 +625,7 @@ void InstInsertElement::dump(const Cfg *Func) const { ...@@ -625,7 +625,7 @@ void InstInsertElement::dump(const Cfg *Func) const {
Str << ", "; Str << ", ";
Str << getSrc(2)->getType() << " "; Str << getSrc(2)->getType() << " ";
getSrc(2)->dump(Func); getSrc(2)->dump(Func);
}; }
void InstFcmp::dump(const Cfg *Func) const { void InstFcmp::dump(const Cfg *Func) const {
Ostream &Str = Func->getContext()->getStrDump(); Ostream &Str = Func->getContext()->getStrDump();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment