From 9a40ff502f7ee68ffec7bb2197cf35b90ca052d3 Mon Sep 17 00:00:00 2001 From: Douglas Yung Date: Wed, 16 May 2018 00:27:43 +0000 Subject: Revert commits r332160, r332164, r332236. It was decided this is the wrong approach to fix this issue. llvm-svn: 332421 --- clang/lib/Frontend/CompilerInvocation.cpp | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'clang/lib/Frontend/CompilerInvocation.cpp') diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index b8e05b5..05e5196e3 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -2751,16 +2751,6 @@ static void ParseLangArgs(LangOptions &Opts, ArgList &Args, InputKind IK, << A->getAsString(Args) << A->getValue(); } } - // The PS4 requires version 6 of the clang ABI. - if (T.isPS4()) { - // Issue a warning if another version of the ABI was requested. - if (Args.getLastArg(OPT_fclang_abi_compat_EQ) && - Opts.getClangABICompat() != LangOptions::ClangABI::Ver6) { - Diags.Report(diag::warn_drv_ignored_clang_abi_version) - << 6; - } - Opts.setClangABICompat(LangOptions::ClangABI::Ver6); - } } static bool isStrictlyPreprocessorAction(frontend::ActionKind Action) { -- cgit v1.1