[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / attr-error.c
bloba1b63ab9fa9e57db51090bcc3dabcbb406d7fdbd
1 // RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2 __attribute__((error("oh no"))) void foo(void);
4 void bar(void) {
5 foo();
8 // CHECK: call void @foo(), !srcloc [[SRCLOC:![0-9]+]]
9 // CHECK: declare{{.*}} void @foo() [[ATTR:#[0-9]+]]
10 // CHECK: attributes [[ATTR]] = {{{.*}}"dontcall-error"="oh no"
11 // CHECK: [[SRCLOC]] = !{i32 {{[0-9]+}}}