Skip to content

Commit 44d6584

Browse files
committed
C++, C#: Auto-format.
1 parent a139474 commit 44d6584

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

cpp/ql/src/semmle/code/cpp/ir/implementation/aliased_ssa/internal/SSAConstruction.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,8 @@ private module CachedForDebugging {
856856
exists(Alias::MemoryLocation location, OldBlock phiBlock, string specificity |
857857
instr = getPhi(phiBlock, location) and
858858
result =
859-
"Phi Block(" + phiBlock.getFirstInstruction().getUniqueId() + ")[" + specificity + "]: " + location.getUniqueId() and
859+
"Phi Block(" + phiBlock.getFirstInstruction().getUniqueId() + ")[" + specificity + "]: " +
860+
location.getUniqueId() and
860861
if location instanceof Alias::VirtualVariable
861862
then
862863
// Sort Phi nodes for virtual variables before Phi nodes for member locations.

cpp/ql/src/semmle/code/cpp/ir/implementation/unaliased_ssa/internal/SSAConstruction.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,8 @@ private module CachedForDebugging {
856856
exists(Alias::MemoryLocation location, OldBlock phiBlock, string specificity |
857857
instr = getPhi(phiBlock, location) and
858858
result =
859-
"Phi Block(" + phiBlock.getFirstInstruction().getUniqueId() + ")[" + specificity + "]: " + location.getUniqueId() and
859+
"Phi Block(" + phiBlock.getFirstInstruction().getUniqueId() + ")[" + specificity + "]: " +
860+
location.getUniqueId() and
860861
if location instanceof Alias::VirtualVariable
861862
then
862863
// Sort Phi nodes for virtual variables before Phi nodes for member locations.

csharp/ql/src/experimental/ir/implementation/unaliased_ssa/internal/SSAConstruction.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,8 @@ private module CachedForDebugging {
856856
exists(Alias::MemoryLocation location, OldBlock phiBlock, string specificity |
857857
instr = getPhi(phiBlock, location) and
858858
result =
859-
"Phi Block(" + phiBlock.getFirstInstruction().getUniqueId() + ")[" + specificity + "]: " + location.getUniqueId() and
859+
"Phi Block(" + phiBlock.getFirstInstruction().getUniqueId() + ")[" + specificity + "]: " +
860+
location.getUniqueId() and
860861
if location instanceof Alias::VirtualVariable
861862
then
862863
// Sort Phi nodes for virtual variables before Phi nodes for member locations.

0 commit comments

Comments
 (0)