Changeset 254500 in webkit for trunk/Source/JavaScriptCore/b3
- Timestamp:
- Jan 14, 2020, 12:40:50 AM (5 years ago)
- Location:
- trunk/Source/JavaScriptCore/b3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/b3/B3LowerToAir.cpp
r254087 r254500 2289 2289 failure = failBlock; 2290 2290 } 2291 Air::BasicBlock* strongFailBlock ;2291 Air::BasicBlock* strongFailBlock = nullptr; 2292 2292 if (isStrong && hasFence) 2293 2293 strongFailBlock = newBlock(); -
trunk/Source/JavaScriptCore/b3/testb3_4.cpp
r248098 r254500 848 848 849 849 // Figure out which slot to use while having proper alignment for the shift. 850 int* slot ;851 uintptr_t arg ;850 int* slot = nullptr; 851 uintptr_t arg = 0; 852 852 for (unsigned i = sizeof(slots)/sizeof(slots[0]); i--;) { 853 853 slot = slots + i;
Note:
See TracChangeset
for help on using the changeset viewer.