diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-11-01 01:34:46 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-11-01 01:34:46 +0000 |
commit | 6e5610fa4d5d3f89671bb7efbdff518b62f5ed99 (patch) | |
tree | cd338b4bb97e610eeb849eb8c691e0e9832554f3 /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 9095e5bf7e4fc06e3b683228ac8da975fc254a55 (diff) | |
download | bcm5719-llvm-6e5610fa4d5d3f89671bb7efbdff518b62f5ed99.tar.gz bcm5719-llvm-6e5610fa4d5d3f89671bb7efbdff518b62f5ed99.zip |
Implement ABI proposal for throwing noexcept function pointers, per discussion
on cxx-abi-dev (thread starting 2016-10-11). This is currently hidden behind a
cc1-only -m flag, pending discussion of how best to deal with language changes
that require use of new symbols from the ABI library.
llvm-svn: 285664
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 8588fa37810..c4fa01c8173 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -553,6 +553,7 @@ static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK, Opts.ObjCAutoRefCountExceptions = Args.hasArg(OPT_fobjc_arc_exceptions); Opts.CXAAtExit = !Args.hasArg(OPT_fno_use_cxa_atexit); Opts.CXXCtorDtorAliases = Args.hasArg(OPT_mconstructor_aliases); + Opts.QualifiedFunctionTypeInfo = Args.hasArg(OPT_mqualified_function_type_info); Opts.CodeModel = getCodeModel(Args, Diags); Opts.DebugPass = Args.getLastArgValue(OPT_mdebug_pass); Opts.DisableFPElim = |