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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [arm/] [va_list.c] - Rev 691

Compare with Previous | Blame | View Log

/* { dg-do run } */
/* { dg-require-effective-target arm_eabi } */
 
#include <stdarg.h>
#include <stddef.h>
 
/* AAPCS \S 7.1.4 requires that va_list match the structure shown
   here */
typedef struct my_va_list 
{
  void *ap;
} my_va_list;
 
int 
main () {
  if (sizeof (va_list) != sizeof (my_va_list))
    return 1;
  /* This check confirms both that "va_list" has a member named "__ap"
     and that it is located at the correct position.  */
  if (offsetof (va_list, __ap) 
      != offsetof (my_va_list, ap))
    return 2;
 
  return 0;
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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