1*f4a2713aSLionel Sambuc // PR: 6058 2*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -g -emit-llvm %s -o /dev/null 3*f4a2713aSLionel Sambuc 4*f4a2713aSLionel Sambuc static inline int foo(double) __attribute__ ((always_inline)); foo(double __x)5*f4a2713aSLionel Sambucstatic inline int foo(double __x) { return __x; } 6*f4a2713aSLionel Sambuc bar(double x)7*f4a2713aSLionel Sambucvoid bar(double x) { 8*f4a2713aSLionel Sambuc foo(x); 9*f4a2713aSLionel Sambuc } 10*f4a2713aSLionel Sambuc 11*f4a2713aSLionel Sambuc 12*f4a2713aSLionel Sambuc 13