Move the remaining attribute macros to systematic names based on the attribute

name and prefixed with 'LLVM_'.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117203 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chandler Carruth
2010-10-23 08:40:19 +00:00
parent 5117709a1d
commit 19e57025d4
5 changed files with 38 additions and 34 deletions

View File

@@ -72,15 +72,16 @@ namespace llvm {
/// standard error, followed by a newline.
/// After the error handler is called this function will call exit(1), it
/// does not return.
NORETURN void report_fatal_error(const char *reason);
NORETURN void report_fatal_error(const std::string &reason);
NORETURN void report_fatal_error(const Twine &reason);
LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason);
LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason);
LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason);
/// This function calls abort(), and prints the optional message to stderr.
/// Use the llvm_unreachable macro (that adds location info), instead of
/// calling this function directly.
NORETURN void llvm_unreachable_internal(const char *msg=0,
const char *file=0, unsigned line=0);
LLVM_ATTRIBUTE_NORETURN void llvm_unreachable_internal(const char *msg=0,
const char *file=0,
unsigned line=0);
}
/// Prints the message and location info to stderr in !NDEBUG builds.