mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 20:06:05 +00:00

The path to one of my source trees contains 'builtin' as a substring, so this test failed. Fix it with FileCheck. llvm-svn: 309460
9 lines
175 B
C
9 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);
|
|
}
|