aboutsummaryrefslogtreecommitdiff
path: root/sim/ppc/options.c
diff options
context:
space:
mode:
authorMichael Meissner <gnu@the-meissners.org>1995-11-15 23:01:47 +0000
committerMichael Meissner <gnu@the-meissners.org>1995-11-15 23:01:47 +0000
commitacb06d304048cb269d358d3ab764e6c73c2f6679 (patch)
tree5973ea59c71048b572628ba8740db02d68d1cf13 /sim/ppc/options.c
parent80948f392bb653cb29514db15c176d218c2f4c2d (diff)
downloadgdb-acb06d304048cb269d358d3ab764e6c73c2f6679.zip
gdb-acb06d304048cb269d358d3ab764e6c73c2f6679.tar.gz
gdb-acb06d304048cb269d358d3ab764e6c73c2f6679.tar.bz2
Add option to make options inline
Diffstat (limited to 'sim/ppc/options.c')
-rw-r--r--sim/ppc/options.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sim/ppc/options.c b/sim/ppc/options.c
index a48a3b7..7240b58 100644
--- a/sim/ppc/options.c
+++ b/sim/ppc/options.c
@@ -85,7 +85,7 @@ options_mon (int mon)
return "UNKNOWN";
}
-void
+INLINE_OPTIONS void
print_options (void)
{
#if defined(_GNUC_) && defined(__VERSION__)
@@ -96,6 +96,7 @@ print_options (void)
printf_filtered ("WITH_HOST_BYTE_ORDER = %s\n", options_byte_order (WITH_HOST_BYTE_ORDER));
printf_filtered ("WITH_TARGET_BYTE_ORDER = %s\n", options_byte_order (WITH_TARGET_BYTE_ORDER));
+ printf_filtered ("WITH_XOR_ENDIAN = %d\n", WITH_XOR_ENDIAN);
printf_filtered ("WITH_BSWAP = %d\n", WITH_BSWAP);
printf_filtered ("WITH_SMP = %d\n", WITH_SMP);
printf_filtered ("WITH_HOST_WORD_BITSIZE = %d\n", WITH_HOST_WORD_BITSIZE);
@@ -129,6 +130,7 @@ print_options (void)
printf_filtered ("SEMANTICS_INLINE = %d\n", SEMANTICS_INLINE);
printf_filtered ("IDECODE_INLINE = %d\n", IDECODE_INLINE);
printf_filtered ("FUNCTION_UNIT_INLINE = %d\n", FUNCTION_UNIT_INLINE);
+ printf_filtered ("OPTIONS_INLINE = %d\n", FUNCTION_UNIT_INLINE);
#ifdef OPCODE_RULES
printf_filtered ("OPCODE rules = %s\n", OPCODE_RULES);