diff options
| author | John Thompson <John.Thompson.JTSoftware@gmail.com> | 2014-04-16 00:07:06 +0000 |
|---|---|---|
| committer | John Thompson <John.Thompson.JTSoftware@gmail.com> | 2014-04-16 00:07:06 +0000 |
| commit | 28331ae67e67f885ee8dce4494dddfba48915d6e (patch) | |
| tree | 1a4bb46724c29b1fcd8b34c65a30bcade62eb6b1 /clang/test/Modules/Inputs/exclude-header | |
| parent | 2f75076de138167b399705afd5f91efdcddbf8d8 (diff) | |
| download | bcm5719-llvm-28331ae67e67f885ee8dce4494dddfba48915d6e.tar.gz bcm5719-llvm-28331ae67e67f885ee8dce4494dddfba48915d6e.zip | |
Fixed problem with exclude header. The exclude header argument needs to be relative to the module.map file.
llvm-svn: 206342
Diffstat (limited to 'clang/test/Modules/Inputs/exclude-header')
| -rw-r--r-- | clang/test/Modules/Inputs/exclude-header/module.map | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Modules/Inputs/exclude-header/module.map b/clang/test/Modules/Inputs/exclude-header/module.map index 2aa1024458b..2563ef9dc9c 100644 --- a/clang/test/Modules/Inputs/exclude-header/module.map +++ b/clang/test/Modules/Inputs/exclude-header/module.map @@ -1,3 +1,3 @@ -module x { umbrella "x" exclude header "x/bad.h" exclude header "y/b.h" module * {} } +module x { umbrella "x" exclude header "x/bad.h" module * {} } module y { umbrella "y" module * {} } module bad { header "x/bad.h" } |

