mirror of
https://github.com/mirror/tinycc.git
synced 2024-12-28 04:00:06 +08:00
Use more conventional punctuation for sequential assignments
This commit is contained in:
parent
abd1532ad4
commit
8deb05c3e2
6
tcc.h
6
tcc.h
@ -1508,13 +1508,13 @@ static inline uint16_t read16le(unsigned char *p) {
|
|||||||
return p[0] | (uint16_t)p[1] << 8;
|
return p[0] | (uint16_t)p[1] << 8;
|
||||||
}
|
}
|
||||||
static inline void write16le(unsigned char *p, uint16_t x) {
|
static inline void write16le(unsigned char *p, uint16_t x) {
|
||||||
p[0] = x & 255, p[1] = x >> 8 & 255;
|
p[0] = x & 255; p[1] = x >> 8 & 255;
|
||||||
}
|
}
|
||||||
static inline uint32_t read32le(unsigned char *p) {
|
static inline uint32_t read32le(unsigned char *p) {
|
||||||
return read16le(p) | (uint32_t)read16le(p + 2) << 16;
|
return read16le(p) | (uint32_t)read16le(p + 2) << 16;
|
||||||
}
|
}
|
||||||
static inline void write32le(unsigned char *p, uint32_t x) {
|
static inline void write32le(unsigned char *p, uint32_t x) {
|
||||||
write16le(p, x), write16le(p + 2, x >> 16);
|
write16le(p, x); write16le(p + 2, x >> 16);
|
||||||
}
|
}
|
||||||
static inline void add32le(unsigned char *p, int32_t x) {
|
static inline void add32le(unsigned char *p, int32_t x) {
|
||||||
write32le(p, read32le(p) + x);
|
write32le(p, read32le(p) + x);
|
||||||
@ -1523,7 +1523,7 @@ static inline uint64_t read64le(unsigned char *p) {
|
|||||||
return read32le(p) | (uint64_t)read32le(p + 4) << 32;
|
return read32le(p) | (uint64_t)read32le(p + 4) << 32;
|
||||||
}
|
}
|
||||||
static inline void write64le(unsigned char *p, uint64_t x) {
|
static inline void write64le(unsigned char *p, uint64_t x) {
|
||||||
write32le(p, x), write32le(p + 4, x >> 32);
|
write32le(p, x); write32le(p + 4, x >> 32);
|
||||||
}
|
}
|
||||||
static inline void add64le(unsigned char *p, int64_t x) {
|
static inline void add64le(unsigned char *p, int64_t x) {
|
||||||
write64le(p, read64le(p) + x);
|
write64le(p, read64le(p) + x);
|
||||||
|
Loading…
Reference in New Issue
Block a user