Skip to content

Commit

Permalink
Fix: git rebase failure
Browse files Browse the repository at this point in the history
  • Loading branch information
uxmal committed Apr 30, 2024
1 parent 02e40b8 commit 4f44dea
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 15 deletions.
6 changes: 0 additions & 6 deletions src/Decompiler/Analysis/CallRewriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,6 @@ public FunctionType MakeSignature(SsaState ssa, ProcedureFlow flow)
return sig;
}

private ICallingConvention? GuessCallingConvention(SignatureBuilder sb, IProcessorArchitecture architecture)
{
//$TODO: #1338
return null;
}

void ProcessInputStorages(SsaState ssa, ProcedureFlow flow, SignatureBuilder sb)
{
var frame = ssa.Procedure.Frame;
Expand Down
8 changes: 0 additions & 8 deletions src/Decompiler/Analysis/SignatureBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,6 @@ public void AddInParam(Identifier arg)
parameters.Add(arg);
}

public void SortParameters(ICallingConvention cc)
{
if (cc.InArgumentComparer is not null)
{
args.Sort(cc.InArgumentComparer);
}
}

public FunctionType BuildSignature()
{
return FunctionType.Create(ret, parameters.ToArray());
Expand Down
2 changes: 1 addition & 1 deletion src/Decompiler/Scanning/BackwardSlicer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace Reko.Scanning
/// </remarks>
public class BackwardSlicer
{
public static readonly TraceSwitch trace = new TraceSwitch(nameof(BackwardSlicer), "Traces the backward slicer") { Level = TraceLevel.Warning };
public static readonly TraceSwitch trace = new TraceSwitch(nameof(BackwardSlicer), "Traces the backward slicer") { Level = TraceLevel.Verbose };

internal IBackWalkHost<RtlBlock, RtlInstruction> host;
private readonly RtlBlock rtlBlock;
Expand Down

0 comments on commit 4f44dea

Please sign in to comment.