2 /* Well, collateral damage from a proposed patch fixing 23190. We'd emit
3 debug info for multilib_exclusions_raw without emitting the variable
4 itself, leading to link errors. This reduced form is filed as PR 23777,
5 for not eliminating things soon enough. */
8 static const char *const multilib_exclusions_raw
[] = { 0 };
10 void __attribute__((noinline
)) f(char *const *p
)
12 __asm__ ("" : : "g"(p
) : "memory");
17 const char *const *q
= multilib_exclusions_raw
;
24 int main() { return 0; }