bolt/deps/llvm-18.1.8/clang/test/CodeGen/aix-common.c

7 lines
327 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -triple powerpc-ibm-aix -S -fcommon %s -verify -o -
// RUN: %clang_cc1 -triple powerpc64-ibm-aix -S -fcommon %s -verify -o -
int xxxxxx;
extern int yyyyyy __attribute__((__alias__("xxxxxx") )); //expected-error {{alias to a variable in a common section is not allowed}}
void *gggggg() { return &yyyyyy; }