[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGen / 2004-02-20-Builtins.c
blob13f970127d606ad9fc0429f2975f8b98a7a51d3e
1 // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2 double sqrt(double x);
4 // CHECK-LABEL: @zsqrtxxx
5 // CHECK-NOT: builtin
6 void zsqrtxxx(float num) {
7 num = sqrt(num);