Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 1 | //===-- negti2.c - Implement __negti2 -------------------------------------===// |
| 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 | // |
| 10 | // This file implements __negti2 for the compiler_rt library. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #if __x86_64 |
| 15 | |
| 16 | #include "int_lib.h" |
| 17 | |
| 18 | // Returns: -a |
| 19 | |
| 20 | ti_int |
| 21 | __negti2(ti_int a) |
| 22 | { |
Eli Friedman | d02ea67 | 2009-07-03 02:26:38 +0000 | [diff] [blame^] | 23 | // Note: this routine is here for API compatibility; any sane compiler |
| 24 | // should expand it inline. |
| 25 | return -a; |
Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 26 | } |
| 27 | |
| 28 | #endif |