mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 16:28:16 +00:00
5e22c7e180
g_list_insert_sorted_merged() is rather large to be an inline function; move it to its own file. range_merge() and ranges_can_merge() can likewise move, as they are only used internally. Also, it becomes obvious that the condition within range_merge() is already satisfied by its caller, and that the return value is not used. The diffstat is misleading, because of the copyright boilerplate. Backports commit fec0fc0a13ac7f1a1130433a6740cd850c3db34a from qemu
11 lines
382 B
Makefile
11 lines
382 B
Makefile
util-obj-y = cutils.o qemu-timer-common.o
|
|
util-obj-$(CONFIG_WIN32) += oslib-win32.o qemu-thread-win32.o
|
|
util-obj-$(CONFIG_POSIX) += oslib-posix.o qemu-thread-posix.o
|
|
util-obj-$(CONFIG_POSIX) += mmap-alloc.o
|
|
util-obj-y += module.o
|
|
util-obj-y += bitmap.o bitops.o
|
|
util-obj-y += error.o
|
|
util-obj-y += crc32c.o
|
|
util-obj-y += host-utils.o
|
|
util-obj-y += getauxval.o
|
|
util-obj-y += range.o
|