Fix for VisualStudio. It is treating a 2 bit enum as a signed int for comparison purposes, causing failures. Using an extra bit fixes it.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41784 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chuck Rose III 2007-09-08 04:17:08 +00:00
parent 7dfda9e674
commit 418d360518

View File

@ -276,7 +276,9 @@ namespace llvm {
exponent_t exponent;
/* What kind of floating point number this is. */
fltCategory category: 2;
/* Only 2 bits are required, but VisualStudio incorrectly sign extends
it. Using the extra bit keeps it from failing under VisualStudio */
fltCategory category: 3;
/* The sign bit of this number. */
unsigned int sign: 1;