diff options
| author | Douglas Gregor <dgregor@apple.com> | 2011-12-08 18:00:48 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2011-12-08 18:00:48 +0000 |
| commit | 322f633c1c148a474d7d3b1176ca63c1f744b04c (patch) | |
| tree | 81569dec94f8a089ec29a21714d41d6c06dc77e0 /clang/test/Modules/Inputs/DependsOnModule.framework | |
| parent | 73141fa98d34ccd5cd420301122df4e214d9238a (diff) | |
| download | bcm5719-llvm-322f633c1c148a474d7d3b1176ca63c1f744b04c.tar.gz bcm5719-llvm-322f633c1c148a474d7d3b1176ca63c1f744b04c.zip | |
Tweak the syntax of umbrella headers, so that "umbrella" is treated as
a modifier for a header declarartion, e.g.,
umbrella header "headername"
Collapse the umbrella-handling code in the parser into the
header-handling code, so we don't duplicate the header-search logic.
llvm-svn: 146159
Diffstat (limited to 'clang/test/Modules/Inputs/DependsOnModule.framework')
| -rw-r--r-- | clang/test/Modules/Inputs/DependsOnModule.framework/module.map | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Modules/Inputs/DependsOnModule.framework/module.map b/clang/test/Modules/Inputs/DependsOnModule.framework/module.map index 6bf82b46d3d..d8fe2fc3f52 100644 --- a/clang/test/Modules/Inputs/DependsOnModule.framework/module.map +++ b/clang/test/Modules/Inputs/DependsOnModule.framework/module.map @@ -1,11 +1,11 @@ framework module DependsOnModule { - umbrella "DependsOnModule.h" + umbrella header "DependsOnModule.h" header "other.h" module * { export * } explicit framework module SubFramework { - umbrella "SubFramework.h" + umbrella header "SubFramework.h" module * { export * |

