1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Rename -disable-required-unwind-tables to unwind-tables-optional.

llvm-svn: 49389
This commit is contained in:
Dale Johannesen 2008-04-08 18:07:49 +00:00
parent 80acb912a9
commit 5dcdb08b0d

View File

@ -85,8 +85,8 @@ namespace {
cl::location(ExceptionHandling),
cl::init(false));
cl::opt<bool, true>
DisableUnwindTables("disable-required-unwind-tables",
cl::desc("Do not require unwinding info for all functions"),
DisableUnwindTables("unwind-tables-optional",
cl::desc("Generate unwinding tables only for functions that require them"),
cl::location(UnwindTablesOptional),
cl::init(false));