diff options
author | felixs <felixs@4a8a32a2-be11-0410-ad9d-d568d2c75423> | 2022-10-07 16:19:30 +0000 |
---|---|---|
committer | felixs <felixs@4a8a32a2-be11-0410-ad9d-d568d2c75423> | 2022-10-07 16:19:30 +0000 |
commit | 2a1c26da809e4dafce5944b543fa65fb4bfc5575 (patch) | |
tree | 03c8584429fc89ad01e29f78dc86993a34032c87 /support/cpp/gcc | |
parent | 652870e24a0f39713731ad538702e71094e2271f (diff) |
cpp/gcc: two more dummies
git-svn-id: http://svn.code.sourceforge.net/p/sdcc/code/trunk/sdcc@13729 4a8a32a2-be11-0410-ad9d-d568d2c75423
Diffstat (limited to 'support/cpp/gcc')
-rw-r--r-- | support/cpp/gcc/cc1_dummies.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/support/cpp/gcc/cc1_dummies.cc b/support/cpp/gcc/cc1_dummies.cc index 291e3c395..0a9e21b6a 100644 --- a/support/cpp/gcc/cc1_dummies.cc +++ b/support/cpp/gcc/cc1_dummies.cc @@ -221,6 +221,9 @@ bool names_builtin_p(char const*) { SDCPP_DUMMY_FCT(); return 0; } +void output_operand_lossage (const char *, ...) +{ SDCPP_DUMMY_FCT(); +} void parse_basever(int*, int*, int*) { SDCPP_DUMMY_FCT(); } @@ -315,4 +318,5 @@ const struct ggc_root_tab * const gt_ggc_deletable_rtab[] = { &my_ggc_root_tab } const struct ggc_root_tab * const gt_ggc_rtab[] = { &my_ggc_root_tab }; const struct ggc_root_tab * const gt_pch_scalar_rtab[] = { &my_ggc_root_tab }; /*----------------------------------------------------------------------*/ +bool this_is_asm_operands = 0; /*----------------------------------------------------------------------*/ |