1 // REQUIRES: powerpc-registered-target 2 3 // RUN: %clang -x c++ -target powerpc64le-unknown-linux-gnu -o - %s \ 4 // RUN: -emit-interface-stubs -emit-merged-ifs -S | \ 5 // RUN: FileCheck -check-prefix=CHECK-IFS %s 6 7 // CHECK-IFS: --- !experimental-ifs-v2 8 // CHECK-IFS: IfsVersion: 2.0 9 // CHECK-IFS: Triple: powerpc64le 10 // CHECK-IFS: Symbols: 11 // CHECK-IFS: - { Name: _Z8helloPPCv, Type: Func } 12 // CHECK-IFS: ... 13 14 int helloPPC(); 15