summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/addvdi3.c
diff options
context:
space:
mode:
Diffstat (limited to 'compiler-rt/lib/addvdi3.c')
-rw-r--r--compiler-rt/lib/addvdi3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/addvdi3.c b/compiler-rt/lib/addvdi3.c
index 8b885f53fe4..53ab1024bd6 100644
--- a/compiler-rt/lib/addvdi3.c
+++ b/compiler-rt/lib/addvdi3.c
@@ -26,12 +26,12 @@ __addvdi3(di_int a, di_int b)
if (b >= 0)
{
if (s < a)
- abort();
+ compilerrt_abort();
}
else
{
if (s >= a)
- abort();
+ compilerrt_abort();
}
return s;
}
OpenPOWER on IntegriCloud