summaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorAndreas Schwab <aschwab@redhat.com>2009-07-05 23:46:03 -0700
committerPetr Baudis <pasky@suse.cz>2009-07-16 17:48:28 +0200
commitee38f2391d9d67ffb232780e28469a26ce3d221d (patch)
treef0487dea88b4f90f342ea058afe64b812b477e6f /sysdeps
parentb2e2a03ffd0ddd849ca4c773342581f0cbb83251 (diff)
Fix wrong PPC_FEATURE_* values.
Nothing uses these wrong values yet, but it fixes a warning due to conflicting definitions in <asm/cputable.h>. (cherry picked from commit 2123d5815eaaa53a772be4b6069bdc6332f2f491)
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/powerpc/sysdep.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/powerpc/sysdep.h b/sysdeps/powerpc/sysdep.h
index 43edeb71eb..f5c79c54ef 100644
--- a/sysdeps/powerpc/sysdep.h
+++ b/sysdeps/powerpc/sysdep.h
@@ -44,8 +44,8 @@
#define PPC_FEATURE_PA6T 0x00000800 /* PA Semi 6T Core */
#define PPC_FEATURE_HAS_DFP 0x00000400 /* Decimal FP Unit */
#define PPC_FEATURE_POWER6_EXT 0x00000200 /* P6 + mffgpr/mftgpr */
-#define PPC_FEATURE_HAS_VSX 0x00000100 /* P7 Vector Extension. */
-#define PPC_FEATURE_ARCH_2_06 0x00000080 /* ISA 2.06 */
+#define PPC_FEATURE_ARCH_2_06 0x00000100 /* ISA 2.06 */
+#define PPC_FEATURE_HAS_VSX 0x00000080 /* P7 Vector Extension. */
#define PPC_FEATURE_970 (PPC_FEATURE_POWER4 + PPC_FEATURE_HAS_ALTIVEC)
#ifdef __ASSEMBLER__