diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-06-13 16:42:53 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-06-13 16:42:53 +0000 |
commit | c9224d6714b1902ef661f6c9a3dbad7faa18fedd (patch) | |
tree | 06ec3cce9612286a15560041ae074f0362fe6bc4 /clang/lib/Frontend | |
parent | bf31c4e4ca1fb09884b5c2030718ab4772320c7d (diff) | |
download | bcm5719-llvm-c9224d6714b1902ef661f6c9a3dbad7faa18fedd.tar.gz bcm5719-llvm-c9224d6714b1902ef661f6c9a3dbad7faa18fedd.zip |
Eliminate the -f[no]objc-infer-related-result-type flags; there's no
reason to allow the user to control these semantics through a flag.
llvm-svn: 132919
Diffstat (limited to 'clang/lib/Frontend')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 536512a121e..b8b5011bbfa 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -670,9 +670,6 @@ static void LangOptsToArgs(const LangOptions &Opts, Res.push_back("-fobjc-gc-only"); } } - if (Opts.ObjCInferRelatedResultType) - Res.push_back("-fobjc-infer-related-result-type"); - if (Opts.AppleKext) Res.push_back("-fapple-kext"); @@ -1488,9 +1485,6 @@ static void ParseLangArgs(LangOptions &Opts, ArgList &Args, InputKind IK, else if (Args.hasArg(OPT_fobjc_gc)) Opts.setGCMode(LangOptions::HybridGC); - if (Args.hasArg(OPT_fobjc_infer_related_result_type)) - Opts.ObjCInferRelatedResultType = 1; - if (Args.hasArg(OPT_fapple_kext)) { if (!Opts.CPlusPlus) Diags.Report(diag::warn_c_kext); |