Branches feitos, acredito
[pspdecompiler.git] / tests / test.c
blobe133ff3c24aac3f8140f29c77731c2f21cec7db8
1 #include <pspkernel.h>
3 PSP_MODULE_INFO ("test", 0x0, 1, 2);
5 extern void testcfg_branches (void);
6 extern void testcfg_branches_likely (void);
7 extern void testcfg_branches_noswap (void);
8 extern void testcfg_branches_never (void);
9 extern void testcfg_branches_always (void);
10 extern void testcfg_branchlink (void);
11 extern void testcfg_strangerefs (void);
12 extern void testcfg_jumptobegin (void);
13 extern void testcfg_callnoswap (void);
14 extern void testswitch (void);
15 extern int forfunc (int a, int b);
17 int module_start (SceUInt argc, void *arg)
19 testcfg_branches ();
20 testcfg_branches_likely ();
21 testcfg_branches_noswap ();
22 testcfg_branches_never ();
23 testcfg_branches_always ();
24 testcfg_branchlink ();
25 testcfg_strangerefs ();
26 testcfg_jumptobegin ();
27 testcfg_callnoswap ();
28 testswitch ();
29 forfunc (13, 2);
31 sceKernelSleepThread ();
32 return 0;
35 int module_stop (SceUInt argc, void *arg)
37 return 0;