remove space/tab
This commit is contained in:
parent
b64464bf3b
commit
ea003516ce
|
@ -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 */
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue