blob: bdc6fc5267e768d6cfd6884cd16b64607738d786 [file] [log] [blame]
Eric Christopher85e51562011-07-26 22:17:02 +00001// PR: 6058
Rafael Espindolaff7cea82013-09-04 04:12:25 +00002// RUN: %clang_cc1 -g -emit-llvm %s -o /dev/null
Eric Christopher85e51562011-07-26 22:17:02 +00003
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