diff options
author | Björn Gustavsson <[email protected]> | 2010-11-22 12:03:19 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-11-22 12:03:19 +0100 |
commit | 4819bd39799777427965963625f034e30673b034 (patch) | |
tree | 1d868d35eb94ebdd30c84c90df5baa7c14164fd4 /lib/hipe/rtl/hipe_rtl_arith.inc | |
parent | f555bf55aabd9b80f48daaf1f8ae041c8aa06f9e (diff) | |
parent | 6083a1a9e553eac8a0b33697964fadfd17d302ca (diff) | |
download | otp-4819bd39799777427965963625f034e30673b034.tar.gz otp-4819bd39799777427965963625f034e30673b034.tar.bz2 otp-4819bd39799777427965963625f034e30673b034.zip |
Merge branch 'ks/hipe-patches' into dev
* ks/hipe-patches:
hipe: Update types and specs
Diffstat (limited to 'lib/hipe/rtl/hipe_rtl_arith.inc')
-rw-r--r-- | lib/hipe/rtl/hipe_rtl_arith.inc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/hipe/rtl/hipe_rtl_arith.inc b/lib/hipe/rtl/hipe_rtl_arith.inc index 31fedd927e..9e80fa5e13 100644 --- a/lib/hipe/rtl/hipe_rtl_arith.inc +++ b/lib/hipe/rtl/hipe_rtl_arith.inc @@ -119,7 +119,8 @@ eval_alu(Op, Arg1, Arg2) -> %% there are cases where we can evaluate a subset of the bits, but can %% not do a full eval-alub call (eg. a + 0 gives no carry) %% --spec eval_cond_bits(atom(), boolean(), boolean(), boolean(), boolean()) -> boolean(). +-spec eval_cond_bits(hipe_rtl:alub_cond(), boolean(), + boolean(), boolean(), boolean()) -> boolean(). eval_cond_bits(Cond, N, Z, V, C) -> case Cond of @@ -146,9 +147,7 @@ eval_cond_bits(Cond, N, Z, V, C) -> 'overflow' -> V; 'not_overflow' -> - not V; - _ -> - ?EXIT({'condition code not handled',Cond}) + not V end. eval_alub(Op, Cond, Arg1, Arg2) -> |