blob: 6d78ef1a34873e34793a39b839691c4a5f94c110 [file] [log] [blame]
Nick Kledzike80e9782009-09-12 01:23:48 +00001//===-- negsf2vfp.S - Implement negsf2vfp ---------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Daniel Dunbar19336a22009-10-27 17:49:50 +000010#include "../assembly.h"
Nick Kledzike80e9782009-09-12 01:23:48 +000011
12//
13// extern float __negsf2vfp(float a);
14//
15// Returns the negation of a single precision floating point numbers using the
16// Darwin calling convention where single arguments are passsed like 32-bit ints
17//
Daniel Dunbarb4b1e8c2009-10-27 17:50:21 +000018DEFINE_COMPILERRT_FUNCTION(__negsf2vfp)
Nick Kledzike80e9782009-09-12 01:23:48 +000019 eor r0, r0, #-2147483648 // flip sign bit on float in r0
20 bx lr