Skip to content

Commit bfc8431

Browse files
committed
Resolve compiler issues after rebasing
1 parent fbb705f commit bfc8431

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flang/lib/Frontend/CompilerInvocation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1429,9 +1429,9 @@ static bool parseFloatingPointArgs(CompilerInvocation &invoc,
14291429
opts.setFPContractMode(Fortran::common::LangOptions::FPM_Fast);
14301430
}
14311431

1432-
if (args.hasArg(clang::driver::options::OPT_ffast_real_mod))
1432+
if (args.hasArg(clang::options::OPT_ffast_real_mod))
14331433
opts.FastRealMod = true;
1434-
if (args.hasArg(clang::driver::options::OPT_fno_fast_real_mod))
1434+
if (args.hasArg(clang::options::OPT_fno_fast_real_mod))
14351435
opts.FastRealMod = false;
14361436

14371437
return true;

0 commit comments

Comments
 (0)