aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/GraphWriter.cpp
diff options
context:
space:
mode:
authorTimm Bäder <tbaeder@redhat.com>2021-04-30 10:17:03 +0200
committerTimm Bäder <tbaeder@redhat.com>2021-04-30 10:31:31 +0200
commit95157860aeecde33da8dc75c67823ac9ea9c58ff (patch)
treed10895ffdd3233ea186e26d4a5d93740a4f9f829 /llvm/lib/Support/GraphWriter.cpp
parentb6df85290118d17c1dddf412a1a44a83158133e3 (diff)
downloadllvm-95157860aeecde33da8dc75c67823ac9ea9c58ff.zip
llvm-95157860aeecde33da8dc75c67823ac9ea9c58ff.tar.gz
llvm-95157860aeecde33da8dc75c67823ac9ea9c58ff.tar.bz2
[llvm][Support][NFC] Fix fallthrough attribute indentation
The attribute does not belong to the if statement before and trips up gcc's indentation checker.
Diffstat (limited to 'llvm/lib/Support/GraphWriter.cpp')
-rw-r--r--llvm/lib/Support/GraphWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/GraphWriter.cpp b/llvm/lib/Support/GraphWriter.cpp
index d8aae92..f47a52a 100644
--- a/llvm/lib/Support/GraphWriter.cpp
+++ b/llvm/lib/Support/GraphWriter.cpp
@@ -54,7 +54,7 @@ std::string llvm::DOT::EscapeString(const std::string &Label) {
Str.erase(Str.begin()+i); continue;
default: break;
}
- LLVM_FALLTHROUGH;
+ LLVM_FALLTHROUGH;
case '{': case '}':
case '<': case '>':
case '|': case '"':