Deleted Added
full compact
ia64.c (213700) ia64.c (223935)
1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file ia64.c
4/// \brief Filter for IA64 (Itanium) binaries
5///
6// Authors: Igor Pavlov
7// Lasse Collin
8//
9// This file has been put into the public domain.
10// You can do whatever you want with this file.
11//
12///////////////////////////////////////////////////////////////////////////////
13
14#include "simple_private.h"
15
16
17static size_t
1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file ia64.c
4/// \brief Filter for IA64 (Itanium) binaries
5///
6// Authors: Igor Pavlov
7// Lasse Collin
8//
9// This file has been put into the public domain.
10// You can do whatever you want with this file.
11//
12///////////////////////////////////////////////////////////////////////////////
13
14#include "simple_private.h"
15
16
17static size_t
18ia64_code(lzma_simple *simple lzma_attribute((unused)),
18ia64_code(lzma_simple *simple lzma_attribute((__unused__)),
19 uint32_t now_pos, bool is_encoder,
20 uint8_t *buffer, size_t size)
21{
22 static const uint32_t BRANCH_TABLE[32] = {
23 0, 0, 0, 0, 0, 0, 0, 0,
24 0, 0, 0, 0, 0, 0, 0, 0,
25 4, 4, 6, 6, 0, 0, 7, 7,
26 4, 4, 0, 0, 4, 4, 0, 0

--- 84 unchanged lines hidden ---
19 uint32_t now_pos, bool is_encoder,
20 uint8_t *buffer, size_t size)
21{
22 static const uint32_t BRANCH_TABLE[32] = {
23 0, 0, 0, 0, 0, 0, 0, 0,
24 0, 0, 0, 0, 0, 0, 0, 0,
25 4, 4, 6, 6, 0, 0, 7, 7,
26 4, 4, 0, 0, 4, 4, 0, 0

--- 84 unchanged lines hidden ---