mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-25 18:51:02 +00:00
arm: Fix typo in AARCH64_CPU_GET_CLASS definition
There's a typo in the type name of AARCH64_CPU_GET_CLASS. This was never detected because the macro is not used by any code. Backports 37e3d65043229bb20bd07af74dc0866e12071415
This commit is contained in:
parent
ff74ede2fd
commit
cefb1666c0
|
@ -63,7 +63,7 @@ typedef struct ARMCPU ARMCPU;
|
||||||
#define AARCH64_CPU_CLASS(klass) \
|
#define AARCH64_CPU_CLASS(klass) \
|
||||||
OBJECT_CLASS_CHECK(AArch64CPUClass, (klass), TYPE_AARCH64_CPU)
|
OBJECT_CLASS_CHECK(AArch64CPUClass, (klass), TYPE_AARCH64_CPU)
|
||||||
#define AARCH64_CPU_GET_CLASS(obj) \
|
#define AARCH64_CPU_GET_CLASS(obj) \
|
||||||
OBJECT_GET_CLASS(AArch64CPUClass, (obj), TYPE_AArch64_CPU)
|
OBJECT_GET_CLASS(AArch64CPUClass, (obj), TYPE_AARCH64_CPU)
|
||||||
|
|
||||||
typedef struct AArch64CPUClass {
|
typedef struct AArch64CPUClass {
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
|
|
Loading…
Reference in a new issue