Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1  %s -emit-llvm -o - | not grep builtin
      2 double sqrt(double x);
      3 void zsqrtxxx(float num) {
      4    num = sqrt(num);
      5 }
      6