diff options
Diffstat (limited to 'compiler-rt/lib/builtins/negti2.c')
-rw-r--r-- | compiler-rt/lib/builtins/negti2.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/compiler-rt/lib/builtins/negti2.c b/compiler-rt/lib/builtins/negti2.c index b39aa32257f..789699a10b3 100644 --- a/compiler-rt/lib/builtins/negti2.c +++ b/compiler-rt/lib/builtins/negti2.c @@ -17,13 +17,11 @@ /* Returns: -a */ -COMPILER_RT_ABI ti_int -__negti2(ti_int a) -{ - /* Note: this routine is here for API compatibility; any sane compiler - * should expand it inline. - */ - return -a; +COMPILER_RT_ABI ti_int __negti2(ti_int a) { + /* Note: this routine is here for API compatibility; any sane compiler + * should expand it inline. + */ + return -a; } #endif /* CRT_HAS_128BIT */ |