aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20040309-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20040309-1.c')
-rw-r--r--gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20040309-1.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20040309-1.c b/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20040309-1.c
new file mode 100644
index 000000000..49fa79560
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20040309-1.c
@@ -0,0 +1,24 @@
+extern void abort ();
+
+int foo(unsigned short x)
+{
+ unsigned short y;
+ y = x > 32767 ? x - 32768 : 0;
+ return y;
+}
+
+int main()
+{
+ if (foo (0) != 0)
+ abort ();
+ if (foo (32767) != 0)
+ abort ();
+ if (foo (32768) != 0)
+ abort ();
+ if (foo (32769) != 1)
+ abort ();
+ if (foo (65535) != 32767)
+ abort ();
+ return 0;
+}
+