1 // REQUIRES: x86-registered-target
2 // RUN: %clang_cc1 -triple x86_64-windows-msvc -o - %s -emit-interface-stubs | FileCheck -check-prefix=CHECK-CC1 %s
3 // RUN: %clang -target x86_64-windows-msvc -o - %s -emit-interface-stubs -emit-merged-ifs -S | FileCheck -check-prefix=CHECK-IFS %s
4 // note: -S is added here to prevent clang from invoking link.exe
7 // CHECK-CC1-NEXT: ?helloWindowsMsvc@@YAHXZ
9 // CHECK-IFS: --- !ifs-v1
10 // CHECK-IFS: IfsVersion: 3.0
12 // CHECK-IFS: Symbols:
13 // CHECK-IFS: - { Name: '?helloWindowsMsvc@@YAHXZ', Type: Func }
16 int helloWindowsMsvc();