Skip to content

Commit 83dfa57

Browse files
generatedunixname537391475639613meta-codesync[bot]
authored andcommitted
Fix CQS signal clang-diagnostic-shadow in fbcode/cinderx/Jit
Reviewed By: brittanyrey Differential Revision: D86400714 fbshipit-source-id: a792b5e44b0a378bb3896823e8046d7478d04c37
1 parent cf19019 commit 83dfa57

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cinderx/Jit/frame.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -879,9 +879,9 @@ UnitState getUnitState(_PyInterpreterFrame* frame) {
879879
JIT_LOG("No debug info for addr {:x}", ip);
880880
logUnitFrames();
881881
JIT_DABORT("No debug info for addr {:x}", ip);
882-
for (_PyInterpreterFrame* frame : unit_frames) {
882+
for (_PyInterpreterFrame* unit_frame : unit_frames) {
883883
unit_state.emplace_back(
884-
frame, CodeObjLoc{_PyFrame_GetCode(frame), BCOffset{-1}});
884+
unit_frame, CodeObjLoc{_PyFrame_GetCode(unit_frame), BCOffset{-1}});
885885
}
886886
}
887887

0 commit comments

Comments
 (0)