[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / PR3589-freestanding-libcalls.c
blobd691d8f25e11413c34e5b0ddf696d692734ce35f
1 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm %s -o - | grep 'declare i32 @printf' | count 1
2 // RUN: %clang_cc1 -triple i386-unknown-unknown -O2 -emit-llvm %s -o - | grep 'declare noundef i32 @puts' | count 1
3 // RUN: %clang_cc1 -triple i386-unknown-unknown -ffreestanding -O2 -emit-llvm %s -o - | not grep 'declare noundef i32 @puts'
5 int printf(const char *, ...);
7 void f0(void) {
8 printf("hello\n");