1 // SPDX-License-Identifier: GPL-2.0
4 word_type __ucmpdi2(DWtype a, DWtype b)
6 const DWunion au = {.ll = a};
7 const DWunion bu = {.ll = b};
9 if ((UWtype) au.s.high < (UWtype) bu.s.high)
11 else if ((UWtype) au.s.high > (UWtype) bu.s.high)
13 if ((UWtype) au.s.low < (UWtype) bu.s.low)
15 else if ((UWtype) au.s.low > (UWtype) bu.s.low)