bolt/deps/llvm-18.1.8/clang/test/CodeGen/2004-02-20-Builtins.c
2025-02-14 19:21:04 +01:00

8 lines
175 B
C

// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
double sqrt(double x);
// CHECK-LABEL: @zsqrtxxx
// CHECK-NOT: builtin
void zsqrtxxx(float num) {
num = sqrt(num);
}