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