Inline builtins have a very special behavior compared to other functions, it's better if we keep them restricted to a minimal set of functions. Add a linkage check which prevents considering ODR definitions as inline builtins. Fix #62958 Differential Revision: https://reviews.llvm.org/D148723
17 lines
488 B
C
17 lines
488 B
C
// RUN: %clang_cc1 -triple x86_64-windows -S -emit-llvm -disable-llvm-passes %s -o - | FileCheck %s
|
|
// Inline builtin are not supported for odr linkage
|
|
// CHECK-NOT: .inline
|
|
|
|
double __cdecl frexp( double _X, int* _Y);
|
|
inline __attribute__((always_inline)) long double __cdecl frexpl( long double __x, int *__exp ) {
|
|
return (long double) frexp((double)__x, __exp );
|
|
}
|
|
|
|
long double pain(void)
|
|
{
|
|
long double f = 123.45;
|
|
int i;
|
|
long double f2 = frexpl(f, &i);
|
|
return f2;
|
|
}
|