@@ -367,18 +367,18 @@ void ClassicFlang::ConstructJob(Compilation &C, const JobAction &JA,
367367 // Handle -fdefault-real-8 (and its alias, -r8) and -fno-default-real-8
368368 if (Arg *A = Args.getLastArg (options::OPT_r8,
369369 options::OPT_fdefault_real_8,
370- options::OPT_default_real_8_fno )) {
370+ options::OPT_fno_default_real_8 )) {
371371 const char * fl;
372372 // For -f version add -x flag, for -fno add -y
373- if (A->getOption ().matches (options::OPT_default_real_8_fno )) {
373+ if (A->getOption ().matches (options::OPT_fno_default_real_8 )) {
374374 fl = " -y" ;
375375 } else {
376376 fl = " -x" ;
377377 }
378378
379379 for (Arg *A : Args.filtered (options::OPT_r8,
380380 options::OPT_fdefault_real_8,
381- options::OPT_default_real_8_fno )) {
381+ options::OPT_fno_default_real_8 )) {
382382 A->claim ();
383383 }
384384
@@ -393,18 +393,18 @@ void ClassicFlang::ConstructJob(Compilation &C, const JobAction &JA,
393393 // Process and claim -i8/-fdefault-integer-8/-fno-default-integer-8 argument
394394 if (Arg *A = Args.getLastArg (options::OPT_i8,
395395 options::OPT_fdefault_integer_8,
396- options::OPT_default_integer_8_fno )) {
396+ options::OPT_fno_default_integer_8 )) {
397397 const char * fl;
398398
399- if (A->getOption ().matches (options::OPT_default_integer_8_fno )) {
399+ if (A->getOption ().matches (options::OPT_fno_default_integer_8 )) {
400400 fl = " -y" ;
401401 } else {
402402 fl = " -x" ;
403403 }
404404
405405 for (Arg *A : Args.filtered (options::OPT_i8,
406406 options::OPT_fdefault_integer_8,
407- options::OPT_default_integer_8_fno )) {
407+ options::OPT_fno_default_integer_8 )) {
408408 A->claim ();
409409 }
410410
@@ -731,14 +731,14 @@ void ClassicFlang::ConstructJob(Compilation &C, const JobAction &JA,
731731 default :
732732 llvm_unreachable (" missed a case" );
733733 case options::OPT_ffixed_form:
734- case options::OPT_free_form_off :
734+ case options::OPT_fno_free_form :
735735 case options::OPT_Mfixed:
736736 case options::OPT_Mfree_off:
737737 case options::OPT_Mfreeform_off:
738738 UpperCmdArgs.push_back (" -nofreeform" );
739739 break ;
740740 case options::OPT_ffree_form:
741- case options::OPT_fixed_form_off :
741+ case options::OPT_fno_fixed_form :
742742 case options::OPT_Mfree_on:
743743 case options::OPT_Mfreeform_on:
744744 UpperCmdArgs.push_back (" -freeform" );
0 commit comments