diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-09-30 00:45:29 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-09-30 00:45:29 +0000 |
| commit | e9a8bc3b69dec4f00d9985870ccc8a8320ec3f6f (patch) | |
| tree | 1877d97f87da64f16c6d4f68a04fda49f34c48ca /clang/test/Modules/Inputs/PR20399/module.modulemap | |
| parent | 0fbf3af3dcaa42facaccdc7192ba0e09fae668d4 (diff) | |
| download | bcm5719-llvm-e9a8bc3b69dec4f00d9985870ccc8a8320ec3f6f.tar.gz bcm5719-llvm-e9a8bc3b69dec4f00d9985870ccc8a8320ec3f6f.zip | |
PR20399: Do not assert when adding an implicit member coming from a module at
writing time.
Patch by Vassil Vassilev!
llvm-svn: 218651
Diffstat (limited to 'clang/test/Modules/Inputs/PR20399/module.modulemap')
| -rw-r--r-- | clang/test/Modules/Inputs/PR20399/module.modulemap | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/PR20399/module.modulemap b/clang/test/Modules/Inputs/PR20399/module.modulemap new file mode 100644 index 00000000000..223434adba1 --- /dev/null +++ b/clang/test/Modules/Inputs/PR20399/module.modulemap @@ -0,0 +1,18 @@ +module stdlib [system] { + header "stl_map.h" + header "vector" + } + +module libCore { + header "SecondHeader.h" + use stdlib + export * +} + +module libGdml { + header "FirstHeader.h" + use libCore + use stdlib + export * +} + |

