diff options
-rw-r--r-- | docs/CommandGuide/llc.pod | 2 | ||||
-rw-r--r-- | lib/CodeGen/Passes.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/CommandGuide/llc.pod b/docs/CommandGuide/llc.pod index 71cbf1cb3a..1f202aab0c 100644 --- a/docs/CommandGuide/llc.pod +++ b/docs/CommandGuide/llc.pod @@ -139,7 +139,7 @@ Local register allocator =item I<linearscan> -Linear scan global register allocator (experimental) +Linear scan global register allocator =back diff --git a/lib/CodeGen/Passes.cpp b/lib/CodeGen/Passes.cpp index b390e037f6..37b4dde2a8 100644 --- a/lib/CodeGen/Passes.cpp +++ b/lib/CodeGen/Passes.cpp @@ -26,7 +26,7 @@ namespace { cl::Prefix, cl::values(clEnumVal(simple, " simple register allocator"), clEnumVal(local, " local register allocator"), - clEnumVal(linearscan, " linear scan register allocator (experimental)"), + clEnumVal(linearscan, " linear scan register allocator"), clEnumValEnd), cl::init(local)); } |