summaryrefslogtreecommitdiff
path: root/core/nds32/__udivdi3.S
blob: 624faff2c5d7ca569ee6f5bbc9b86b572c9c3e48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Copyright 2018 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 *
 * __udivdi3.S: unsigned 64 bit division
 */

	.text
	.align	2
	.globl	__udivdi3
	.type	__udivdi3, @function
__udivdi3:
	movi	$r4, 0			! ignore remainder
	b	__udivmoddi4
	.size	__udivdi3, .-__udivdi3