blob: 4aec7b264765c3cc2792249badae119288c5322c [file] [log] [blame]
// PR: 6058
// RUN: %llvmgcc -g -S %s -o - | llc -O0 -o /dev/null
static inline int foo(double) __attribute__ ((always_inline));
static inline int foo(double __x) { return __x; }
void bar(double x) {
foo(x);
}