blob: ced05e88505b1ea184bdaf3d7f4e6c8c3d999b9d [file] [log] [blame]
Daniel Dunbarfd089992009-06-26 16:47:03 +00001//===-- negvti2.c - Implement __negvti2 -----------------------------------===//
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 __negvti2 for the compiler_rt library.
11//
12//===----------------------------------------------------------------------===//
13
14#if __x86_64
15
16#include "int_lib.h"
17#include <stdlib.h>
18
19// Returns: -a
20
21// Effects: aborts if -a overflows
22
23ti_int
24__negvti2(ti_int a)
25{
26 const ti_int MIN = (ti_int)1 << ((int)(sizeof(ti_int) * CHAR_BIT)-1);
27 if (a == MIN)
28 abort();
29 return -a;
30}
31
32#endif