Changeset 194071 in webkit
- Timestamp:
- Dec 14, 2015, 4:11:45 PM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
ftl/FTLB3Output.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r194068 r194071 1 2015-12-14 Benjamin Poulain <bpoulain@apple.com> 2 3 Fix bad copy-paste in r194062 4 5 * ftl/FTLB3Output.h: 6 (JSC::FTL::Output::ceil64): 7 1 8 2015-12-14 Filip Pizlo <fpizlo@apple.com> 2 9 -
trunk/Source/JavaScriptCore/ftl/FTLB3Output.h
r194062 r194071 155 155 LValue bitNot(LValue); 156 156 157 LValue ceil64(LValue operand) { return m_block->appendNew<B3::Value>(m_proc, B3::Ceil, origin(), value); }157 LValue ceil64(LValue operand) { return m_block->appendNew<B3::Value>(m_proc, B3::Ceil, origin(), operand); } 158 158 LValue ctlz32(LValue operand) { return m_block->appendNew<B3::Value>(m_proc, B3::Clz, origin(), operand); } 159 159 LValue addWithOverflow32(LValue left, LValue right) { CRASH(); }
Note:
See TracChangeset
for help on using the changeset viewer.