diff options
Diffstat (limited to 'contrib/gcc/defaults.h')
-rw-r--r-- | contrib/gcc/defaults.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/gcc/defaults.h b/contrib/gcc/defaults.h index fff782f21bad..d60354795254 100644 --- a/contrib/gcc/defaults.h +++ b/contrib/gcc/defaults.h @@ -139,6 +139,12 @@ do { fputs (integer_asm_op (POINTER_SIZE / UNITS_PER_WORD, TRUE), FILE); \ #endif #endif +/* Decide whether to defer emitting the assembler output for an equate + of two values. The default is to not defer output. */ +#ifndef TARGET_DEFERRED_OUTPUT_DEFS +#define TARGET_DEFERRED_OUTPUT_DEFS(DECL,TARGET) false +#endif + /* This is how to output the definition of a user-level label named NAME, such as the label on a static function or variable NAME. */ |