diff options
author | Michael Meissner <gnu@the-meissners.org> | 1995-11-15 23:01:47 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1995-11-15 23:01:47 +0000 |
commit | acb06d304048cb269d358d3ab764e6c73c2f6679 (patch) | |
tree | 5973ea59c71048b572628ba8740db02d68d1cf13 /sim/ppc/inline.h | |
parent | 80948f392bb653cb29514db15c176d218c2f4c2d (diff) | |
download | gdb-acb06d304048cb269d358d3ab764e6c73c2f6679.zip gdb-acb06d304048cb269d358d3ab764e6c73c2f6679.tar.gz gdb-acb06d304048cb269d358d3ab764e6c73c2f6679.tar.bz2 |
Add option to make options inline
Diffstat (limited to 'sim/ppc/inline.h')
-rw-r--r-- | sim/ppc/inline.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sim/ppc/inline.h b/sim/ppc/inline.h index 0c191f5..c6112f3 100644 --- a/sim/ppc/inline.h +++ b/sim/ppc/inline.h @@ -69,6 +69,7 @@ #define INLINE_MODEL static #endif #define STATIC_MODEL static +#define EXTERN_MODEL static #endif #if BITS_INLINE @@ -162,5 +163,13 @@ #endif #endif +#if OPTIONS_INLINE +#if OPTIONS_INLINE == 2 +#define INLINE_OPTIONS static INLINE +#else +#define INLINE_OPTIONS static +#endif +#endif + #endif |