@@ -366,18 +366,18 @@ void ClassicFlang::ConstructJob(Compilation &C, const JobAction &JA,
366366 // Handle -fdefault-real-8 (and its alias, -r8) and -fno-default-real-8
367367 if (Arg *A = Args.getLastArg (options::OPT_r8,
368368 options::OPT_fdefault_real_8,
369- options::OPT_default_real_8_fno )) {
369+ options::OPT_fno_default_real_8 )) {
370370 const char * fl;
371371 // For -f version add -x flag, for -fno add -y
372- if (A->getOption ().matches (options::OPT_default_real_8_fno )) {
372+ if (A->getOption ().matches (options::OPT_fno_default_real_8 )) {
373373 fl = " -y" ;
374374 } else {
375375 fl = " -x" ;
376376 }
377377
378378 for (Arg *A : Args.filtered (options::OPT_r8,
379379 options::OPT_fdefault_real_8,
380- options::OPT_default_real_8_fno )) {
380+ options::OPT_fno_default_real_8 )) {
381381 A->claim ();
382382 }
383383
@@ -392,18 +392,18 @@ void ClassicFlang::ConstructJob(Compilation &C, const JobAction &JA,
392392 // Process and claim -i8/-fdefault-integer-8/-fno-default-integer-8 argument
393393 if (Arg *A = Args.getLastArg (options::OPT_i8,
394394 options::OPT_fdefault_integer_8,
395- options::OPT_default_integer_8_fno )) {
395+ options::OPT_fno_default_integer_8 )) {
396396 const char * fl;
397397
398- if (A->getOption ().matches (options::OPT_default_integer_8_fno )) {
398+ if (A->getOption ().matches (options::OPT_fno_default_integer_8 )) {
399399 fl = " -y" ;
400400 } else {
401401 fl = " -x" ;
402402 }
403403
404404 for (Arg *A : Args.filtered (options::OPT_i8,
405405 options::OPT_fdefault_integer_8,
406- options::OPT_default_integer_8_fno )) {
406+ options::OPT_fno_default_integer_8 )) {
407407 A->claim ();
408408 }
409409
@@ -730,14 +730,14 @@ void ClassicFlang::ConstructJob(Compilation &C, const JobAction &JA,
730730 default :
731731 llvm_unreachable (" missed a case" );
732732 case options::OPT_ffixed_form:
733- case options::OPT_free_form_off :
733+ case options::OPT_fno_free_form :
734734 case options::OPT_Mfixed:
735735 case options::OPT_Mfree_off:
736736 case options::OPT_Mfreeform_off:
737737 UpperCmdArgs.push_back (" -nofreeform" );
738738 break ;
739739 case options::OPT_ffree_form:
740- case options::OPT_fixed_form_off :
740+ case options::OPT_fno_fixed_form :
741741 case options::OPT_Mfree_on:
742742 case options::OPT_Mfreeform_on:
743743 UpperCmdArgs.push_back (" -freeform" );
0 commit comments