diff options
Diffstat (limited to 'source/slang/slang-ir-sccp.cpp')
| -rw-r--r-- | source/slang/slang-ir-sccp.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/slang/slang-ir-sccp.cpp b/source/slang/slang-ir-sccp.cpp index 4e589c1fe..d253163c0 100644 --- a/source/slang/slang-ir-sccp.cpp +++ b/source/slang/slang-ir-sccp.cpp @@ -243,7 +243,7 @@ struct SCCPContext // Look up in the dictionary and just return the value we get from it. LatticeVal latticeVal; - if(mapInstToLatticeVal.TryGetValue(inst, latticeVal)) + if(mapInstToLatticeVal.tryGetValue(inst, latticeVal)) return latticeVal; // If we can't find the value from dictionary, we want to return None if this is a value @@ -973,12 +973,12 @@ struct SCCPContext bool isMarkedAsExecuted(IRBlock* block) { - return executedBlocks.Contains(block); + return executedBlocks.contains(block); } void markAsExecuted(IRBlock* block) { - executedBlocks.Add(block); + executedBlocks.add(block); } // The core of the algorithm is based on two work lists. |
