57
|
1 GCC 4.4.3 -> 4.5.0 へのアップデートの作業メモ
|
|
2
|
|
3 オリジナルのgcc-core 4.5.0と mergeして、衝突は全て解決
|
|
4
|
|
5 make時にエラー,未解決 -> (CbC-MAKELOG にログがのってます)
|
|
6 関数/マクロの引数構成に変更
|
|
7 ) build_decl,c_finish_stmt_expr,, -> locationの追加
|
|
8 ) buid_modify_expr, build_external_ref -> 色々変更
|
|
9
|
|
10 # GCCのソース中の用法を見る。コメントを読む。
|
|
11 # locationに関しては間違っても動く。
|
|
12
|
|
13 全てc-parser.c のcbc拡張の古い部分の変更
|
58
|
14
|
|
15 --
|
|
16
|
|
17 cbc-goto.hでエラー(消された関数を使用) -> targetm.calls.promote_funciton_return(funtype)
|
|
18
|
|
19 gcc/ChangeLog より --
|
|
20 (expand_call): When making sibcall decisions, use promote_function_mode.
|
|
21 Below, remove an if for targetm.calls.promote_function_return and
|
|
22 and use promote_function_mode.
|
|
23 --
|
|
24
|
|
25
|