Commit 79f6c5e08c89baf482eaec0cc40c4e05d2fe58f9
Fix compilation with aCC: work around declaration order issue
The compiler requires that the type is known at parse time,
forward-declaring is not enough.
| |   |
| 113 | 113 | |
| 114 | 114 | void sample(CodeBlock*, Instruction*); |
| 115 | 115 | |
| #if COMPILER(WINSCW) |
| #if COMPILER(WINSCW) || COMPILER(ACC) |
| 117 | 117 | ScriptExecutable* m_executable; |
| 118 | 118 | #else |
| 119 | 119 | RefPtr<ScriptExecutable> m_executable; |
| |   |
| 93 | 93 | #define WTF_COMPILER_WINSCW 1 |
| 94 | 94 | #endif |
| 95 | 95 | |
| /* COMPILER(ACC) - HP aCC */ |
| #if defined(__HP_aCC) |
| #define WTF_COMPILER_ACC 1 |
| #endif |
|
| 96 | 101 | |
| 97 | 102 | /* ==== CPU() - the target CPU architecture ==== */ |
| 98 | 103 | |