aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/pr37186.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/pr37186.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/pr37186.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/pr37186.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/pr37186.c
deleted file mode 100644
index bf37757f8..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/pr37186.c
+++ /dev/null
@@ -1,9 +0,0 @@
-/* PR 37186 */
-/* { dg-do compile } */
-/* { dg-options "-Wall -Werror -Wno-error=pointer-sign" } */
-
-int foo(signed char *); /* { dg-message "note: expected 'signed char \\*' but argument is of type 'unsigned char \\*'" } */
-int bar(unsigned char *p)
-{
- return foo(p); /* { dg-warning "pointer targets in passing argument 1 of 'foo' differ in signedness" } */
-}