From b808d189b3d57182356ad996c21c060d9992617c Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Mon, 28 Oct 2019 14:06:12 -0700 Subject: [PATCH] lldb: correct default value for Boolean This would assert in lldb-tablegen on the string parameter being passed to a boolean value. --- lldb/source/Target/TargetProperties.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Target/TargetProperties.td b/lldb/source/Target/TargetProperties.td index 7a06711dd79448..8607cc943d2626 100644 --- a/lldb/source/Target/TargetProperties.td +++ b/lldb/source/Target/TargetProperties.td @@ -170,7 +170,7 @@ let Definition = "target" in { DefaultStringValue<"">, Desc<"Additional -Xcc flags to be passed to the Swift ClangImporter.">; def UseAllCompilerFlags: Property<"use-all-compiler-flags", "Boolean">, - DefaultStringValue<"">, + DefaultFalse, Desc<"The path to the SDK used to build the current target.">; def SDKPath: Property<"sdk-path", "FileSpec">, DefaultStringValue<"">,