12 lines · c
1// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s2double sqrt(double x);3 4// CHECK-LABEL: @zsqrtxxx5// CHECK-NOT: builtin6// Don't search into metadata definitions. !llvm.ident can contain the7// substring "builtin" if it's in the source tree path.8// CHECK-LABEL: !llvm.ident9void zsqrtxxx(float num) {10 num = sqrt(num);11}12