From d703ae1ad5e1fcdc63e07b2a50a3e8576a11e61e Mon Sep 17 00:00:00 2001 From: Léo Gourdin Date: Wed, 9 Jun 2021 23:54:07 +0200 Subject: push afadl test example --- test/gourdinl/postpass_exp.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test/gourdinl/postpass_exp.c (limited to 'test/gourdinl/postpass_exp.c') diff --git a/test/gourdinl/postpass_exp.c b/test/gourdinl/postpass_exp.c new file mode 100644 index 00000000..522ac2a6 --- /dev/null +++ b/test/gourdinl/postpass_exp.c @@ -0,0 +1,5 @@ +int main(int x, int y) { + int z = x << 32; + y = y - z; + return x + y; +} -- cgit