mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
rename isStore -> mayStore to more accurately reflect what it captures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45656 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -191,7 +191,7 @@ class Instruction {
|
||||
bit isBarrier = 0; // Can control flow fall through this instruction?
|
||||
bit isCall = 0; // Is this instruction a call instruction?
|
||||
bit isLoad = 0; // Is this instruction a load instruction?
|
||||
bit isStore = 0; // Is this instruction a store instruction?
|
||||
bit mayStore = 0; // Can this instruction modify memory?
|
||||
bit isImplicitDef = 0; // Is this instruction an implicit def instruction?
|
||||
bit isTwoAddress = 0; // Is this a two address instruction?
|
||||
bit isConvertibleToThreeAddress = 0; // Can this 2-addr instruction promote?
|
||||
|
Reference in New Issue
Block a user