mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
458 B
C
13 lines
458 B
C
/* DISABLED: win32 linux32
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test23875.c(12): Error: __attribute__((vector_size(10))) must be an integer positive power of 2 and be <= 32,768
|
|
fail_compilation/test23875.c(13): Error: value for vector_size expected, not `x`
|
|
---
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=23875
|
|
// https://issues.dlang.org/show_bug.cgi?id=23880
|
|
|
|
int __attribute__((vector_size(10))) neptune();
|
|
int __attribute__((vector_size(x))) saturn();
|