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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [obj-c++.dg/] [encode-8.mm] - Diff between revs 149 and 154

Only display areas with differences | Details | Blame | View Log

Rev 149 Rev 154
/* 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-options "-lobjc" } */
/* { dg-options "-lobjc" } */
/* { dg-do run } */
/* { dg-do run } */
#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.