mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
12 lines
161 B
C
12 lines
161 B
C
|
#ifndef LLVM_CODEGEN_MAPPINGINFO_H
|
||
|
#define LLVM_CODEGEN_MAPPINGINFO_H
|
||
|
|
||
|
#include <iosfwd>
|
||
|
class Pass;
|
||
|
|
||
|
Pass *MappingInfoForFunction(std::ostream &out);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|