From: Dale Johannesen Date: Tue, 8 Apr 2008 18:07:49 +0000 (+0000) Subject: Rename -disable-required-unwind-tables to unwind-tables-optional. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=e8277dc7d60ad2a58016c8381b502d555a0d2352;p=oota-llvm.git Rename -disable-required-unwind-tables to unwind-tables-optional. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49389 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/TargetMachine.cpp b/lib/Target/TargetMachine.cpp index e6f080d328d..6f2f1235d7a 100644 --- a/lib/Target/TargetMachine.cpp +++ b/lib/Target/TargetMachine.cpp @@ -85,8 +85,8 @@ namespace { cl::location(ExceptionHandling), cl::init(false)); cl::opt - 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));