]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.robertl/eb83.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb83.C
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb83.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb83.C
deleted file mode 100644 (file)
index 0f42cf4..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// Skip if not native
-// Special g++ Options: -fprofile-arcs -ftest-coverage
-void
-test_swap(int& x, int& y) throw()
-{
-  int tmp = x;
-  x = y;
-  y = tmp;
-}
-
-main()
-{
-  int i = 5;
-  int j = 7;
-  test_swap(i, j);
-}