diff options
author | Vitaly Buka <vitalybuka@google.com> | 2025-09-15 19:30:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-16 02:30:18 +0000 |
commit | cedceeb8002c112b33ff0974f04082849e6e202d (patch) | |
tree | 93738c3ba501a81432ea5c8ed1c0906fa98ea73f /flang/lib/Frontend/CompilerInvocation.cpp | |
parent | 71c128232b994d1470f5cc2bae7049d68b5b5635 (diff) | |
download | llvm-cedceeb8002c112b33ff0974f04082849e6e202d.zip llvm-cedceeb8002c112b33ff0974f04082849e6e202d.tar.gz llvm-cedceeb8002c112b33ff0974f04082849e6e202d.tar.bz2 |
Revert "Introduce -fexperimental-loop-fuse to clang and flang (#142686)" (#158764)
This reverts commit 895cda70a95529fd22aac05eee7c34f7624996af.
And fix attempt: 06f671e57a574ba1c5127038eff8e8773273790e.
Performance regressions and broken sanitizers, see #142686.
Diffstat (limited to 'flang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | flang/lib/Frontend/CompilerInvocation.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/flang/lib/Frontend/CompilerInvocation.cpp b/flang/lib/Frontend/CompilerInvocation.cpp index a00e568..c7dbfc4 100644 --- a/flang/lib/Frontend/CompilerInvocation.cpp +++ b/flang/lib/Frontend/CompilerInvocation.cpp @@ -280,9 +280,6 @@ static void parseCodeGenArgs(Fortran::frontend::CodeGenOptions &opts, if (args.getLastArg(clang::driver::options::OPT_floop_interchange)) opts.InterchangeLoops = 1; - if (args.getLastArg(clang::driver::options::OPT_fexperimental_loop_fusion)) - opts.FuseLoops = 1; - if (args.getLastArg(clang::driver::options::OPT_vectorize_loops)) opts.VectorizeLoop = 1; |