From 5dcdb08b0da46a7604be18ac8cf90b1c28e8b891 Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Tue, 8 Apr 2008 18:07:49 +0000 Subject: [PATCH] Rename -disable-required-unwind-tables to unwind-tables-optional. llvm-svn: 49389 --- lib/Target/TargetMachine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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));