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