|
From: <sv...@va...> - 2013-09-05 17:59:17
|
carll 2013-09-05 17:59:03 +0000 (Thu, 05 Sep 2013)
New Revision: 13533
Log:
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.
Modified files:
trunk/none/tests/ppc32/Makefile.am
Modified: trunk/none/tests/ppc32/Makefile.am (+1 -1)
===================================================================
--- trunk/none/tests/ppc32/Makefile.am 2013-09-04 21:42:43 +00:00 (rev 13532)
+++ trunk/none/tests/ppc32/Makefile.am 2013-09-05 17:59:03 +00:00 (rev 13533)
@@ -122,4 +122,4 @@
@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)
|