1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Fix IA64 compatibility

llvm-svn: 14866
This commit is contained in:
Chris Lattner 2004-07-16 00:06:01 +00:00
parent 53c9460cde
commit c014005d53
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ namespace {
cl::values(clEnumVal(simple, " simple register allocator"),
clEnumVal(local, " local register allocator"),
clEnumVal(linearscan, " linear scan register allocator (experimental)"),
0),
clEnumValEnd),
cl::init(local));
}

View File

@ -44,7 +44,7 @@ namespace {
cl::Prefix,
cl::values(clEnumVal(simple, " simple spiller"),
clEnumVal(local, " local spiller"),
0),
clEnumValEnd),
cl::init(local));
}