[flang] Don't needlessly instantiate distinct UNSIGNED cases for FINDLOC (#120471)
[llvm-project.git] / clang / test / CodeGen / aix-common.c
blobc18eb8f30623f5d594cc5867035422dd135358a6
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 -
3 int xxxxxx;
4 extern int yyyyyy __attribute__((__alias__("xxxxxx") )); //expected-error {{alias to a variable in a common section is not allowed}}
6 void *gggggg() { return &yyyyyy; }