blob: edc2a6c82f28dc13b9bcf67ad2e8bfefac47ee44 [file] [log] [blame]
/*
* The LLVM Compiler Infrastructure
*
* This file is distributed under the University of Illinois Open Source
* License. See LICENSE.TXT for details.
*/
#define DOUBLE_PRECISION
#include "fp_lib.h"
fp_t __negsf2(fp_t a) {
return fromRep(toRep(a) ^ signBit);
}