Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pre-commit: test PR81562 #227

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions bench/luajit/optimized/lj_opt_fold.ll
Original file line number Diff line number Diff line change
Expand Up @@ -4036,8 +4036,8 @@ if.then15: ; preds = %land.lhs.true
br label %return

if.end24: ; preds = %entry, %land.lhs.true
%cmp28.not = icmp eq i32 %and3, %2
br i1 %cmp28.not, label %if.end35, label %if.then30
%cmp28.not.not = icmp ugt i32 %2, %cond
br i1 %cmp28.not.not, label %if.then30, label %if.end35

if.then30: ; preds = %if.end24
%call = tail call i32 @lj_ir_kint(ptr noundef nonnull %J, i32 noundef %and3) #11
Expand All @@ -4054,7 +4054,7 @@ if.end35: ; preds = %if.end24

if.then42: ; preds = %if.end35
store i8 39, ptr %o38, align 1
%sub = sub nsw i32 0, %2
%sub = sub nsw i32 0, %and3
%and46 = and i32 %cond, %sub
%call47 = tail call i32 @lj_ir_kint(ptr noundef nonnull %J, i32 noundef %and46) #11
%conv48 = trunc i32 %call47 to i16
Expand Down Expand Up @@ -5984,7 +5984,7 @@ if.end.i: ; preds = %lor.lhs.false45.i,
br i1 %or.cond.i, label %if.then64.i, label %return

if.then64.i: ; preds = %if.end.i
%add.i = add i8 %17, -12
%add.i = add nsw i8 %17, -12
store i8 %add.i, ptr %t.i, align 4
br label %return

Expand Down Expand Up @@ -6122,7 +6122,7 @@ if.end.i: ; preds = %lor.lhs.false45.i,
br i1 %or.cond.i, label %if.then64.i, label %return

if.then64.i: ; preds = %if.end.i
%add.i = add i8 %6, -12
%add.i = add nsw i8 %6, -12
store i8 %add.i, ptr %t.i, align 4
br label %return

Expand Down
10 changes: 5 additions & 5 deletions bench/luajit/optimized/lj_opt_fold_dyn.ll
Original file line number Diff line number Diff line change
Expand Up @@ -4036,8 +4036,8 @@ if.then15: ; preds = %land.lhs.true
br label %return

if.end24: ; preds = %entry, %land.lhs.true
%cmp28.not = icmp eq i32 %and3, %2
br i1 %cmp28.not, label %if.end35, label %if.then30
%cmp28.not.not = icmp ugt i32 %2, %cond
br i1 %cmp28.not.not, label %if.then30, label %if.end35

if.then30: ; preds = %if.end24
%call = tail call i32 @lj_ir_kint(ptr noundef nonnull %J, i32 noundef %and3) #11
Expand All @@ -4054,7 +4054,7 @@ if.end35: ; preds = %if.end24

if.then42: ; preds = %if.end35
store i8 39, ptr %o38, align 1
%sub = sub nsw i32 0, %2
%sub = sub nsw i32 0, %and3
%and46 = and i32 %cond, %sub
%call47 = tail call i32 @lj_ir_kint(ptr noundef nonnull %J, i32 noundef %and46) #11
%conv48 = trunc i32 %call47 to i16
Expand Down Expand Up @@ -5984,7 +5984,7 @@ if.end.i: ; preds = %lor.lhs.false45.i,
br i1 %or.cond.i, label %if.then64.i, label %return

if.then64.i: ; preds = %if.end.i
%add.i = add i8 %17, -12
%add.i = add nsw i8 %17, -12
store i8 %add.i, ptr %t.i, align 4
br label %return

Expand Down Expand Up @@ -6122,7 +6122,7 @@ if.end.i: ; preds = %lor.lhs.false45.i,
br i1 %or.cond.i, label %if.then64.i, label %return

if.then64.i: ; preds = %if.end.i
%add.i = add i8 %6, -12
%add.i = add nsw i8 %6, -12
store i8 %add.i, ptr %t.i, align 4
br label %return

Expand Down
5 changes: 2 additions & 3 deletions bench/qemu/optimized/hw_nvme_ctrl.c.ll
Original file line number Diff line number Diff line change
Expand Up @@ -3689,9 +3689,8 @@ if.end: ; preds = %entry
%spec.select = select i1 %tobool.not, i32 31, i32 63
%1 = load i8, ptr %value, align 1
%conv7 = zext i8 %1 to i32
%and9 = and i32 %spec.select, %conv7
%cmp.not = icmp eq i32 %and9, %conv7
br i1 %cmp.not, label %if.end16, label %if.then12
%cmp.not.not = icmp ult i32 %spec.select, %conv7
br i1 %cmp.not.not, label %if.then12, label %if.end16

if.then12: ; preds = %if.end
%not = xor i32 %spec.select, -1
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup_pre_commit_patch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -euo pipefail
shopt -s inherit_errexit

export GITHUB_PATCH_ID="<user_name>/llvm-project/commit/<commit_hash>"
export GITHUB_PATCH_ID="llvm/llvm-project/pull/81562"

# Please rebase manually
# git fetch origin
Expand Down