File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ implies that option by default.
60
60
You can pass options to LLVM via the environment variable ` JULIA_LLVM_ARGS ` .
61
61
Here are example settings using ` bash ` syntax:
62
62
63
- * ` export JULIA_LLVM_ARGS = -print-after-all ` dumps IR after each pass.
64
- * ` export JULIA_LLVM_ARGS = -debug-only=loop-vectorize ` dumps LLVM ` DEBUG(...) ` diagnostics for
63
+ * ` export JULIA_LLVM_ARGS= -print-after-all ` dumps IR after each pass.
64
+ * ` export JULIA_LLVM_ARGS= -debug-only=loop-vectorize ` dumps LLVM ` DEBUG(...) ` diagnostics for
65
65
loop vectorizer. If you get warnings about "Unknown command line argument", rebuild LLVM with
66
66
` LLVM_ASSERTIONS = 1 ` .
67
67
@@ -113,7 +113,7 @@ The best strategy is to create a code example in a form where you can use LLVM's
113
113
study it and the pass of interest in isolation.
114
114
115
115
1 . Create an example Julia code of interest.
116
- 2 . Use ` JULIA_LLVM_ARGS = -print-after-all ` to dump the IR.
116
+ 2 . Use ` JULIA_LLVM_ARGS= -print-after-all ` to dump the IR.
117
117
3 . Pick out the IR at the point just before the pass of interest runs.
118
118
4 . Strip the debug metadata and fix up the TBAA metadata by hand.
119
119
You can’t perform that action at this time.
0 commit comments