Changeset d22bf87
- Timestamp:
- Oct 24, 2023, 10:10:55 PM (14 months ago)
- Branches:
- master
- Children:
- 8941b6b
- Parents:
- a310ae9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
driver/as.cc
ra310ae9 rd22bf87 11 11 // Created On : Wed Aug 1 10:49:42 2018 12 12 // Last Modified By : Peter A. Buhr 13 // Last Modified On : Tue Oct 24 18:40:33202314 // Update Count : 15 813 // Last Modified On : Tue Oct 24 20:45:06 2023 14 // Update Count : 159 15 15 // 16 16 … … 45 45 char * dcursor; 46 46 if ( (dcursor = strstr( start, ".Ldebug_info0:" ) ) ) { // debug information ? 47 //fprintf( stderr, "found .Ldebug_info0:\n" );47 // fprintf( stderr, "found .Ldebug_info0:\n" ); 48 48 #if defined( __i386 ) || defined( __x86_64 ) 49 49 if ( char * cursor = strstr( dcursor, ".long\t.LASF" ) ) { // language code ? 50 //fprintf( stderr, ".long\t.LASF\n" );50 // fprintf( stderr, ".long\t.LASF\n" ); 51 51 #elif defined( __aarch64__ ) 52 52 if ( char * cursor = strstr( dcursor, ".4byte\t.LASF" ) ) { // language code ? 53 //fprintf( stderr, ".4byte\t.LASF\n" );53 // fprintf( stderr, ".4byte\t.LASF\n" ); 54 54 #else 55 55 #error unsupported architecture … … 63 63 if ( *(cursor - 2) == '0' && *(cursor - 1) == 'x' && 64 64 (*cursor == 'c' || *cursor == '1' || *cursor == '2') ) { // C99/C89/C 65 //fprintf( stderr, "language code C99/C89/C %c\n", *cursor );65 // fprintf( stderr, "language code C99/C89/C %c\n", *cursor ); 66 66 // Expand file by one byte to hold 2 character Cforall language code. 67 67 if ( ftruncate( fd, size + 1 ) ) { perror( "ftruncate" ); exit( EXIT_FAILURE ); }; 68 68 memmove( cursor + 2, cursor + 1, start + size - cursor - 1 ); // move remaining text 1 character right 69 69 } else if ( *(cursor - 3) == '0' && *(cursor - 2) == 'x' && *(cursor - 1) == '1' && *cursor == 'd' ) { // C11 70 //fprintf( stderr, "language code C11 %c\n", *cursor );70 // fprintf( stderr, "language code C11 %c\n", *cursor ); 71 71 } else { 72 72 for ( int i = 0; i < 6; i += 1 ) { // move N (magic) lines forward
Note: See TracChangeset
for help on using the changeset viewer.