Fix indentation and run_test type
tcc_state.run_test is used as counter, not flag, so int is appropriate. Also fix indentation garbled by last patch.
This commit is contained in:
parent
4873f6fada
commit
1dc92f8ff8
1 changed files with 4 additions and 4 deletions
2
tcc.h
2
tcc.h
|
@ -717,7 +717,7 @@ struct TCCState {
|
||||||
#ifdef TCC_TARGET_ARM
|
#ifdef TCC_TARGET_ARM
|
||||||
enum float_abi float_abi; /* float ABI of the generated code*/
|
enum float_abi float_abi; /* float ABI of the generated code*/
|
||||||
#endif
|
#endif
|
||||||
unsigned char run_test; /* nth test to run with -dt -run */
|
int run_test; /* nth test to run with -dt -run */
|
||||||
|
|
||||||
addr_t text_addr; /* address of text section */
|
addr_t text_addr; /* address of text section */
|
||||||
unsigned char has_text_addr;
|
unsigned char has_text_addr;
|
||||||
|
|
Loading…
Reference in a new issue