Skip to content

Commit cb39363

Browse files
author
Daniel Kroening
committed
added support for _int64 keyword
1 parent 78b7119 commit cb39363

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/ansi-c/scanner.l

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -554,6 +554,11 @@ void ansi_c_scanner_init()
554554
else
555555
return make_identifier();
556556
}
557+
"_int64" { if(PARSER.mode==configt::ansi_ct::flavourt::VISUAL_STUDIO)
558+
{ loc(); return TOK_INT64; }
559+
else
560+
return make_identifier();
561+
}
557562
"__ptr32" { return MSC_Keyword(TOK_PTR32); }
558563
"__ptr64" { return MSC_Keyword(TOK_PTR64); }
559564

0 commit comments

Comments
 (0)