brintos

brintos / llvm-project-archived public Read only

0
0
Text · 234 B · d763744 Raw
13 lines · c
1// PR: 60582// RUN: %clang_cc1 -debug-info-kind=limited -emit-llvm %s -o /dev/null3 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 13