diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-05-06 14:11:03 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-05-06 14:11:03 -0600 |
commit | 47f3558cf06c0236cc140f6801d4a42189191e39 (patch) | |
tree | 884445c84457fae447e9445342814314040cdb8c /gcc | |
parent | 024b565872c3dd590b5488e6fe3252efab641c3e (diff) | |
download | gcc-47f3558cf06c0236cc140f6801d4a42189191e39.zip gcc-47f3558cf06c0236cc140f6801d4a42189191e39.tar.gz gcc-47f3558cf06c0236cc140f6801d4a42189191e39.tar.bz2 |
Fix braces right this time.
From-SVN: r19598
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/i386.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index 7d01e59..ef344b2 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -710,16 +710,16 @@ enum reg_class of length N_REG_CLASSES. */ #define REG_CLASS_CONTENTS \ -{{ 0, \ - 0x1, 0x2, 0x4, 0x8, /* AREG, DREG, CREG, BREG */ \ - 0x3, /* AD_REGS */ \ - 0xf, /* Q_REGS */ \ - 0x10, 0x20, /* SIREG, DIREG */ \ - 0x7f, /* INDEX_REGS */ \ - 0x100ff, /* GENERAL_REGS */ \ - 0x0100, 0x0200, /* FP_TOP_REG, FP_SECOND_REG */ \ - 0xff00, /* FLOAT_REGS */ \ - 0x1ffff }} +{ {0}, \ + {0x1}, {0x2}, {0x4}, {0x8}, /* AREG, DREG, CREG, BREG */ \ + {0x3}, /* AD_REGS */ \ + {0xf}, /* Q_REGS */ \ + {0x10}, {0x20}, /* SIREG, DIREG */ \ + {0x7f}, /* INDEX_REGS */ \ + {0x100ff}, /* GENERAL_REGS */ \ + {0x0100}, {0x0200}, /* FP_TOP_REG, FP_SECOND_REG */ \ + {0xff00}, /* FLOAT_REGS */ \ + {0x1ffff}} /* The same information, inverted: Return the class number of the smallest class containing |