Skip to content

Commit

Permalink
Revert "[Driver] Enable to use C++20 standalne by -fcxx-modules"
Browse files Browse the repository at this point in the history
This reverts commit 99eca83.

Since it would cause clang-tools-extra fail.
  • Loading branch information
ChuanqiXu9 committed May 30, 2022
1 parent 99eca83 commit 42c3c70
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 25 deletions.
2 changes: 1 addition & 1 deletion clang/include/clang/Driver/Options.td
Expand Up @@ -1410,7 +1410,7 @@ defm async_exceptions: BoolFOption<"async-exceptions",
PosFlag<SetTrue, [CC1Option], "Enable EH Asynchronous exceptions">, NegFlag<SetFalse>>;
defm cxx_modules : BoolFOption<"cxx-modules",
LangOpts<"CPlusPlusModules">, Default<cpp20.KeyPath>,
NegFlag<SetFalse, [CC1Option], "Disable">, PosFlag<SetTrue, [CC1Option], "Enable">,
NegFlag<SetFalse, [CC1Option], "Disable">, PosFlag<SetTrue, [], "Enable">,
BothFlags<[NoXarchOption], " modules for C++">>,
ShouldParseIf<cplusplus.KeyPath>;
def fdebug_pass_arguments : Flag<["-"], "fdebug-pass-arguments">, Group<f_Group>;
Expand Down
6 changes: 0 additions & 6 deletions clang/lib/Driver/ToolChains/Clang.cpp
Expand Up @@ -3627,12 +3627,6 @@ static void RenderModulesOptions(Compilation &C, const Driver &D,
HaveModules = true;
}

if (Args.hasFlag(options::OPT_fcxx_modules, options::OPT_fno_cxx_modules,
false)) {
CmdArgs.push_back("-fcxx-modules");
HaveModules = true;
}

// -fmodule-maps enables implicit reading of module map files. By default,
// this is enabled if we are using Clang's flavor of precompiled modules.
if (Args.hasFlag(options::OPT_fimplicit_module_maps,
Expand Down
11 changes: 0 additions & 11 deletions clang/test/Driver/modules.cpp
Expand Up @@ -73,14 +73,3 @@ import "foo.h";
// CHECK-HEADER-UNIT-USE: BAR;
FOO;
#endif

// Check the independent use of -fcxx-modules
//
// RUN: %clang++ -fcxx-modules -std=c++17 -### %s 2>&1 | FileCheck %s --check-prefix=CHECK-CXX17-MODULES
// CHECK-CXX17-MODULES: "-fcxx-modules"
// RUN: %clang++ -fcxx-modules -std=c++14 -### %s 2>&1 | FileCheck %s --check-prefix=CHECK-CXX14-MODULES
// CHECK-CXX14-MODULES: "-fcxx-modules"
// RUN: %clang++ -fcxx-modules -std=c++11 -### %s 2>&1 | FileCheck %s --check-prefix=CHECK-CXX11-MODULES
// CHECK-CXX11-MODULES: "-fcxx-modules"
// RUN: %clang++ -fcxx-modules -std=c++03 -### %s 2>&1 | FileCheck %s --check-prefix=CHECK-CXX03-MODULES
// CHECK-CXX03-MODULES: "-fcxx-modules"
7 changes: 0 additions & 7 deletions clang/test/Modules/cxx-modules.cppm

This file was deleted.

0 comments on commit 42c3c70

Please sign in to comment.