Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / mallign.c
blob9a18a00c3b08c03838fc2c21d86d692250a364e5
1 /* Check that malloc's alignment honors what we trust it
2 minimally should. */
4 /* { dg-do run } */
5 /* { dg-options "-fno-builtin-malloc" } */
7 #include <stdlib.h>
8 typedef int word __attribute__((mode(word)));
10 int main()
12 if ((sizeof(word)>1) && ((__UINTPTR_TYPE__)malloc (1) & (sizeof(word)-1)))
13 abort ();
14 return 0;