Changeset 195435 in webkit
- Timestamp:
- Jan 21, 2016, 7:36:44 PM (10 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r195434 r195435 1 2016-01-21 Filip Pizlo <fpizlo@apple.com> 2 3 Unreviewed, fix build. 4 5 * b3/B3EliminateCommonSubexpressions.cpp: 6 1 7 2016-01-21 Filip Pizlo <fpizlo@apple.com> 2 8 -
trunk/Source/JavaScriptCore/b3/B3EliminateCommonSubexpressions.cpp
r195434 r195435 217 217 Value* zext = m_proc.add<Value>( 218 218 BitAnd, m_value->origin(), match->child(0), mask); 219 fixups.append( sext);220 return sext;219 fixups.append(zext); 220 return zext; 221 221 } 222 222 return nullptr; … … 257 257 Value* zext = m_proc.add<Value>( 258 258 BitAnd, m_value->origin(), match->child(0), mask); 259 fixups.append( sext);260 return sext;259 fixups.append(zext); 260 return zext; 261 261 } 262 262 return nullptr;
Note:
See TracChangeset
for help on using the changeset viewer.