brintos

brintos / llvm-project-archived public Read only

0
0
Text · 162 B · 79a347a Raw
6 lines · cpp
1float try_builtin_roundf(float x) { return __builtin_roundf(x); }2 3double try_builtin_round(double x) { return __builtin_round(x); }4 5extern "C" void _start() {}6