aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/test/map_SUITE.erl
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2014-03-04 12:30:54 +0100
committerBjörn-Egil Dahlberg <[email protected]>2014-03-04 12:30:54 +0100
commit2fbbc2f0d7987d15aef7b3ece116926e1215d8a3 (patch)
treeb1a169fe219998666560abe3b65981b93a51a610 /lib/compiler/test/map_SUITE.erl
parent2e5457c71e7c125b3d603e04575648b7afa1b54a (diff)
parent5436de7707970f89ecee7ff649bc8ab6b99f8f36 (diff)
downloadotp-2fbbc2f0d7987d15aef7b3ece116926e1215d8a3.tar.gz
otp-2fbbc2f0d7987d15aef7b3ece116926e1215d8a3.tar.bz2
otp-2fbbc2f0d7987d15aef7b3ece116926e1215d8a3.zip
Merge branch 'nox/maps-fix-beam_bool-put_map'
* nox/maps-fix-beam_bool-put_map: Properly collect labels in put_map instructions in beam_bool
Diffstat (limited to 'lib/compiler/test/map_SUITE.erl')
-rw-r--r--lib/compiler/test/map_SUITE.erl3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/compiler/test/map_SUITE.erl b/lib/compiler/test/map_SUITE.erl
index ddcce0d37a..3639192a51 100644
--- a/lib/compiler/test/map_SUITE.erl
+++ b/lib/compiler/test/map_SUITE.erl
@@ -286,6 +286,7 @@ get_val(#{ "wazzup" := _, val := V}) -> V;
get_val(#{ val := V }) -> {some_val, V}.
t_guard_bifs(Config) when is_list(Config) ->
+ true = map_guard_empty(),
true = map_guard_head(#{a=>1}),
false = map_guard_head([]),
true = map_guard_body(#{a=>1}),
@@ -294,6 +295,8 @@ t_guard_bifs(Config) when is_list(Config) ->
false = map_guard_pattern("list"),
ok.
+map_guard_empty() when is_map(#{}); false -> true.
+
map_guard_head(M) when is_map(M) -> true;
map_guard_head(_) -> false.