зеркало из https://github.com/microsoft/clang-1.git
Driver: Make -fnext-runtime the default when rewriting Objective-C.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108741 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
6c57322d0f
Коммит
5314e44863
|
@ -767,6 +767,7 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
|
|||
CmdArgs.push_back(Args.MakeArgString(TripleStr));
|
||||
|
||||
// Select the appropriate action.
|
||||
bool IsRewriter = false;
|
||||
if (isa<AnalyzeJobAction>(JA)) {
|
||||
assert(JA.getType() == types::TY_Plist && "Invalid output type.");
|
||||
CmdArgs.push_back("-analyze");
|
||||
|
@ -813,6 +814,7 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
|
|||
CmdArgs.push_back("-emit-pch");
|
||||
} else if (JA.getType() == types::TY_RewrittenObjC) {
|
||||
CmdArgs.push_back("-rewrite-objc");
|
||||
IsRewriter = true;
|
||||
} else {
|
||||
assert(JA.getType() == types::TY_PP_Asm &&
|
||||
"Unexpected output type!");
|
||||
|
@ -1285,9 +1287,12 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
|
|||
options::OPT_fno_gnu_keywords))
|
||||
A->render(Args, CmdArgs);
|
||||
|
||||
// -fnext-runtime is default.
|
||||
// -fnext-runtime defaults to on Darwin and when rewriting Objective-C, and is
|
||||
// -the -cc1 default.
|
||||
bool NeXTRuntimeIsDefault =
|
||||
IsRewriter || getToolChain().getTriple().getOS() == llvm::Triple::Darwin;
|
||||
if (!Args.hasFlag(options::OPT_fnext_runtime, options::OPT_fgnu_runtime,
|
||||
getToolChain().getTriple().getOS() == llvm::Triple::Darwin))
|
||||
NeXTRuntimeIsDefault))
|
||||
CmdArgs.push_back("-fgnu-runtime");
|
||||
|
||||
// -fobjc-nonfragile-abi=0 is default.
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
// RUN: %clang -ccc-host-triple unknown -rewrite-objc %s -o - -### 2>&1 | \
|
||||
// RUN: FileCheck -check-prefix=TEST0 %s
|
||||
// TEST0: clang{{.*}}" "-rewrite-objc"
|
||||
// TEST0: clang{{.*}}" "-cc1"
|
||||
// TEST0: "-rewrite-objc"
|
||||
// FIXME: CHECK-NOT is broken somehow, it doesn't work here. Check adjacency instead.
|
||||
// TEST0: "-fmessage-length" "0" "-fdiagnostics-show-option"
|
||||
// TEST0: rewrite-objc.m"
|
||||
|
||||
// RUN: not %clang -ccc-no-clang -ccc-host-triple unknown -rewrite-objc %s -o - -### 2>&1 | \
|
||||
// RUN: FileCheck -check-prefix=TEST1 %s
|
||||
|
|
Загрузка…
Ссылка в новой задаче