Changeset 63bde81 for driver/cc1.cc


Ignore:
Timestamp:
Jul 19, 2021, 4:03:19 PM (3 years ago)
Author:
caparsons <caparson@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
f9b68d6
Parents:
12a1013 (diff), fcaa1e4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • driver/cc1.cc

    r12a1013 r63bde81  
    1010// Created On       : Fri Aug 26 14:23:51 2005
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Jun  1 23:07:21 2021
    13 // Update Count     : 415
     12// Last Modified On : Wed Jul 14 15:42:08 2021
     13// Update Count     : 418
    1414//
    1515
     
    372372                        if ( prefix( arg, "-fdiagnostics-color=" ) ) {
    373373                                string choice = arg.substr(20);
    374                                      if(choice == "always") color_arg = Color_Always;
    375                                 else if(choice == "never" ) color_arg = Color_Never;
    376                                 else if(choice == "auto" ) color_arg = Color_Auto;
     374                                if ( choice == "always" ) color_arg = Color_Always;
     375                                else if ( choice == "never" ) color_arg = Color_Never;
     376                                else if ( choice == "auto" ) color_arg = Color_Auto;
    377377                        } else if ( arg == "-fno-diagnostics-color" ) {
    378378                                color_arg = Color_Auto;
Note: See TracChangeset for help on using the changeset viewer.