[Github] Label lldb-dap PRs (#125139)
[llvm-project.git] / clang / test / CodeGen / 2004-02-20-Builtins.c
blob4febe2fd30e1dd95178703cbc73cf26464ac6f14
1 // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2 double sqrt(double x);
4 // CHECK-LABEL: @zsqrtxxx
5 // CHECK-NOT: builtin
6 // Don't search into metadata definitions. !llvm.ident can contain the
7 // substring "builtin" if it's in the source tree path.
8 // CHECK-LABEL: !llvm.ident
9 void zsqrtxxx(float num) {
10 num = sqrt(num);