1 | // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s |
---|---|
2 | double sqrt(double x); |
3 | |
4 | // CHECK-LABEL: @zsqrtxxx |
5 | // CHECK-NOT: builtin |
6 | void zsqrtxxx(float num) { |
7 | num = sqrt(num); |
8 | } |
9 |
1 | // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s |
---|---|
2 | double sqrt(double x); |
3 | |
4 | // CHECK-LABEL: @zsqrtxxx |
5 | // CHECK-NOT: builtin |
6 | void zsqrtxxx(float num) { |
7 | num = sqrt(num); |
8 | } |
9 |