diff options
author | David L Kreitzer <david.l.kreitzer@intel.com> | 2016-02-09 01:35:45 +0000 |
---|---|---|
committer | David L Kreitzer <david.l.kreitzer@intel.com> | 2016-02-09 01:35:45 +0000 |
commit | 104364e6b513f931f4768cb0b4e88ab975572fce (patch) | |
tree | 9d7d546cd52fae674d8e19276cdc75e0d23fdcae | |
parent | 841a978d229376804ab785a22c9b418f98900eed (diff) | |
download | bcm5719-llvm-104364e6b513f931f4768cb0b4e88ab975572fce.tar.gz bcm5719-llvm-104364e6b513f931f4768cb0b4e88ab975572fce.zip |
Fix the LLVM_ENABLE_MODULES build after adding TargetOpcodes.def in r259726.
Differential Revision: http://reviews.llvm.org/D17005
llvm-svn: 260186
-rw-r--r-- | llvm/include/llvm/module.modulemap | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap index efc1890191c..708d33cbf53 100644 --- a/llvm/include/llvm/module.modulemap +++ b/llvm/include/llvm/module.modulemap @@ -37,6 +37,9 @@ module LLVM_Backend { module Target { umbrella "Target" module * { export * } + + // This is intended for (repeated) textual inclusion. + textual header "Target/TargetOpcodes.def" } // FIXME: Where should this go? |