mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
add a flag
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24375 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d5bd52ca48
commit
b13b3801fc
@ -40,9 +40,14 @@ namespace llvm {
|
|||||||
class Module;
|
class Module;
|
||||||
|
|
||||||
class IntrinsicLowering {
|
class IntrinsicLowering {
|
||||||
|
protected:
|
||||||
|
bool ShouldEmitDebugFunctions;
|
||||||
public:
|
public:
|
||||||
|
IntrinsicLowering() : ShouldEmitDebugFunctions(false) {}
|
||||||
virtual ~IntrinsicLowering() {}
|
virtual ~IntrinsicLowering() {}
|
||||||
|
|
||||||
|
bool EmitDebugFunctions() const { return ShouldEmitDebugFunctions; }
|
||||||
|
|
||||||
/// 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
|
||||||
/// inserted into the module specified.
|
/// inserted into the module specified.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user