diff options
| author | Urs Janssen <urs@hq.tin.org> | 2013-02-17 00:48:51 +0100 |
|---|---|---|
| committer | Urs Janssen <urs@hq.tin.org> | 2013-02-17 00:48:51 +0100 |
| commit | 0bdbd49eac6ced7fbf6b5d2f5a13d7e9f3df54db (patch) | |
| tree | b3acd59ac51d9d8e426b6546fd6840e381c0982e /c67-gen.c | |
| parent | d5e22108a0dc48899e44a158f91d5b3215eb7fe6 (diff) | |
| download | tinycc-0bdbd49eac6ced7fbf6b5d2f5a13d7e9f3df54db.tar.gz tinycc-0bdbd49eac6ced7fbf6b5d2f5a13d7e9f3df54db.tar.bz2 | |
add version number to manpage
avoid c++/c99 style comments in preprocessor directives
avoid leadings whitespaces in preprocessor directives
mention implemented variable length arrays in documentation
fixed ambiguous option in texi2html call (Austin English)
Diffstat (limited to 'c67-gen.c')
| -rw-r--r-- | c67-gen.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -20,7 +20,7 @@ #ifdef TARGET_DEFS_ONLY -//#define ASSEMBLY_LISTING_C67 +/* #define ASSEMBLY_LISTING_C67 */ /* number of available registers */ #define NB_REGS 24 @@ -93,11 +93,11 @@ enum { #define REG_FRET TREG_C67_A4 /* float return register */ /* defined if function parameters must be evaluated in reverse order */ -//#define INVERT_FUNC_PARAMS +/* #define INVERT_FUNC_PARAMS */ /* defined if structures are passed as pointers. Otherwise structures are directly pushed on stack. */ -//#define FUNC_STRUCT_PARAM_AS_PTR +/* #define FUNC_STRUCT_PARAM_AS_PTR */ /* pointer size, in bytes */ #define PTR_SIZE 4 @@ -253,7 +253,7 @@ void gsym(int t) #define C67_B3 107 #define C67_FP 108 #define C67_B2 109 -#define C67_CREG_ZERO -1 // Special code for no condition reg test +#define C67_CREG_ZERO -1 /* Special code for no condition reg test */ int ConvertRegToRegClass(int r) |
