1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Remove extraneous ';'s.

llvm-svn: 148740
This commit is contained in:
Bill Wendling 2012-01-23 22:55:02 +00:00
parent eed9085fca
commit 22382365ff
3 changed files with 5 additions and 5 deletions

View File

@ -174,7 +174,7 @@ public:
return true;
case JK_KeyValuePair:
return false;
};
}
llvm_unreachable("Invalid JSONAtom kind");
}
static bool classof(const JSONValue *Value) { return true; }
@ -190,7 +190,7 @@ public:
///
/// This is the unescaped content of the JSON text.
/// See http://www.ietf.org/rfc/rfc4627.txt for details.
StringRef getRawText() const { return RawText; };
StringRef getRawText() const { return RawText; }
private:
JSONString(StringRef RawText) : JSONValue(JK_String), RawText(RawText) {}
@ -380,7 +380,7 @@ public:
case JK_KeyValuePair:
case JK_String:
return false;
};
}
llvm_unreachable("Invalid JSONAtom kind");
}
static bool classof(const JSONContainer *Container) { return true; }

View File

@ -207,7 +207,7 @@ public:
HashDataContents(DIE *D, char Flags) :
Die(D),
Flags(Flags) { };
Flags(Flags) { }
#ifndef NDEBUG
void print(raw_ostream &O) const {
O << " Offset: " << Die->getOffset() << "\n";

View File

@ -119,7 +119,7 @@ public:
bool AbortOnFailure = true) {
// FIXME: not implemented.
return 0;
};
}
/// recompileAndRelinkFunction - For the interpreter, functions are always
/// up-to-date.