Skip to content
Snippets Groups Projects
Commit db3d4f4a authored by Wilke Pierre's avatar Wilke Pierre
Browse files

fix errors in nfa_to_dot by catching errors in e_regexp + other stuff

parent a243ea35
No related branches found
No related tags found
No related merge requests found
{"output": "", "error": null, "retval": 128}
\ No newline at end of file
{"output": "", "error": null, "retval": 128}
\ No newline at end of file
main(){
i = 10;
a = 2;
res = 0;
while(i > 0){
x = a + a;
y = 1 + x;
if(i > 4){
res = res + x;
} else {
if (i < 2){
res = res - y;
} else {
res = res + x - y;
}
}
i = i - 1;
}
return res;
}
{"output": "", "error": null, "retval": 16}
\ No newline at end of file
{"output": "", "error": null, "retval": 16}
\ No newline at end of file
......@@ -21,6 +21,7 @@ parser.add_argument("-p", "--passes",
nargs='+',
default=["e-run",
"cfg-run",
"cfg-run-after-loop",
"cfg-run-after-cp",
"cfg-run-after-dae",
"cfg-run-after-ne",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment