Changeset e832485 for driver/as.cc


Ignore:
Timestamp:
Oct 24, 2023, 5:20:58 PM (9 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
a310ae9
Parents:
dd7c2ce0
Message:

comment out debug prints

File:
1 edited

Legend:

Unmodified
Added
Removed
  • driver/as.cc

    rdd7c2ce0 re832485  
    1111// Created On       : Wed Aug  1 10:49:42 2018
    1212// Last Modified By : Peter A. Buhr
    13 // Last Modified On : Tue Oct 24 16:53:18 2023
    14 // Update Count     : 155
     13// Last Modified On : Tue Oct 24 17:20:07 2023
     14// Update Count     : 157
    1515//
    1616
     
    6363                                if ( *(cursor - 2) == '0' && *(cursor - 1) == 'x' &&
    6464                                         (*cursor == 'c' || *cursor == '1' || *cursor == '2') ) { // C99/C89/C
    65                                         fprintf( stderr, "language code %c\n", *cursor );
     65//                                      fprintf( stderr, "language code C99/C89/C %c\n", *cursor );
    6666                                        // Expand file by one byte to hold 2 character Cforall language code.
    6767                                        if ( ftruncate( fd, size + 1 ) ) { perror( "ftruncate" ); exit( EXIT_FAILURE ); };
    6868                                        memmove( cursor + 2, cursor + 1, start + size - cursor - 1 ); // move remaining text 1 character right
    6969                                } else if ( *(cursor - 3) == '0' && *(cursor - 2) == 'x' && *(cursor - 1) == '1' && *cursor == 'd' ) { // C11
     70//                                      fprintf( stderr, "language code C11 %c\n", *cursor );
    7071                                } else {
    7172                                        for ( int i = 0; i < 6; i += 1 ) {      // move N (magic) lines forward
Note: See TracChangeset for help on using the changeset viewer.