diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-09-10 20:55:43 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-09-10 20:55:43 +0000 |
commit | 4202c0f2a998581abd9ebedeb10f804b45b72340 (patch) | |
tree | 88fb6941cb7f2c50612fc093355fa5f39b133f53 /clang/lib/CodeGen/Mangle.cpp | |
parent | 22e3a93586c458e2038f7380e78b3f2fb39f660c (diff) | |
download | bcm5719-llvm-4202c0f2a998581abd9ebedeb10f804b45b72340.tar.gz bcm5719-llvm-4202c0f2a998581abd9ebedeb10f804b45b72340.zip |
Define and implement CXXNoexceptExpr. Create it in Sema.
llvm-svn: 113623
Diffstat (limited to 'clang/lib/CodeGen/Mangle.cpp')
-rw-r--r-- | clang/lib/CodeGen/Mangle.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/Mangle.cpp b/clang/lib/CodeGen/Mangle.cpp index a70a52d94e0..1cf3211b708 100644 --- a/clang/lib/CodeGen/Mangle.cpp +++ b/clang/lib/CodeGen/Mangle.cpp @@ -1618,7 +1618,8 @@ void CXXNameMangler::mangleExpression(const Expr *E, unsigned Arity) { case Expr::TypesCompatibleExprClass: case Expr::UnaryTypeTraitExprClass: case Expr::VAArgExprClass: - case Expr::CXXUuidofExprClass: { + case Expr::CXXUuidofExprClass: + case Expr::CXXNoexceptExprClass: { // As bad as this diagnostic is, it's better than crashing. Diagnostic &Diags = Context.getDiags(); unsigned DiagID = Diags.getCustomDiagID(Diagnostic::Error, |