diff options
| author | 2026-03-18 11:33:41 +0100 | |
|---|---|---|
| committer | 2026-03-18 11:33:41 +0100 | |
| commit | 1d9e19fb3bb941cdc28e9d4c3063d3e213fd8312 (patch) | |
| tree | e18eddb587f91455a439c0fd4f1bb3b3216ea2df /src/t_aarch64.h | |
| parent | 1fee6a61abdf2cf332fffbc50bf7adc1842feb40 (diff) | |
Refactor: use typedefs and CamelCase for aggregate types
Looks nicer
Diffstat (limited to 'src/t_aarch64.h')
| -rw-r--r-- | src/t_aarch64.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/t_aarch64.h b/src/t_aarch64.h index ad017c1..997a5fd 100644 --- a/src/t_aarch64.h +++ b/src/t_aarch64.h @@ -9,8 +9,8 @@ enum reg { }; bool aarch64_logimm(uint *enc, enum irclass, uvlong x); -void aarch64_isel(struct function *); -void aarch64_emit(struct function *); +void aarch64_isel(Function *); +void aarch64_emit(Function *); /* vim:set ts=3 sw=3 expandtab: */ |