Fix braces.

llvm-svn: 74923
This commit is contained in:
Torok Edwin 2009-07-07 17:39:53 +00:00
parent 6c2d233e7a
commit 973c214ce0
1 changed files with 2 additions and 4 deletions

View File

@ -35,8 +35,7 @@ void llvm_remove_error_handler(void) {
ErrorHandler = 0;
}
void llvm_report_error(const std::string &reason)
{
void llvm_report_error(const std::string &reason) {
if (!ErrorHandler) {
errs() << "LLVM ERROR: " << reason << "\n";
} else {
@ -45,8 +44,7 @@ void llvm_report_error(const std::string &reason)
exit(1);
}
void llvm_unreachable(void)
{
void llvm_unreachable(void) {
abort();
}
}