[llvm-commits] [llvm] r49389 - /llvm/trunk/lib/Target/TargetMachine.cpp
Dale Johannesen
dalej at apple.com
Tue Apr 8 11:07:50 PDT 2008
Author: johannes
Date: Tue Apr 8 13:07:49 2008
New Revision: 49389
URL: http://llvm.org/viewvc/llvm-project?rev=49389&view=rev
Log:
Rename -disable-required-unwind-tables to unwind-tables-optional.
Modified:
llvm/trunk/lib/Target/TargetMachine.cpp
Modified: llvm/trunk/lib/Target/TargetMachine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/TargetMachine.cpp?rev=49389&r1=49388&r2=49389&view=diff
==============================================================================
--- llvm/trunk/lib/Target/TargetMachine.cpp (original)
+++ llvm/trunk/lib/Target/TargetMachine.cpp Tue Apr 8 13:07:49 2008
@@ -85,8 +85,8 @@
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));
More information about the llvm-commits
mailing list