mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
IntrinsicLowering now requires TargetData.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33617 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -21,10 +21,12 @@
|
|||||||
namespace llvm {
|
namespace llvm {
|
||||||
class CallInst;
|
class CallInst;
|
||||||
class Module;
|
class Module;
|
||||||
|
class TargetData;
|
||||||
|
|
||||||
class IntrinsicLowering {
|
class IntrinsicLowering {
|
||||||
|
const TargetData& TD;
|
||||||
public:
|
public:
|
||||||
IntrinsicLowering() {}
|
IntrinsicLowering(const TargetData &td) : TD(td) {}
|
||||||
|
|
||||||
/// AddPrototypes - This method, if called, causes all of the prototypes
|
/// AddPrototypes - This method, if called, causes all of the prototypes
|
||||||
/// that might be needed by an intrinsic lowering implementation to be
|
/// that might be needed by an intrinsic lowering implementation to be
|
||||||
|
Reference in New Issue
Block a user