summaryrefslogtreecommitdiff
path: root/test/CodeGen/rdr-6095112-alias-references-inline.c
blob: 7407fc1f7d588da4229e26e7c15b89af78ab5210 (plain)
1
2
3
4
5
6
// RUN: clang -triple i386-unknown-unknown --emit-llvm -o %t %s &&
// RUN: grep -e "alias" %t
// XFAIL

static inline int foo () { return 0; }
int bar () __attribute__ ((alias ("foo")));