diff options
Diffstat (limited to 'compiler-rt/lib/subvti3.c')
-rw-r--r-- | compiler-rt/lib/subvti3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/subvti3.c b/compiler-rt/lib/subvti3.c index 24464104408..55b7925a14b 100644 --- a/compiler-rt/lib/subvti3.c +++ b/compiler-rt/lib/subvti3.c @@ -28,12 +28,12 @@ __subvti3(ti_int a, ti_int b) if (b >= 0) { if (s > a) - abort(); + compilerrt_abort(); } else { if (s <= a) - abort(); + compilerrt_abort(); } return s; } |