xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2010-01-18-Inlined-Debug.c (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1 // PR: 6058
2 // RUN: %clang_cc1 -g -emit-llvm %s -o /dev/null
3 
4 static inline int foo(double) __attribute__ ((always_inline));
5 static inline int foo(double __x) { return __x; }
6 
7 void bar(double x) {
8   foo(x);
9 }
10 
11 
12 
13