Displaying 1 result from an estimated 1 matches for "4a28550a".
2017 Jul 11
2
intrinsics
great, thank you!
Still, I have tried fast option:
clang -S -O3 -mllvm -ffast-math -emit-llvm sqrt.c -o sqrt.s
and also with specifying this option in opt (not in clang) - it stays the
same sqrt.
#include <stdlib.h>
#include <stdio.h>
int main() {
int a;
scanf("%d", &a);
double b = sqrt(a);
int c = (b > 10) ? 1 : 0;
return