blob: cf00be7752cf9db9bc4b843bc9f168fb8a6331cd [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// PR: 6058
2// RUN: %clang_cc1 -g -emit-llvm %s -O0 -o /dev/null
3
4static inline int foo(double) __attribute__ ((always_inline));
5static inline int foo(double __x) { return __x; }
6
7void bar(double x) {
8 foo(x);
9}
10
11
12