blob: 4aec7b264765c3cc2792249badae119288c5322c [file] [log] [blame]
Devang Patelf9d5c5c2010-01-18 19:52:14 +00001// PR: 6058
2// RUN: %llvmgcc -g -S %s -o - | llc -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