From: Carl Love Date: Thu, 5 Sep 2013 17:59:03 +0000 (+0000) Subject: The flag for compiling test none/tests/ppc32/test_isa_2_07_part2.c was X-Git-Tag: svn/VALGRIND_3_9_0~158 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3568e0210fa2a1bd3a62330c59cfbcebcfaae44;p=thirdparty%2Fvalgrind.git The flag for compiling test none/tests/ppc32/test_isa_2_07_part2.c was incorrectly set to FLAG_M64 instead of FLAG_M32. Fixed the flag. The issue was reported in Bugzilla 324546. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13533 --- diff --git a/none/tests/ppc32/Makefile.am b/none/tests/ppc32/Makefile.am index e7abf3fdc4..ca5f587638 100644 --- a/none/tests/ppc32/Makefile.am +++ b/none/tests/ppc32/Makefile.am @@ -122,4 +122,4 @@ test_isa_2_07_part1_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $( @FLAG_M32@ $(BUILD_FLAGS_ISA_2_07) test_isa_2_07_part2_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(ISA_2_07_FLAG) \ - @FLAG_M64@ $(BUILD_FLAGS_ISA_2_07) + @FLAG_M32@ $(BUILD_FLAGS_ISA_2_07)