From: Chris Lattner Date: Sun, 17 Nov 2002 22:14:22 +0000 (+0000) Subject: Remove unused methods X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7e1a53b404163af0880c2d395f3b579e3fa1392d;p=oota-llvm.git Remove unused methods git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4720 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 499ec2498cf..92045c3dcc6 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -197,8 +197,6 @@ private: // Construction methods needed for fine-grain control. // These must be accessed via coresponding methods in MachineInstr. - void markDef() { flags |= DEFFLAG; } - void markDefAndUse() { flags |= DEFUSEFLAG; } void markHi32() { flags |= HIFLAG32; } void markLo32() { flags |= LOFLAG32; } void markHi64() { flags |= HIFLAG64; }