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.
9 lines
323 B
9 lines
323 B
// RUN: %clang_cc1 -triple x86_64-apple-darwin -fsyntax-only -verify %s
|
|
|
|
void g() {}
|
|
|
|
// It is important that the following string be in the error message. The gcc
|
|
// testsuite looks for it to decide if a target supports aliases.
|
|
|
|
void f() __attribute__((alias("g"))); //expected-error {{only weak aliases are supported}}
|