From: Julian Seward Date: Sun, 13 Nov 2005 00:53:33 +0000 (+0000) Subject: Use revised PPC32 subarchitecture categories. X-Git-Tag: svn/VALGRIND_3_1_0~123 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=09a6a19642f090db82d0866f73544109f7751cbe;p=thirdparty%2Fvalgrind.git Use revised PPC32 subarchitecture categories. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5109 --- diff --git a/coregrind/m_machine.c b/coregrind/m_machine.c index be3e0d2838..76e4fd6d2a 100644 --- a/coregrind/m_machine.c +++ b/coregrind/m_machine.c @@ -380,13 +380,13 @@ Bool VG_(machine_get_hwcaps)( void ) va = VexArchPPC32; if (have_fp == False && have_vmx == False) { - vai.subarch = VexSubArchPPC32_noAV; // _I + vai.subarch = VexSubArchPPC32_I; } else if (have_fp == True && have_vmx == False) { - vai.subarch = VexSubArchPPC32_noAV; // _FI + vai.subarch = VexSubArchPPC32_FI; } else if (have_fp == True && have_vmx == True) { - vai.subarch = VexSubArchPPC32_AV; // _VFI + vai.subarch = VexSubArchPPC32_VFI; } else { /* this can't happen. */ vg_assert2(0, "VG_(machine_get_hwcaps)(ppc32)");