OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [obj-c++.dg/] [encode-8.mm] - Diff between revs 308 and 384

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 308 Rev 384
/* Test if the Objective-C @encode machinery distinguishes between
/* Test if the Objective-C @encode machinery distinguishes between
   'BOOL *' (which should be encoded as '^c') and 'char *' (which
   'BOOL *' (which should be encoded as '^c') and 'char *' (which
   should be encoded as '*').  */
   should be encoded as '*').  */
/* Contributed by Ziemowit Laski .  */
/* Contributed by Ziemowit Laski .  */
/* { dg-do run { target *-*-darwin* } } */
/* { dg-do run { target *-*-darwin* } } */
/* { dg-skip-if "" { *-*-* } { "-fgnu-runtime" } { "" } } */
/* { dg-skip-if "" { *-*-* } { "-fgnu-runtime" } { "" } } */
#include 
#include 
#include 
#include 
#include 
#include 
int main(void) {
int main(void) {
  const char *BOOL_ptr = @encode(BOOL *);
  const char *BOOL_ptr = @encode(BOOL *);
  const char *char_ptr = @encode(char *);
  const char *char_ptr = @encode(char *);
  if(strcmp(BOOL_ptr, "^c"))
  if(strcmp(BOOL_ptr, "^c"))
    abort();
    abort();
  if(strcmp(char_ptr, "*"))
  if(strcmp(char_ptr, "*"))
    abort();
    abort();
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

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