1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 %s -emit-llvm -o - | not grep builtin 2*f4a2713aSLionel Sambuc double sqrt(double x); zsqrtxxx(float num)3*f4a2713aSLionel Sambuc void zsqrtxxx(float num) { 4*f4a2713aSLionel Sambuc num = sqrt(num); 5*f4a2713aSLionel Sambuc } 6