diff options
author | Kiran Chandramohan <kiran.chandramohan@arm.com> | 2025-07-24 21:54:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-24 21:54:26 +0100 |
commit | efe1aa8904ea3ad8b19ab2aa5660e27a08c7d694 (patch) | |
tree | 1d235588d796d1c332cb8898f1e79f2cb237b96d /flang/lib/Frontend/CompilerInvocation.cpp | |
parent | ed9a1027a482d18b3cf063e8bcc6e31a4c7dc024 (diff) | |
download | llvm-efe1aa8904ea3ad8b19ab2aa5660e27a08c7d694.zip llvm-efe1aa8904ea3ad8b19ab2aa5660e27a08c7d694.tar.gz llvm-efe1aa8904ea3ad8b19ab2aa5660e27a08c7d694.tar.bz2 |
Revert "[flang][flang-driver][mlir][OpenMP] atomic control support" (#150504)
Reverts llvm/llvm-project#143441
Reverting due to CI failure
https://lab.llvm.org/buildbot/#/builders/53/builds/18055.
Diffstat (limited to 'flang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | flang/lib/Frontend/CompilerInvocation.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/flang/lib/Frontend/CompilerInvocation.cpp b/flang/lib/Frontend/CompilerInvocation.cpp index 111c5aa4..f55d866 100644 --- a/flang/lib/Frontend/CompilerInvocation.cpp +++ b/flang/lib/Frontend/CompilerInvocation.cpp @@ -512,16 +512,6 @@ static void parseTargetArgs(TargetOptions &opts, llvm::opt::ArgList &args) { args.getLastArg(clang::driver::options::OPT_triple)) opts.triple = a->getValue(); - opts.atomicIgnoreDenormalMode = args.hasFlag( - clang::driver::options::OPT_fatomic_ignore_denormal_mode, - clang::driver::options::OPT_fno_atomic_ignore_denormal_mode, false); - opts.atomicFineGrainedMemory = args.hasFlag( - clang::driver::options::OPT_fatomic_fine_grained_memory, - clang::driver::options::OPT_fno_atomic_fine_grained_memory, false); - opts.atomicRemoteMemory = - args.hasFlag(clang::driver::options::OPT_fatomic_remote_memory, - clang::driver::options::OPT_fno_atomic_remote_memory, false); - if (const llvm::opt::Arg *a = args.getLastArg(clang::driver::options::OPT_target_cpu)) opts.cpu = a->getValue(); |