diff options
| author | 2012-09-10 11:04:09 -0700 | |
|---|---|---|
| committer | 2012-09-10 11:04:09 -0700 | |
| commit | b7574cfbc05afde46c956235366ad200643275fc (patch) | |
| tree | 4f2c0cf7d82b1809e93c9e58ad148f1e39eeabf6 /src/compiler/Dataflow.h | |
| parent | 1a0806c6847a9dc5cc6d73460d7e8ad3183b5c49 (diff) | |
Fix basic block combine regression
We were missing one of the formats in the range check mask, resulting
in a basic block combine that shouldn't have happened. This was the
cause of host tests 003 and IntMath failures.
Change-Id: I60d1f508b06e64dab3975e79ab22b7d525a580f5
Diffstat (limited to 'src/compiler/Dataflow.h')
| -rw-r--r-- | src/compiler/Dataflow.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compiler/Dataflow.h b/src/compiler/Dataflow.h index 8263f335d7..e2d5a4c50a 100644 --- a/src/compiler/Dataflow.h +++ b/src/compiler/Dataflow.h @@ -101,7 +101,8 @@ enum DataFlowAttributePos { DF_NULL_CHK_OUT0) #define DF_HAS_RANGE_CHKS (DF_RANGE_CHK_1 | \ - DF_RANGE_CHK_2) + DF_RANGE_CHK_2 | \ + DF_RANGE_CHK_3) #define DF_HAS_NR_CHKS (DF_HAS_NULL_CHKS | \ DF_HAS_RANGE_CHKS) |