]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/avr/attributes/signal.c
Vendor import of clang trunk r351319 (just before the release_80 branch
[FreeBSD/FreeBSD.git] / test / CodeGen / avr / attributes / signal.c
1 // RUN: %clang_cc1 -triple avr-unknown-unknown -emit-llvm %s -o - | FileCheck %s
2
3 // CHECK: define void @foo(){{.*}}#0
4 __attribute__((signal)) void foo(void) { }
5
6 // CHECK: attributes #0 = {{{.*signal.*}}}