diff options
| author | 2023-07-09 11:02:23 +0200 | |
|---|---|---|
| committer | 2023-07-09 11:02:23 +0200 | |
| commit | cc5bee5519e26b075d0d0dc28527a05fd9b8c987 (patch) | |
| tree | 1e0810265b54b22fd33ce598b1d869f3a394033f /test/test3.c | |
| parent | 5c0732174f4071f1214da6d7eae3df1ca6e34d06 (diff) | |
regalloc fixes and rpo
Diffstat (limited to 'test/test3.c')
| -rw-r--r-- | test/test3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test3.c b/test/test3.c index 74f4c00..a5d165f 100644 --- a/test/test3.c +++ b/test/test3.c @@ -24,7 +24,7 @@ struct p divsh(int a) { } struct bitset { unsigned long long u; }; -static inline void +void bscopy(struct bitset dst[/*siz*/], const struct bitset src[/*siz*/], unsigned siz) { while (siz--) dst++->u = src++->u; |