mirror of https://github.com/xemu-project/xemu.git
13 lines
332 B
C++
13 lines
332 B
C++
/*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Atomic store insert into 128-bit, LoongArch version.
|
|
*/
|
|
|
|
#ifndef LOONGARCH_STORE_INSERT_AL16_H
|
|
#define LOONGARCH_STORE_INSERT_AL16_H
|
|
|
|
void store_atom_insert_al16(Int128 *ps, Int128 val, Int128 msk)
|
|
QEMU_ERROR("unsupported atomic");
|
|
|
|
#endif /* LOONGARCH_STORE_INSERT_AL16_H */
|