Skip to content

Commit

Permalink
Removed debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasHaas committed Nov 11, 2024
1 parent 8772b56 commit 23fa26b
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1021,11 +1021,6 @@ public Expression visitAddrSpaceCastExpr(AddrSpaceCastExprContext ctx) {
public Expression visitGetElementPtrExpr(GetElementPtrExprContext ctx) {
final Type indexingType = parseType(ctx.type());
final Expression base = visitTypeConst(ctx.typeConst());
if (base == null) {
final String typeConst = ctx.typeConst().getText();
final String rep = ctx.getText();
int i = 5;
}
final var offsets = new ArrayList<Expression>();
for (final GepIndexContext index : ctx.gepIndex()) {
offsets.add(visitTypeConst(index.typeConst()));
Expand Down

0 comments on commit 23fa26b

Please sign in to comment.