]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20001017-2.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20001017-2.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20001017-2.c b/gcc/testsuite/gcc.c-torture/execute/20001017-2.c
deleted file mode 100644 (file)
index 3263bb9..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-void
-fn_4parms (unsigned char a, long *b, long *c, unsigned int *d)
-{
-  if (*b != 1 || *c != 2 || *d != 3)
-    abort ();
-}
-
-int
-main ()
-{
-  unsigned char a = 0;
-  unsigned long b = 1, c = 2;
-  unsigned int d = 3;
-
-  fn_4parms (a, &b, &c, &d);
-  return 0;
-}