mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-11 16:37:42 +00:00
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:
parent
7dfda9e674
commit
418d360518
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user