int.hh (7629:0f0c231e3e97) int.hh (8902:75b524b64c28)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 164 unchanged lines hidden (view full) ---

173
174 inline static IntRegIndex
175 INTREG_FOLDED(int index, int foldBit)
176 {
177 if ((index & 0x1C) == 4 && foldBit)
178 index = (index - 4) | foldBit;
179 return (IntRegIndex)index;
180 }
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 164 unchanged lines hidden (view full) ---

173
174 inline static IntRegIndex
175 INTREG_FOLDED(int index, int foldBit)
176 {
177 if ((index & 0x1C) == 4 && foldBit)
178 index = (index - 4) | foldBit;
179 return (IntRegIndex)index;
180 }
181};
181}
182
183#endif // __ARCH_X86_INTREGS_HH__
182
183#endif // __ARCH_X86_INTREGS_HH__