brintos

brintos / llvm-project-archived public Read only

0
0
Text · 327 B · c18eb8f Raw
7 lines · c
1// RUN: %clang_cc1 -triple powerpc-ibm-aix   -S -fcommon %s -verify -o -2// RUN: %clang_cc1 -triple powerpc64-ibm-aix -S -fcommon %s -verify -o -3int xxxxxx;4extern int yyyyyy __attribute__((__alias__("xxxxxx") )); //expected-error {{alias to a variable in a common section is not allowed}}5 6void *gggggg() { return &yyyyyy; }7