]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/inline16.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / inline16.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/inline16.C b/gcc/testsuite/g++.old-deja/g++.other/inline16.C
deleted file mode 100644 (file)
index 3404f43..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-// Build don't link:
-// Origin: Jakub Jelinek <jakub@redhat.com>
-// Special g++ Options: -O1
-
-struct foo {
-  bool x;
-  inline void a (unsigned char y);
-  inline void b (void);
-  virtual ~foo ();
-};
-
-foo::~foo ()
-{
-}
-
-void foo::a (unsigned char y)
-{
-    x = ((y & 2) != 0);
-}
-
-void foo::b (void)
-{
-    a(0x07);
-}