aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-strings/llvm-strings.cpp
diff options
context:
space:
mode:
authorFangrui Song <i@maskray.me>2021-07-28 09:31:14 -0700
committerFangrui Song <i@maskray.me>2021-07-28 09:31:14 -0700
commit6da3d8b19c32c76bb503b1a71fc167a0487ef200 (patch)
treebb382aee391f9bd0977e607f5e3db2d77c912cd0 /llvm/tools/llvm-strings/llvm-strings.cpp
parent49f745f59cbe1eda4653d917cc7d8d0b586fc6a4 (diff)
downloadllvm-6da3d8b19c32c76bb503b1a71fc167a0487ef200.zip
llvm-6da3d8b19c32c76bb503b1a71fc167a0487ef200.tar.gz
llvm-6da3d8b19c32c76bb503b1a71fc167a0487ef200.tar.bz2
[llvm] Replace LLVM_ATTRIBUTE_NORETURN with C++11 [[noreturn]]
[[noreturn]] can be used since Oct 2016 when the minimum compiler requirement was bumped to GCC 4.8/MSVC 2015. Note: the definition of LLVM_ATTRIBUTE_NORETURN is kept for now.
Diffstat (limited to 'llvm/tools/llvm-strings/llvm-strings.cpp')
-rw-r--r--llvm/tools/llvm-strings/llvm-strings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-strings/llvm-strings.cpp b/llvm/tools/llvm-strings/llvm-strings.cpp
index 0b068749..e7c50f8 100644
--- a/llvm/tools/llvm-strings/llvm-strings.cpp
+++ b/llvm/tools/llvm-strings/llvm-strings.cpp
@@ -73,7 +73,7 @@ static bool PrintFileName;
enum radix { none, octal, hexadecimal, decimal };
static radix Radix;
-LLVM_ATTRIBUTE_NORETURN static void reportCmdLineError(const Twine &Message) {
+[[noreturn]] static void reportCmdLineError(const Twine &Message) {
WithColor::error(errs(), ToolName) << Message << "\n";
exit(1);
}