[llvm] r240317 - Remove "const" from the MachineFunction reference in VLIWPacketizerList
Krzysztof Parzyszek
kparzysz at codeaurora.org
Mon Jun 22 11:59:45 PDT 2015
Author: kparzysz
Date: Mon Jun 22 13:59:44 2015
New Revision: 240317
URL: http://llvm.org/viewvc/llvm-project?rev=240317&view=rev
Log:
Remove "const" from the MachineFunction reference in VLIWPacketizerList
Modified:
llvm/trunk/include/llvm/CodeGen/DFAPacketizer.h
Modified: llvm/trunk/include/llvm/CodeGen/DFAPacketizer.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/DFAPacketizer.h?rev=240317&r1=240316&r2=240317&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/DFAPacketizer.h (original)
+++ llvm/trunk/include/llvm/CodeGen/DFAPacketizer.h Mon Jun 22 13:59:44 2015
@@ -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.
More information about the llvm-commits
mailing list