Skip to content
Snippets Groups Projects
Commit 5d7aba37 authored by Thibault Martin's avatar Thibault Martin
Browse files

Change fatals into aborts in parser

parent 629d6327
No related branches found
No related tags found
No related merge requests found
......@@ -236,15 +236,15 @@ let init_lexicon _ =
prevents duplicate error messages due to parsing errors. *)
("_Alignas",
fun loc ->
Kernel.fatal ~source:(fst loc)
Kernel.abort ~source:(fst loc)
"_Alignas is currently unsupported by Frama-C.");
("_Alignof",
fun loc ->
Kernel.fatal ~source:(fst loc)
Kernel.abort ~source:(fst loc)
"_Alignof is currently unsupported by Frama-C.");
("_Complex",
fun loc ->
Kernel.fatal ~source:(fst loc)
Kernel.abort ~source:(fst loc)
"_Complex is currently unsupported by Frama-C.");
("_Generic",
fun loc ->
......@@ -252,7 +252,7 @@ let init_lexicon _ =
GENERIC loc);
("_Imaginary",
fun loc ->
Kernel.fatal ~source:(fst loc)
Kernel.abort ~source:(fst loc)
"_Imaginary is currently unsupported by Frama-C.");
]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment