diff options
author | Christopher Li <sparse@chrisli.org> | 2004-04-16 12:45:27 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-07 21:01:34 -0700 |
commit | 25f8da1914f637cd5b75d130f9acccfd930bf825 (patch) | |
tree | e85a9dd6abc5e53764705f60ee10841151d9b79a /lib.h | |
parent | [PATCH] pack basic blocks (diff) | |
download | sparse-25f8da1914f637cd5b75d130f9acccfd930bf825.tar.gz sparse-25f8da1914f637cd5b75d130f9acccfd930bf825.tar.bz2 sparse-25f8da1914f637cd5b75d130f9acccfd930bf825.zip |
[PATCH] More linearizion fun
- add pre/post op and assign add etc.
- change the call instruction have a list of arguments.
- change the pseudo_t to be struct pseudo_t *, prepare
for adding stuff to pseudo_t.
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,6 +61,7 @@ DECLARE_ALLOCATOR(entrypoint); DECLARE_ALLOCATOR(instruction); DECLARE_ALLOCATOR(multijmp); DECLARE_ALLOCATOR(phi); +DECLARE_ALLOCATOR(pseudo); #define LIST_NODE_NR (29) @@ -188,7 +189,6 @@ static inline struct basic_block * delete_last_basic_block(struct basic_block_li return delete_ptr_list_last((struct ptr_list **)head); } - static inline void *first_ptr_list(struct ptr_list *list) { if (!list) |