mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
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:
@@ -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.
|
||||
|
Reference in New Issue
Block a user