Files
clang-p2996/clang/test/CodeGen/2010-01-18-Inlined-Debug.c
Eric Christopher 85e5156598 Migrate most of the rest of test/FrontendC from llvm and migrate
most of them to FileCheck.

llvm-svn: 136159
2011-07-26 22:17:02 +00:00

13 lines
217 B
C

// PR: 6058
// RUN: %clang_cc1 -g -emit-llvm %s -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);
}