diff options
| author | Adrian Prantl <aprantl@apple.com> | 2017-07-19 00:09:58 +0000 |
|---|---|---|
| committer | Adrian Prantl <aprantl@apple.com> | 2017-07-19 00:09:58 +0000 |
| commit | 5649b0e8c934b2680ba353c748b996339671388d (patch) | |
| tree | 20a3d36e0a07063ae40ddce76fe39233eb72f91f /clang/test/Modules/Inputs | |
| parent | d63bfd218b67a9a33f16c6a7317f56c833826e62 (diff) | |
| download | bcm5719-llvm-5649b0e8c934b2680ba353c748b996339671388d.tar.gz bcm5719-llvm-5649b0e8c934b2680ba353c748b996339671388d.zip | |
Update for LLVM IR metadata changes (DIImportedEntity now needs a DIFile).
<rdar://problem/33357889>
https://bugs.llvm.org/show_bug.cgi?id=33822
Differential Revision: https://reviews.llvm.org/D35583
llvm-svn: 308399
Diffstat (limited to 'clang/test/Modules/Inputs')
| -rw-r--r-- | clang/test/Modules/Inputs/DebugObjCImport.h | 2 | ||||
| -rw-r--r-- | clang/test/Modules/Inputs/module.map | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/DebugObjCImport.h b/clang/test/Modules/Inputs/DebugObjCImport.h new file mode 100644 index 00000000000..b5ef366fca1 --- /dev/null +++ b/clang/test/Modules/Inputs/DebugObjCImport.h @@ -0,0 +1,2 @@ +@import Empty; +struct DebugObjCImport {}; diff --git a/clang/test/Modules/Inputs/module.map b/clang/test/Modules/Inputs/module.map index c0fe6c557f2..4cb3e8a0280 100644 --- a/clang/test/Modules/Inputs/module.map +++ b/clang/test/Modules/Inputs/module.map @@ -347,6 +347,12 @@ module DebugObjC { header "DebugObjC.h" } +module DebugObjCImport { + module SubModule { + header "DebugObjCImport.h" + } +} + module ImportNameInDir { header "ImportNameInDir.h" export * |

