]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/objc/execute/encode-1.m
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / objc / execute / encode-1.m
diff --git a/gcc/testsuite/objc/execute/encode-1.m b/gcc/testsuite/objc/execute/encode-1.m
deleted file mode 100644 (file)
index 3f232c9..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/* Contributed by Nicola Pero - Thu Mar  8 16:27:46 CET 2001 */
-#include <objc/objc.h>
-#include <objc/objc-api.h>
-#include <objc/Object.h>
-
-/* Test very simple @encode */
-
-int main (void)
-{
-  if (strcmp ("i", @encode (int)))
-    {
-      abort ();
-    }
-
-  if (strcmp ("@", @encode (id)))
-    {
-      abort ();
-    }
-
-  if (strcmp ("@", @encode (Object *)))
-    {
-      abort ();
-    }
-
-  if (strcmp (":", @encode (SEL)))
-    {
-      abort ();
-    }
-
-  return 0;
-}