aboutsummaryrefslogtreecommitdiff
path: root/test/Preprocessor/overflow.c
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2009-05-16 21:24:10 +0000
committerEli Friedman <eli.friedman@gmail.com>2009-05-16 21:24:10 +0000
commit3265a42e5a87269fce5d7a7cdd7bafe62c7becfe (patch)
tree149c7abbb30802f2133411018df3023e44829361 /test/Preprocessor/overflow.c
parent2928c2107f2e0007f35fe1c224aab63535f1403d (diff)
PR3942: Don't warn on unsigned overflow in preprocessor expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71960 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Preprocessor/overflow.c')
-rw-r--r--test/Preprocessor/overflow.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/Preprocessor/overflow.c b/test/Preprocessor/overflow.c
new file mode 100644
index 0000000000..297a35e658
--- /dev/null
+++ b/test/Preprocessor/overflow.c
@@ -0,0 +1,25 @@
+// RUN: clang-cc -Eonly %s -verify -triple i686-pc-linux-gnu
+
+// Multiply signed overflow
+#if 0x7FFFFFFFFFFFFFFF*2 // expected-warning {{overflow}}
+#endif
+
+// Multiply unsigned overflow
+#if 0xFFFFFFFFFFFFFFFF*2
+#endif
+
+// Add signed overflow
+#if 0x7FFFFFFFFFFFFFFF+1 // expected-warning {{overflow}}
+#endif
+
+// Add unsigned overflow
+#if 0xFFFFFFFFFFFFFFFF+1
+#endif
+
+// Subtract signed overflow
+#if 0x7FFFFFFFFFFFFFFF- -1 // expected-warning {{overflow}}
+#endif
+
+// Subtract unsigned overflow
+#if 0xFFFFFFFFFFFFFFFF- -1 // expected-warning {{converted from negative value}}
+#endif