mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-30 17:25:21 +00:00
Move TargetData to DataLayout.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165402 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -21,15 +21,15 @@
|
||||
namespace llvm {
|
||||
class CallInst;
|
||||
class Module;
|
||||
class TargetData;
|
||||
class DataLayout;
|
||||
|
||||
class IntrinsicLowering {
|
||||
const TargetData& TD;
|
||||
const DataLayout& TD;
|
||||
|
||||
|
||||
bool Warned;
|
||||
public:
|
||||
explicit IntrinsicLowering(const TargetData &td) :
|
||||
explicit IntrinsicLowering(const DataLayout &td) :
|
||||
TD(td), Warned(false) {}
|
||||
|
||||
/// AddPrototypes - This method, if called, causes all of the prototypes
|
||||
|
Reference in New Issue
Block a user