diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-03-03 02:20:19 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-03-03 02:20:19 +0000 |
commit | dfbbcf964a5d51bc01340a6f830cf380f9c0a5a1 (patch) | |
tree | 6450f44734d63a71c30b5a68486ba81dfd9ffc63 | |
parent | c5aff4497e5bfd7523e00b87560c1a5aa65136cc (diff) |
Add a missing break, from John Wiegley
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126919 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/AST/ItaniumMangle.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/AST/ItaniumMangle.cpp b/lib/AST/ItaniumMangle.cpp index 8474ea3633..45653e6e7d 100644 --- a/lib/AST/ItaniumMangle.cpp +++ b/lib/AST/ItaniumMangle.cpp @@ -2176,6 +2176,7 @@ void CXXNameMangler::mangleExpression(const Expr *E, unsigned Arity) { Diags.Report(DiagID); return; } + break; } } } |