mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-28 07:49:01 -04:00

After this commit there is an addrspace(1) before the attribute #. Since these tests are only checking the value of the attribute add a {{.*}} to make the test resilient to future output changes. llvm-svn: 340522
7 lines
212 B
C
7 lines
212 B
C
// RUN: %clang_cc1 -triple avr-unknown-unknown -emit-llvm %s -o - | FileCheck %s
|
|
|
|
// CHECK: define void @foo(){{.*}}#0
|
|
__attribute__((interrupt)) void foo(void) { }
|
|
|
|
// CHECK: attributes #0 = {{{.*interrupt.*}}}
|