From 86ec291145ca207e6c78fd313d4714038bd0a258 Mon Sep 17 00:00:00 2001 From: Mathias Vorreiter Pedersen Date: Thu, 3 Apr 2025 18:37:45 +0100 Subject: [PATCH] PS: Improve toString on phi nodes. --- powershell/ql/lib/semmle/code/powershell/dataflow/Ssa.qll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powershell/ql/lib/semmle/code/powershell/dataflow/Ssa.qll b/powershell/ql/lib/semmle/code/powershell/dataflow/Ssa.qll index 212936b3643..0d1b3728326 100644 --- a/powershell/ql/lib/semmle/code/powershell/dataflow/Ssa.qll +++ b/powershell/ql/lib/semmle/code/powershell/dataflow/Ssa.qll @@ -158,7 +158,7 @@ module Ssa { not exists(this.getSplitString()) and prefix = "" | - result = prefix + "phi" + result = prefix + "phi (" + this.getSourceVariable() + ")" ) }