diff options
-rw-r--r-- | llvm/include/llvm/CodeGen/MappingInfo.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/llvm/include/llvm/CodeGen/MappingInfo.h b/llvm/include/llvm/CodeGen/MappingInfo.h new file mode 100644 index 00000000000..aa8efaf893e --- /dev/null +++ b/llvm/include/llvm/CodeGen/MappingInfo.h @@ -0,0 +1,11 @@ +#ifndef LLVM_CODEGEN_MAPPINGINFO_H +#define LLVM_CODEGEN_MAPPINGINFO_H + +#include <iosfwd> +class Pass; + +Pass *MappingInfoForFunction(std::ostream &out); + +#endif + + |