]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/optimize4.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / optimize4.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/optimize4.C b/gcc/testsuite/g++.old-deja/g++.other/optimize4.C
deleted file mode 100644 (file)
index 7082e2c..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-// Build don't link:
-// 
-// Copyright (C) 2001 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 24 Jul 2001 <nathan@codesourcery.com>
-
-// Bug 3543. We forgot to resolve an OFFSET_REF
-
-
-struct Writeable {
-  bool blocking_mode;
-};
-
-
-struct Pipe : Writeable {
-  void ewrite();
-
-  void set_write_blocking ()
-  {
-    if (Writeable::blocking_mode);
-  }
-};
-
-void Pipe::ewrite()
-{
-  set_write_blocking();
-}
-
-void ewrite(Pipe &p)
-{
-  p.set_write_blocking();
-}