aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineInstr.h
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2012-12-18 23:40:14 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2012-12-18 23:40:14 +0000
commit445a02b5ad80de64d4e9d1d9efc8ab19ee2dd118 (patch)
treea61517f31bf13a19656444f7b05aac6e146f8507 /include/llvm/CodeGen/MachineInstr.h
parent2e4b639790a166e55a0bf14fac54ca6ce583e459 (diff)
Remove MachineInstr::setIsInsideBundle().
The bundle flags are now maintained by the slightly higher-level functions bundleWithPred() / bundleWithSucc() which enforce consistent bundle flags between neighboring instructions. See also MIBundleBuilder for an even higher-level approach to building bundles. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170475 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineInstr.h')
-rw-r--r--include/llvm/CodeGen/MachineInstr.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h
index 2313e4404b..0418b0400d 100644
--- a/include/llvm/CodeGen/MachineInstr.h
+++ b/include/llvm/CodeGen/MachineInstr.h
@@ -200,15 +200,6 @@ public:
return getFlag(BundledPred);
}
- /// setIsInsideBundle - Set InsideBundle bit.
- ///
- void setIsInsideBundle(bool Val = true) {
- if (Val)
- setFlag(BundledPred);
- else
- clearFlag(BundledPred);
- }
-
/// isBundled - Return true if this instruction part of a bundle. This is true
/// if either itself or its following instruction is marked "InsideBundle".
bool isBundled() const {