From b1977babe6148cbf2b516768b6dd72dbfbd7ff1d Mon Sep 17 00:00:00 2001 From: jimmyk Date: Wed, 10 Apr 2024 15:34:20 -0400 Subject: [PATCH] Fixes documentation of disableGLU Xjit option The documentation incorrectly lists "disableLoopUnroller" as the option to disable loop unroller. This option does not exist and will result in an unrecognized option error. The correct Xjit option name is "disableGLU" and the documentation has been updated to reflect this. Signed-off-by: jimmyk --- doc/compiler/CompilerOptions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/compiler/CompilerOptions.md b/doc/compiler/CompilerOptions.md index e096912e93..fceaf809f6 100644 --- a/doc/compiler/CompilerOptions.md +++ b/doc/compiler/CompilerOptions.md @@ -132,10 +132,10 @@ options, etc). | disableCFGSimplification | disable Control Flow Graph simplification | | disableDeadTreeElimination | disable dead tree elimination | | disableGlobalDSE | disable global dead store elimination | +| disableGLU | disable general loop unroller | | disableGRA | disable IL based global register allocator | | disableInlining | disable IL inlining | | disableLiveRegisterAnalysis | disable live register analysis | -| disableLoopUnroller | disable loop unroller | | disableOpts={regex} | list of optimizations to disable | | disableOptTransformations={regex} | list of optimizer transformations to disable | | disableTreeCleansing | disable tree cleansing | @@ -198,4 +198,4 @@ options, etc). | noRecompile | do not recompile even when counts allow it | | stopOnFailure | stop compilation if exceed memory threshold | | tlhPrefetch | enable software prefetch on allocation for X86 | -| tossCode | throw code and data away after compiling | \ No newline at end of file +| tossCode | throw code and data away after compiling |