mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Add an accesor for the isNormalMemory field in the SDep class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61342 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
983bbbaf36
commit
fb8a1356b2
@ -166,6 +166,13 @@ namespace llvm {
|
||||
return getKind() != Data;
|
||||
}
|
||||
|
||||
/// isNormalMemory - Test if this is an Order dependence between two
|
||||
/// memory accesses where both sides of the dependence access memory
|
||||
/// in non-volatile and fully modeled ways.
|
||||
bool isNormalMemory() const {
|
||||
return getKind() == Order && Contents.Order.isNormalMemory;
|
||||
}
|
||||
|
||||
/// isMustAlias - Test if this is an Order dependence that is marked
|
||||
/// as "must alias", meaning that the SUnits at either end of the edge
|
||||
/// have a memory dependence on a known memory location.
|
||||
|
Loading…
Reference in New Issue
Block a user