We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eed869a commit 438e923Copy full SHA for 438e923
1 file changed
arch/parisc/lib/ucmpdi2.c
@@ -1,5 +1,6 @@
1
// SPDX-License-Identifier: GPL-2.0
2
#include <linux/module.h>
3
+#include <linux/libgcc.h>
4
5
union ull_union {
6
unsigned long long ull;
@@ -9,7 +10,7 @@ union ull_union {
9
10
} ui;
11
};
12
-int __ucmpdi2(unsigned long long a, unsigned long long b)
13
+word_type __ucmpdi2(unsigned long long a, unsigned long long b)
14
{
15
union ull_union au = {.ull = a};
16
union ull_union bu = {.ull = b};
0 commit comments