summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlkis Evlogimenos <alkis@evlogimenos.com>2004-02-02 23:08:58 +0000
committerAlkis Evlogimenos <alkis@evlogimenos.com>2004-02-02 23:08:58 +0000
commit9fe7602862328c0081106709e0a8f03316dc845b (patch)
tree9194cced66c365831953adbf786ac76789ad0637 /include
parentcc6a1290fc91716f7d81a637171cae59678f1f6c (diff)
downloadllvm-9fe7602862328c0081106709e0a8f03316dc845b.tar.gz
llvm-9fe7602862328c0081106709e0a8f03316dc845b.tar.bz2
llvm-9fe7602862328c0081106709e0a8f03316dc845b.tar.xz
Revert changes. Will implement this using a different set of primitives
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11091 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/MachineInstr.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h
index 8f223b37bf..670f9721ae 100644
--- a/include/llvm/CodeGen/MachineInstr.h
+++ b/include/llvm/CodeGen/MachineInstr.h
@@ -288,9 +288,6 @@ public:
bool isHiBits64 () const { return flags & HIFLAG64; }
bool isLoBits64 () const { return flags & LOFLAG64; }
- MachineOperand& setUse () { flags |= USEFLAG; return *this; }
- MachineOperand& setDef () { flags |= DEFFLAG; return *this; }
-
// used to check if a machine register has been allocated to this operand
bool hasAllocatedReg() const {
return (regNum >= 0 &&