Skip to content

Commit 5d3f128

Browse files
committed
[TableGen] Fix default and description of UseAllCompilerFlags
This tablegen entry was copy/pasted with the wrong default and description. This fixes that.
1 parent 0b66ff3 commit 5d3f128

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Target/TargetProperties.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ let Definition = "target" in {
170170
DefaultStringValue<"">,
171171
Desc<"Additional -Xcc flags to be passed to the Swift ClangImporter.">;
172172
def UseAllCompilerFlags: Property<"use-all-compiler-flags", "Boolean">,
173-
DefaultStringValue<"">,
174-
Desc<"The path to the SDK used to build the current target.">;
173+
DefaultTrue,
174+
Desc<"Try to use compiler flags for all modules when setting up the Swift expression parser, not just the main executable.">;
175175
def SDKPath: Property<"sdk-path", "FileSpec">,
176176
DefaultStringValue<"">,
177177
Desc<"The path to the SDK used to build the current target.">;

0 commit comments

Comments
 (0)