Merge pull request #118 from THU-DSP-LAB/checkInstr
[VENTUS][fix] Assign initial value for VastartStoreFrameIndex
This commit is contained in:
commit
c168c442ce
|
@ -334,7 +334,7 @@ enum NodeType : unsigned {
|
|||
|
||||
class RISCVTargetLowering : public TargetLowering {
|
||||
const RISCVSubtarget &Subtarget;
|
||||
int *VastartStoreFrameIndex = new int;
|
||||
int *VastartStoreFrameIndex = new int(INT_MAX);
|
||||
public:
|
||||
explicit RISCVTargetLowering(const TargetMachine &TM,
|
||||
const RISCVSubtarget &STI);
|
||||
|
|
Loading…
Reference in New Issue