]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/compile/20001123-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20001123-1.c
diff --git a/gcc/testsuite/gcc.c-torture/compile/20001123-1.c b/gcc/testsuite/gcc.c-torture/compile/20001123-1.c
deleted file mode 100644 (file)
index 5953448..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-
-typedef __builtin_va_list __gnuc_va_list;
-typedef __gnuc_va_list va_list;
-
-struct X { int y; };
-
-void func(va_list va)
-{
-  char* a = __builtin_va_arg(va, char**)[0];
-  int b = __builtin_va_arg(va, struct X*)->y;
-}