[ASan/Win tests] Bring back -GS- as SEH tests fail otherwise
[blocksruntime.git] / lib / builtins / trunctfsf2.c
blobde96c1decf6329013dd6167b4237e352989b73a2
1 //===-- lib/trunctfsf2.c - quad -> single conversion --------------*- C -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
10 #define QUAD_PRECISION
11 #include "fp_lib.h"
13 #if defined(CRT_HAS_128BIT) && defined(CRT_LDBL_128BIT)
14 #define SRC_QUAD
15 #define DST_SINGLE
16 #include "fp_trunc_impl.inc"
18 COMPILER_RT_ABI float __trunctfsf2(long double a) {
19 return __truncXfYf2__(a);
22 #endif