[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / clang / test / AST / pragma-multiple-attributes-declspec.cpp
blob60722b3c886abbece84641fb93b1b4cbda242d40
1 // RUN: %clang_cc1 -triple i386-pc-win32 -fms-extensions -fms-compatibility -ast-dump %s | FileCheck %s
3 #pragma clang attribute push (__declspec(dllexport, noinline), apply_to=function)
4 void func1();
5 #pragma clang attribute pop
6 // CHECK: FunctionDecl {{.*}} func1
7 // CHECK-NEXT: DLLExportAttr {{.*}}
8 // CHECK-NEXT: NoInlineAttr {{.*}}