PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr33696.c
blob97bbfe8bf433834c9861e0f0829a7beaed66430d
1 /* { dg-do compile } */
3 /* This used to ICE with type-checking enabled. */
5 typedef unsigned char uint8_t;
6 typedef unsigned int uint_least32_t;
7 extern int foo (long int __off);
8 void write (uint_least32_t chunk_len)
10 uint8_t tmp[4];
11 foo (-(long)chunk_len - sizeof(tmp));