diff options
author | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-11-13 12:31:23 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-11-13 12:32:59 +0100 |
commit | 37c05b71299ec00bd2679c3df22fb6ca0cd0e371 (patch) | |
tree | 7e20df47455a342e454fb9fdbaa1e710fba7fd81 /tests/headers/macro-expr-basic.h | |
parent | bdfab643e70df469dd0d163cc91bf48955250735 (diff) |
codegen: Special-case i64::MIN since it produces a overflow on aster.
Proper fix on aster soon, still worth to get this in I guess.
r? @fitzgen
Diffstat (limited to 'tests/headers/macro-expr-basic.h')
-rw-r--r-- | tests/headers/macro-expr-basic.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/headers/macro-expr-basic.h b/tests/headers/macro-expr-basic.h index 55b11367..d2de7fdf 100644 --- a/tests/headers/macro-expr-basic.h +++ b/tests/headers/macro-expr-basic.h @@ -2,6 +2,8 @@ #define BAR 4 #define BAZ (FOO + BAR) +#define MIN (1 << 63) + #define BARR (1 << 0) #define BAZZ ((1 << 1) + BAZ) #define I_RAN_OUT_OF_DUMB_NAMES (BARR | BAZZ) |