pandora: fix build
authornotaz <notasas@gmail.com>
Wed, 18 Oct 2017 23:44:56 +0000 (02:44 +0300)
committernotaz <notasas@gmail.com>
Fri, 20 Oct 2017 09:20:59 +0000 (12:20 +0300)
Fixes: df9251536de "libretro: satisfy vita's dynarec needs in a cleaner way"

cpu/sh2/compiler.c
platform/gp2x/plat.c
platform/pandora/plat.c

index 4403378..7bd9de0 100644 (file)
@@ -1017,6 +1017,7 @@ static void rcache_unlock_all(void)
     reg_temp[i].flags &= ~HRF_LOCKED;
 }
 
+#ifdef DRC_CMP
 static u32 rcache_used_hreg_mask(void)
 {
   u32 mask = 0;
@@ -1028,6 +1029,7 @@ static u32 rcache_used_hreg_mask(void)
 
   return mask;
 }
+#endif
 
 static void rcache_clean(void)
 {
index 4d35cbd..614ab7f 100644 (file)
@@ -179,6 +179,11 @@ void plat_video_menu_leave(void)
 {
 }
 
+void *plat_mem_get_for_drc(size_t size)
+{
+       return NULL;
+}
+
 void plat_early_init(void)
 {
        // just use gettimeofday until plat_init()
index 9cd5fc5..2e9457a 100644 (file)
@@ -442,6 +442,11 @@ void plat_wait_till_us(unsigned int us_to)
 */\r
 }\r
 \r
+void *plat_mem_get_for_drc(size_t size)\r
+{\r
+       return NULL;\r
+}\r
+\r
 void plat_early_init(void)\r
 {\r
 }\r