| ia64.c | ia64.c | |||
|---|---|---|---|---|
| skipping to change at line 87 | skipping to change at line 87 | |||
| instruction | instruction | |||
| >> (8 * j)); | >> (8 * j)); | |||
| } | } | |||
| } | } | |||
| } | } | |||
| return i; | return i; | |||
| } | } | |||
| static lzma_ret | static lzma_ret | |||
| ia64_coder_init(lzma_next_coder *next, lzma_allocator *allocator, | ia64_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, | |||
| const lzma_filter_info *filters, bool is_encoder) | const lzma_filter_info *filters, bool is_encoder) | |||
| { | { | |||
| return lzma_simple_coder_init(next, allocator, filters, | return lzma_simple_coder_init(next, allocator, filters, | |||
| &ia64_code, 0, 16, 16, is_encoder); | &ia64_code, 0, 16, 16, is_encoder); | |||
| } | } | |||
| extern lzma_ret | extern lzma_ret | |||
| lzma_simple_ia64_encoder_init(lzma_next_coder *next, | lzma_simple_ia64_encoder_init(lzma_next_coder *next, | |||
| lzma_allocator *allocator, const lzma_filter_info *filters) | const lzma_allocator *allocator, | |||
| const lzma_filter_info *filters) | ||||
| { | { | |||
| return ia64_coder_init(next, allocator, filters, true); | return ia64_coder_init(next, allocator, filters, true); | |||
| } | } | |||
| extern lzma_ret | extern lzma_ret | |||
| lzma_simple_ia64_decoder_init(lzma_next_coder *next, | lzma_simple_ia64_decoder_init(lzma_next_coder *next, | |||
| lzma_allocator *allocator, const lzma_filter_info *filters) | const lzma_allocator *allocator, | |||
| const lzma_filter_info *filters) | ||||
| { | { | |||
| return ia64_coder_init(next, allocator, filters, false); | return ia64_coder_init(next, allocator, filters, false); | |||
| } | } | |||
| End of changes. 3 change blocks. | ||||
| 3 lines changed or deleted | 5 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/  | ||||