remove space/tab

This commit is contained in:
HarDToBelieve 2019-02-12 14:01:16 +07:00
parent b64464bf3b
commit ea003516ce
5 changed files with 17 additions and 18 deletions

View File

@ -15,9 +15,9 @@ char *get_detail_sysz(csh *handle, cs_mode mode, cs_insn *ins);
char *get_detail_x86(csh *handle, cs_mode mode, cs_insn *ins);
char *get_detail_xcore(csh *handle, cs_mode mode, cs_insn *ins);
char *get_detail_m68k(csh *handle, cs_mode mode, cs_insn *ins);
#ifndef __APPLE__
// #ifndef __APPLE__
char *get_detail_mos65xx(csh *handle, cs_mode mode, cs_insn *ins);
#endif
// #endif
char *get_detail_tms320c64x(csh *handle, cs_mode mode, cs_insn *ins);
#endif /* FACTORY_H */

View File

@ -259,11 +259,11 @@ int set_function(int arch)
case CS_ARCH_EVM:
function = get_detail_evm;
break;
#ifndef __APPLE__
// #ifndef __APPLE__
case CS_ARCH_MOS65XX:
function = get_detail_mos65xx;
break;
#endif
// #endif
case CS_ARCH_TMS320C64X:
function = get_detail_tms320c64x;
break;

View File

@ -119,7 +119,6 @@ static int setup_issue(void **state)
while (counter < size_lines && list_lines[counter][0] != '0') counter ++;
free_strs(list_params, size_params);
return 0;
}
static void test_issue(void **state)

View File

@ -1,6 +1,6 @@
#include "factory.h"
#ifndef __APPLE__
// #ifndef __APPLE__
static const char *get_am_name(mos65xx_address_mode mode)
{
switch(mode) {
@ -75,4 +75,4 @@ char *get_detail_mos65xx(csh *handle, cs_mode mode, cs_insn *ins)
}
return result;
}
#endif
// #endif