aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gcc.dg/20030218-1.c16
2 files changed, 20 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 4c7b8b3..d38552d 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2003-02-18 Aldy Hernandez <aldyh@redhat.com>
+
+ * gcc.dg/20030218-1.c: New.
+
2003-02-18 Richard Henderson <rth@redhat.com>
* gcc.dg/attr-invalid.c: Allow __used__ on static data.
diff --git a/gcc/testsuite/gcc.dg/20030218-1.c b/gcc/testsuite/gcc.dg/20030218-1.c
new file mode 100644
index 0000000..d584461
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/20030218-1.c
@@ -0,0 +1,16 @@
+/* { dg-do compile { target powerpc-*-eabi* } } */
+/* { dg-options "-mcpu=8540" } */
+
+/* Test vectors that can interconvert without a cast. */
+
+int vint __attribute__((mode(V2SI)));
+int vshort __attribute__((mode(V4HI)));
+int vfloat __attribute__((mode(V2SF)));
+
+int
+main (void)
+{
+ vint = vfloat;
+ vshort = vint;
+ vfloat = vshort; /* { dg-error "incompatible types in assignment" } */
+}