aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.apple/Wfour-char-constants-2.c
diff options
context:
space:
mode:
authorno-author <no-author@gcc.gnu.org>2005-04-02 23:54:03 +0000
committerno-author <no-author@gcc.gnu.org>2005-04-02 23:54:03 +0000
commit6c91c53f4dc2998841f7390c01f3a2c29ee178d8 (patch)
tree62f732017306e033852b66b519f6e5d255a2274b /gcc/testsuite/gcc.apple/Wfour-char-constants-2.c
parent9e88bc8754ac91301313180a1f11bbf74ed1a9dc (diff)
This commit was manufactured by cvs2svn to create tagapple/gcc-5003
'apple-gcc-5003'. git-svn-id: https://gcc.gnu.org/svn/gcc/tags/apple-gcc-5003@97467 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.apple/Wfour-char-constants-2.c')
-rw-r--r--gcc/testsuite/gcc.apple/Wfour-char-constants-2.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.apple/Wfour-char-constants-2.c b/gcc/testsuite/gcc.apple/Wfour-char-constants-2.c
new file mode 100644
index 00000000000..14115ba6fea
--- /dev/null
+++ b/gcc/testsuite/gcc.apple/Wfour-char-constants-2.c
@@ -0,0 +1,12 @@
+/* APPLE LOCAL file -Wfour-char-constants */
+/* Explicitly enable the warning. */
+
+/* { dg-do compile } */
+/* { dg-options "-Wfour-char-constants" } */
+
+int glob1 = 'a';
+int glob2 = 'ab'; /* { dg-warning "multi-character character constant" } */
+int glob3 = 'abc'; /* { dg-warning "multi-character character constant" } */
+int glob4 = 'abcd'; /* { dg-warning "multi-character character constant" } */
+int glob5 = 'abcde'; /* { dg-warning "character constant too long" } */
+