]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Use revised PPC32 subarchitecture categories.
authorJulian Seward <jseward@acm.org>
Sun, 13 Nov 2005 00:53:33 +0000 (00:53 +0000)
committerJulian Seward <jseward@acm.org>
Sun, 13 Nov 2005 00:53:33 +0000 (00:53 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5109

coregrind/m_machine.c

index be3e0d283886095b4381d0d73c1bffe3ae59ea94..76e4fd6d2a541368f2a3a70de20e2f8e109af974 100644 (file)
@@ -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)");