summaryrefslogtreecommitdiff
path: root/test/FrontendC/2010-01-18-Inlined-Debug.c
blob: 4aec7b264765c3cc2792249badae119288c5322c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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);
}