From bf57b52ba424bbaaa6e2d25dd4df731deb59f959 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Fri, 16 Oct 2009 21:02:20 +0000 Subject: Add a CodeGenOpt::Less level to match -O1. It'll be used by clients which do not want post-regalloc scheduling. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84272 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/lli/lli.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/lli') diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp index e5c1070..723d6a8 100644 --- a/tools/lli/lli.cpp +++ b/tools/lli/lli.cpp @@ -148,7 +148,7 @@ int main(int argc, char **argv, char * const *envp) { return 1; case ' ': break; case '0': OLvl = CodeGenOpt::None; break; - case '1': + case '1': OLvl = CodeGenOpt::Less; break; case '2': OLvl = CodeGenOpt::Default; break; case '3': OLvl = CodeGenOpt::Aggressive; break; } -- cgit v1.1