aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Lipe <robertl@gcc.gnu.org>1998-05-28 22:15:42 +0000
committerRobert Lipe <robertl@gcc.gnu.org>1998-05-28 22:15:42 +0000
commit26decc86c68eabc535d25f1c6d3909ba26a38ebe (patch)
tree5a4db733f2b67a0d7d970550fd4f22cb7c444b5c
parentad729076948bd9e78db712bbf3dbfa0688e6a68a (diff)
downloadgcc-26decc86c68eabc535d25f1c6d3909ba26a38ebe.zip
gcc-26decc86c68eabc535d25f1c6d3909ba26a38ebe.tar.gz
gcc-26decc86c68eabc535d25f1c6d3909ba26a38ebe.tar.bz2
This test case should be removed.
This test case should be removed. No diagnoses of such "incorrect" asm statements need to be performed. Martin From-SVN: r20123
-rw-r--r--gcc/testsuite/g++.old-deja/g++.robertl/eb85.C12
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb85.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb85.C
deleted file mode 100644
index 3e55fb7..0000000
--- a/gcc/testsuite/g++.old-deja/g++.robertl/eb85.C
+++ /dev/null
@@ -1,12 +0,0 @@
-// This SHOULDn't compile, becuase 'foo' is never a valid asm.
-
-template <const unsigned c>
-void f() {
- asm("foo");
-}
-
-int
-main()
-{
- f<1>();
-}