
Avoiding structor alias is no longer needed because AIX now has an alias implementation here: https://reviews.llvm.org/D83252. This reverts commit b116ded57da3530e661f871f4191c59cd9e091cd. Reviewed By: jasonliu Differential Revision: https://reviews.llvm.org/D102724
8 lines
299 B
C
8 lines
299 B
C
// Check that we pass -mconstructor-aliases when compiling for AIX.
|
|
|
|
// RUN: %clang -### -target powerpc-ibm-aix7.1.0.0 %s -c -o %t.o 2>&1 \
|
|
// RUN: | FileCheck %s
|
|
// RUN: %clang -### -target powerpc64-ibm-aix7.1.0.0 %s -c -o %t.o 2>&1 \
|
|
// RUN: | FileCheck %s
|
|
// CHECK: "-mconstructor-aliases"
|