You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// RUN: %clang_cc1 -triple x86_64-unknown-linux -default-function-attr foo=bar -emit-llvm %s -o - | FileCheck %s
|
|
|
|
// CHECK: define void @foo() #[[X:[0-9]+]]
|
|
void foo() {}
|
|
|
|
// CHECK: attributes #[[X]] = {{.*}} "foo"="bar"
|