summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2010-05-07 20:11:14 +0000
committerFrank Gevaerts <frank@gevaerts.be>2010-05-07 20:11:14 +0000
commit7a994c1e7d5ca431a46b80c98ae9413799c57c55 (patch)
tree95eefa43ad39a90ac61cc3a39f73243279a90755
parent91249a5c7d5a262bd5831470b0047ad1de1c9230 (diff)
downloadrockbox-7a994c1e7d5ca431a46b80c98ae9413799c57c55.tar.gz
rockbox-7a994c1e7d5ca431a46b80c98ae9413799c57c55.zip
Fix (hopefully) last aliasing bug (midiutil), and enable -fno-strict-aliasing again for zxbox and doom (no easy fix there)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25889 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/doom/doom.make2
-rw-r--r--apps/plugins/midi/midiutil.c6
-rw-r--r--apps/plugins/zxbox/zxbox.make2
3 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/doom/doom.make b/apps/plugins/doom/doom.make
index 54a63eb707..2f52da4a4e 100644
--- a/apps/plugins/doom/doom.make
+++ b/apps/plugins/doom/doom.make
@@ -19,7 +19,7 @@ DOOM_OBJ := $(call c2obj, $(DOOM_SRC))
19# add source files to OTHER_SRC to get automatic dependencies 19# add source files to OTHER_SRC to get automatic dependencies
20OTHER_SRC += $(DOOM_SRC) 20OTHER_SRC += $(DOOM_SRC)
21 21
22DOOMCFLAGS = $(PLUGINFLAGS) -Wno-strict-prototypes -O2 22DOOMCFLAGS = $(PLUGINFLAGS) -Wno-strict-prototypes -O2 -fno-strict-aliasing
23 23
24ifndef SIMVER 24ifndef SIMVER
25ifeq ($(TARGET), IRIVER_H100) 25ifeq ($(TARGET), IRIVER_H100)
diff --git a/apps/plugins/midi/midiutil.c b/apps/plugins/midi/midiutil.c
index 87e0f9d9a4..acb1558268 100644
--- a/apps/plugins/midi/midiutil.c
+++ b/apps/plugins/midi/midiutil.c
@@ -40,7 +40,7 @@ struct SynthObject voices[MAX_VOICES] IBSS_ATTR;
40void *alloc(int size) 40void *alloc(int size)
41{ 41{
42 static char *offset = NULL; 42 static char *offset = NULL;
43 static ssize_t totalSize = 0; 43 static size_t totalSize = 0;
44 char *ret; 44 char *ret;
45 45
46 int remainder = size % 4; 46 int remainder = size % 4;
@@ -49,10 +49,10 @@ void *alloc(int size)
49 49
50 if (offset == NULL) 50 if (offset == NULL)
51 { 51 {
52 offset = rb->plugin_get_audio_buffer((size_t *)&totalSize); 52 offset = rb->plugin_get_audio_buffer(&totalSize);
53 } 53 }
54 54
55 if (size + 4 > totalSize) 55 if (size + 4 > (int)totalSize)
56 { 56 {
57 printf("MALLOC BARF"); 57 printf("MALLOC BARF");
58 printf("MALLOC BARF"); 58 printf("MALLOC BARF");
diff --git a/apps/plugins/zxbox/zxbox.make b/apps/plugins/zxbox/zxbox.make
index 04c85407e1..c209d20ca1 100644
--- a/apps/plugins/zxbox/zxbox.make
+++ b/apps/plugins/zxbox/zxbox.make
@@ -30,7 +30,7 @@ else
30 ROCKS += $(ZXBOX_OBJDIR)/zxbox.rock 30 ROCKS += $(ZXBOX_OBJDIR)/zxbox.rock
31endif 31endif
32 32
33ZXBOXFLAGS = $(filter-out -O%,$(PLUGINFLAGS)) -O3 -funroll-loops 33ZXBOXFLAGS = $(filter-out -O%,$(PLUGINFLAGS)) -O3 -funroll-loops -fno-strict-aliasing
34 34
35$(ZXBOX_OBJDIR)/zxbox.rock: $(ZXBOX_OBJ) 35$(ZXBOX_OBJDIR)/zxbox.rock: $(ZXBOX_OBJ)
36 36