aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2008-04-08 18:07:49 +0000
committerDale Johannesen <dalej@apple.com>2008-04-08 18:07:49 +0000
commite8277dc7d60ad2a58016c8381b502d555a0d2352 (patch)
tree8ee6ec6052dac07197512c3d88f51c5024eab85a
parentd9c7dbfe44410bb1998d0900660e06a338823ea6 (diff)
downloadexternal_llvm-e8277dc7d60ad2a58016c8381b502d555a0d2352.zip
external_llvm-e8277dc7d60ad2a58016c8381b502d555a0d2352.tar.gz
external_llvm-e8277dc7d60ad2a58016c8381b502d555a0d2352.tar.bz2
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
-rw-r--r--lib/Target/TargetMachine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/TargetMachine.cpp b/lib/Target/TargetMachine.cpp
index e6f080d..6f2f123 100644
--- a/lib/Target/TargetMachine.cpp
+++ b/lib/Target/TargetMachine.cpp
@@ -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));