[Lldb-commits] [lldb] r355879 - [Reproducers] Make ReproducerInstrumentation a textual header

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Mon Mar 11 16:09:09 PDT 2019


Author: jdevlieghere
Date: Mon Mar 11 16:09:09 2019
New Revision: 355879

URL: http://llvm.org/viewvc/llvm-project?rev=355879&view=rev
Log:
[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.

Modified:
    lldb/trunk/include/lldb/module.modulemap

Modified: lldb/trunk/include/lldb/module.modulemap
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/module.modulemap?rev=355879&r1=355878&r2=355879&view=diff
==============================================================================
--- lldb/trunk/include/lldb/module.modulemap (original)
+++ lldb/trunk/include/lldb/module.modulemap Mon Mar 11 16:09:09 2019
@@ -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 * }
-
 }




More information about the lldb-commits mailing list