diff options
author | Krzysztof Gogolewski <krzysztof.gogolewski@tweag.io> | 2022-10-16 16:02:11 +0200 |
---|---|---|
committer | Krzysztof Gogolewski <krzysztof.gogolewski@tweag.io> | 2022-10-17 01:21:15 +0200 |
commit | edfd863d30b4fb22b0e122f4a92b664617fd1ea6 (patch) | |
tree | cdfa1ff31a7bf6de07396e5006b0196c1fafa177 | |
parent | 31bbe13e8d287f4215acd08979142ec84be9fd5a (diff) | |
download | haskell-wip/llvm-ways.tar.gz |
Fix T15155l not getting -fllvmwip/llvm-ways
-rw-r--r-- | testsuite/tests/codeGen/should_compile/Makefile | 2 |
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 |