Skip to content
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
8 changes: 4 additions & 4 deletions bench/abseil-cpp/optimized/crc.ll
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ define dso_local void @_ZN4absl12crc_internal7CRCImpl13FillWordTableEjjiPA256_j(
%39 = sext i32 %.04556 to i64
%40 = getelementptr inbounds i32, ptr %6, i64 %39
%41 = or disjoint i32 %.04556, 1
%42 = zext i32 %41 to i64
%42 = zext nneg i32 %41 to i64
%43 = zext i32 %38 to i64
br label %44

Expand Down Expand Up @@ -330,7 +330,7 @@ _ZN4absl12crc_internal7CRCImpl13FillWordTableEjjiPA256_j.exit.preheader: ; preds
%22 = sext i32 %.04556.i to i64
%23 = getelementptr inbounds i32, ptr %1, i64 %22
%24 = or disjoint i32 %.04556.i, 1
%25 = zext i32 %24 to i64
%25 = zext nneg i32 %24 to i64
%26 = zext i32 %21 to i64
br label %27

Expand Down Expand Up @@ -436,7 +436,7 @@ _ZN4absl12crc_internal7CRCImpl13FillWordTableEjjiPA256_j.exit62.preheader: ; pre
%67 = sext i32 %.04556.i49 to i64
%68 = getelementptr inbounds i32, ptr %34, i64 %67
%69 = or disjoint i32 %.04556.i49, 1
%70 = zext i32 %69 to i64
%70 = zext nneg i32 %69 to i64
%71 = zext i32 %66 to i64
br label %72

Expand Down Expand Up @@ -613,7 +613,7 @@ _ZN4absl12crc_internal7CRCImpl15FillZeroesTableEjPA256_j.exit: ; preds = %96
%137 = sext i32 %.04556.i77 to i64
%138 = getelementptr inbounds i32, ptr %117, i64 %137
%139 = or disjoint i32 %.04556.i77, 1
%140 = zext i32 %139 to i64
%140 = zext nneg i32 %139 to i64
%141 = zext i32 %136 to i64
br label %142

Expand Down
2 changes: 1 addition & 1 deletion bench/rocksdb/optimized/xxhash.ll
Original file line number Diff line number Diff line change
Expand Up @@ -4074,7 +4074,7 @@ define { i64, i64 } @ROCKSDB_XXH3_128bits(ptr noundef readonly captures(none) %0
%99 = xor i32 %96, -2027464037
%100 = zext i32 %99 to i64
%101 = xor i32 %98, 808198283
%102 = zext i32 %101 to i64
%102 = zext nneg i32 %101 to i64
%103 = mul i64 %100, -4417276706812531889
%104 = lshr i64 %103, 29
%105 = xor i64 %104, %103
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/157865
export COMPTIME_MODE=0

# Please rebase manually
Expand Down