forked from OSchip/llvm-project
Suppress implicit copy ctor and copy assignment for MachineFunction.
llvm-svn: 86557
This commit is contained in:
parent
f81f528db1
commit
1c311a8cd7
|
@ -115,6 +115,9 @@ class MachineFunction {
|
|||
// The alignment of the function.
|
||||
unsigned Alignment;
|
||||
|
||||
MachineFunction(const MachineFunction &); // intentionally unimplemented
|
||||
void operator=(const MachineFunction&); // intentionally unimplemented
|
||||
|
||||
public:
|
||||
MachineFunction(Function *Fn, const TargetMachine &TM);
|
||||
~MachineFunction();
|
||||
|
|
Loading…
Reference in New Issue