From: Krzysztof Parzyszek Date: Mon, 22 Jun 2015 18:59:44 +0000 (+0000) Subject: Remove "const" from the MachineFunction reference in VLIWPacketizerList X-Git-Tag: llvmorg-3.7.0-rc1~1831 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b9338e7f5ab639aef5a8e97596d66f545a938715;p=platform%2Fupstream%2Fllvm.git Remove "const" from the MachineFunction reference in VLIWPacketizerList llvm-svn: 240317 --- diff --git a/llvm/include/llvm/CodeGen/DFAPacketizer.h b/llvm/include/llvm/CodeGen/DFAPacketizer.h index ccff388..b2690a4 100644 --- a/llvm/include/llvm/CodeGen/DFAPacketizer.h +++ b/llvm/include/llvm/CodeGen/DFAPacketizer.h @@ -91,7 +91,7 @@ public: // API call is made to prune the dependence. class VLIWPacketizerList { protected: - const MachineFunction &MF; + MachineFunction &MF; const TargetInstrInfo *TII; // The VLIW Scheduler.