From 987d6e240c0c80ccb4b3fa565ce22a6b29fc58cf Mon Sep 17 00:00:00 2001
From: Sverker Eriksson
Date: Fri, 3 Nov 2017 17:51:01 +0100
Subject: Removed "unused list comprehensions"
which don't seem to be true.
---
lib/hipe/doc/src/hipe_app.xml | 8 --------
1 file changed, 8 deletions(-)
(limited to 'lib/hipe')
diff --git a/lib/hipe/doc/src/hipe_app.xml b/lib/hipe/doc/src/hipe_app.xml
index 0f8511eb00..7d22a014a0 100644
--- a/lib/hipe/doc/src/hipe_app.xml
+++ b/lib/hipe/doc/src/hipe_app.xml
@@ -109,14 +109,6 @@
gen_server:call() waits for the reply message.
- Unused list comprehensions
- List comprehensions used only for their side effects,
- will be optimized by BEAM to not produce the unused result
- list. This optimization is not done by HiPE.
-
-_ = [io:format("~p~n",[N]) || N <- lists:seq(1,10)],
-
-