Daniel Dunbar | 9ca5670 | 2009-02-03 21:54:49 +0000 | [diff] [blame] | 1 | // RUN: clang -triple i386-unknown-unknown --emit-llvm -o %t %s && |
Daniel Dunbar | 566a650 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 2 | // RUN: grep -e "alias" %t |
3 | // XFAIL | ||||
4 | |||||
5 | static inline int foo () { return 0; } | ||||
6 | int bar () __attribute__ ((alias ("foo"))); |