diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-03-11 23:09:09 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-03-11 23:09:09 +0000 |
commit | 157d23f79e3dbe32401678a62bf1fc3d443cd94e (patch) | |
tree | f2b973ae607ca2ffb77111750217afc24858ead0 /lldb | |
parent | 020d92cb618c551a8065905111867a8c0b0f9196 (diff) | |
download | bcm5719-llvm-157d23f79e3dbe32401678a62bf1fc3d443cd94e.tar.gz bcm5719-llvm-157d23f79e3dbe32401678a62bf1fc3d443cd94e.zip |
[Reproducers] Make ReproducerInstrumentation a textual header
The RECORD macro is context sensitive because it depends on the
LLDB_GET_INSTRUMENTATION_DATA. This updates the modulemap to mark that
header as textual.
llvm-svn: 355879
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/include/lldb/module.modulemap | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/include/lldb/module.modulemap b/lldb/include/lldb/module.modulemap index 66d2c3b3205..e040df8f913 100644 --- a/lldb/include/lldb/module.modulemap +++ b/lldb/include/lldb/module.modulemap @@ -2,6 +2,8 @@ module lldb_API { requires cplusplus + textual header "Utility/ReproducerInstrumentation.h" + umbrella "API" module * { export * } } @@ -136,5 +138,4 @@ module lldb_Utility { module lldb_public { header "lldb-public.h" export * } module lldb_types { header "lldb-types.h" export * } module lldb_versioning { header "lldb-versioning.h" export * } - } |