xref: /llvm-project/clang/test/CodeGen/PowerPC/xcoff-comdat.cpp (revision f563bd74cb9a4f0d2d3eb49d35536b648361ec53)
1 // RUN: %clang_cc1 -triple powerpc-ibm-aix -emit-llvm -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -triple powerpc64-ibm-aix -emit-llvm -o - %s | FileCheck %s
3 
4 class a {
d()5   virtual void d() {}
6   virtual void e();
7 };
e()8 void a::e() {}
9 
10 // CHECK-NOT: = comdat
11