From 8391b13848fc9dea3548cc1d78965792ad600324 Mon Sep 17 00:00:00 2001 From: Peter Wu Date: Fri, 9 Dec 2011 10:31:19 +0000 Subject: Add some tests --- tests/mask.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/mask.c (limited to 'tests/mask.c') diff --git a/tests/mask.c b/tests/mask.c new file mode 100644 index 0000000..d26546f --- /dev/null +++ b/tests/mask.c @@ -0,0 +1,6 @@ +int a = -1;//11111...11 +int main() { + a &= ~3;// 111..00 + e:goto e; + return 0; +} -- cgit v1.2.1