summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Gogolewski <krzysztof.gogolewski@tweag.io>2022-10-16 16:02:11 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-10-17 19:23:10 -0400
commitced664a27247730925530d39c83b879969b68709 (patch)
treefd3909ab443893bbe63dc90ae9d27c0c0e836163
parent0fa2d185b23eb08e2a2f2a4b7e40431c599e446d (diff)
downloadhaskell-ced664a27247730925530d39c83b879969b68709.tar.gz
Fix T15155l not getting -fllvm
-rw-r--r--testsuite/tests/codeGen/should_compile/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/codeGen/should_compile/Makefile b/testsuite/tests/codeGen/should_compile/Makefile
index 35242a5830..4d156b26b8 100644
--- a/testsuite/tests/codeGen/should_compile/Makefile
+++ b/testsuite/tests/codeGen/should_compile/Makefile
@@ -57,7 +57,7 @@ T15155:
# Same as above, but in LLVM. Check that the static indirection b is compiled to
# an alias.
T15155l:
- '$(TEST_HC)' $(TEST_HC_OPTS) -c -O0 -ddump-llvm T15155l.hs 2>/dev/null | \
+ '$(TEST_HC)' $(TEST_HC_OPTS) -c -O0 -fllvm -ddump-llvm T15155l.hs 2>/dev/null | \
grep -F "@T15155_b_closure = alias i8, i8* @T15155_a_closure"
# Without -fcatch-nonexhaustive-cases `f` is non-CAFFY. With