Commit bcaac529 authored by Richard Torenvliet's avatar Richard Torenvliet

added test file wiki.c(liveness analysis)

parent c2e864a5
#include <stdio.h>
int main(void)
{
int a = 3, b = 5, d = 5, x = 100;
int c = 0;
if (a > b)
{
int c = a + b;
d = 2;
}
c = 4;
return b * d + c;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment