brintos

brintos / llvm-project-archived public Read only

0
0
Text · 229 B · fcc1689 Raw
8 lines · c
1// RUN: %clang_cc1 -triple x86_64-windows-msvc -fms-extensions -emit-llvm -o - %s | FileCheck %s2 3__declspec(dllimport) void f(void);4void g(void) { f(); } // use it5 6// CHECK: define dso_local dllexport void @f7void f(void) { }8