summaryrefslogtreecommitdiff
path: root/lib/builtins/negdi2.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/builtins/negdi2.c')
-rw-r--r--lib/builtins/negdi2.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/lib/builtins/negdi2.c b/lib/builtins/negdi2.c
index 6ffe664df..f6bc3ee56 100644
--- a/lib/builtins/negdi2.c
+++ b/lib/builtins/negdi2.c
@@ -15,11 +15,9 @@
/* Returns: -a */
-COMPILER_RT_ABI di_int
-__negdi2(di_int a)
-{
- /* Note: this routine is here for API compatibility; any sane compiler
- * should expand it inline.
- */
- return -a;
+COMPILER_RT_ABI di_int __negdi2(di_int a) {
+ /* Note: this routine is here for API compatibility; any sane compiler
+ * should expand it inline.
+ */
+ return -a;
}