OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [objc.dg/] [encode-1.m] - Blame information for rev 338

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 309 jeremybenn
/* Test if the Objective-C @encode machinery distinguishes between
2
   'BOOL *' (which should be encoded as a pointer to BOOL) and 'char *' (which
3
   should be encoded as '*').  This is somewhat tricky wrt the NeXT runtime,
4
   where we have 'typedef char BOOL'.  */
5
/* Contributed by Ziemowit Laski <zlaski@apple.com>.  */
6
/* { dg-do run } */
7
/* { dg-options "-fnext-runtime" } */
8
#include <string.h>           
9
#include <stdlib.h>
10
#include <objc/objc.h>
11
 
12
int main(void) {
13
  const char *BOOL_ptr = @encode(BOOL *);
14
  const char *BOOL_ = @encode(BOOL);
15
  const char *char_ptr = @encode(char *);
16
 
17
  if(*BOOL_ptr != '^' || strcmp(BOOL_ptr + 1, BOOL_))
18
    abort();
19
 
20
  if(strcmp(char_ptr, "*"))
21
    abort();
22
 
23
  return 0;
24
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.