blob: 4805d47c1601e4ccb4be9a04e0fb4ea854b5eeaf [file] [log] [blame]
Daniel Dunbar219df662008-09-08 23:44:31 +00001// RUN: clang --emit-llvm -o %t %s &&
2// RUN: grep -e "alias" %t
3// XFAIL
4
5static inline int foo () { return 0; }
6int bar () __attribute__ ((alias ("foo")));