Linearscan is no longer experimental.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15067 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alkis Evlogimenos 2004-07-21 08:18:50 +00:00
parent 6d4b0d723d
commit c8dec2c23e
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ Local register allocator
=item I<linearscan>
Linear scan global register allocator (experimental)
Linear scan global register allocator
=back

View File

@ -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));
}