blob: 7407fc1f7d588da4229e26e7c15b89af78ab5210 [file] [log] [blame]
Daniel Dunbar0d7b0912009-02-03 21:54:49 +00001// RUN: clang -triple i386-unknown-unknown --emit-llvm -o %t %s &&
Daniel Dunbar219df662008-09-08 23:44:31 +00002// RUN: grep -e "alias" %t
3// XFAIL
4
5static inline int foo () { return 0; }
6int bar () __attribute__ ((alias ("foo")));