blob: f96d19ccdb572e8fe18002da7402a4e35b4afbfe [file] [log] [blame]
Stephen Canone5086322010-07-01 15:52:42 +00001/*
2 * The LLVM Compiler Infrastructure
3 *
4 * This file is distributed under the University of Illinois Open Source
5 * License. See LICENSE.TXT for details.
6 */
7
8#define SINGLE_PRECISION
9#include "fp_lib.h"
10
11fp_t __negsf2(fp_t a) {
12 return fromRep(toRep(a) ^ signBit);
13}