mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
iflag: \Tabs -> \Space
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
71f71c0dbe
commit
a32e79c658
14
iflag.h
14
iflag.h
@ -145,16 +145,16 @@ static inline int iflag_cmp_cpu_level(const iflag_t *a, const iflag_t *b)
|
|||||||
|
|
||||||
static inline iflag_t _iflag_pfmask(const iflag_t *a)
|
static inline iflag_t _iflag_pfmask(const iflag_t *a)
|
||||||
{
|
{
|
||||||
iflag_t r = IFLAG_INIT;
|
iflag_t r = IFLAG_INIT;
|
||||||
|
|
||||||
if (iflag_test(a, IF_CYRIX))
|
if (iflag_test(a, IF_CYRIX))
|
||||||
iflag_set(&r, IF_CYRIX);
|
iflag_set(&r, IF_CYRIX);
|
||||||
if (iflag_test(a, IF_AMD))
|
if (iflag_test(a, IF_AMD))
|
||||||
iflag_set(&r, IF_AMD);
|
iflag_set(&r, IF_AMD);
|
||||||
|
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define iflag_pfmask(itemp) _iflag_pfmask(&insns_flags[(itemp)->iflag_idx])
|
#define iflag_pfmask(itemp) _iflag_pfmask(&insns_flags[(itemp)->iflag_idx])
|
||||||
|
|
||||||
#endif /* NASM_IFLAG_H */
|
#endif /* NASM_IFLAG_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user