mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
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
This commit is contained in:
parent
2e4b639790
commit
445a02b5ad
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user