We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7823d9c commit cbfcc5cCopy full SHA for cbfcc5c
regression/ansi-c/VS_extensions1/main.c
@@ -54,6 +54,8 @@ __int16 i16;
54
55
__int32 i32;
56
57
+_int64 i64_with_just_one_underscore;
58
+
59
__int64 i64;
60
61
__int8 i8;
src/ansi-c/scanner.l
@@ -552,6 +552,11 @@ void ansi_c_scanner_init()
552
else
553
return make_identifier();
554
}
555
+"_int64" { if(PARSER.mode==configt::ansi_ct::flavourt::VISUAL_STUDIO)
556
+ { loc(); return TOK_INT64; }
557
+ else
558
+ return make_identifier();
559
+ }
560
"__ptr32" { return MSC_Keyword(TOK_PTR32); }
561
"__ptr64" { return MSC_Keyword(TOK_PTR64); }
562
0 commit comments