Commit f1774010 authored by iposva@chromium.org's avatar iposva@chromium.org

Fix unmotivated change which causes mismatch between function

declaration and definition.

Review URL: http://codereview.chromium.org/113640

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2018 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 1ac2603e
......@@ -354,7 +354,7 @@ void Assembler::GetCode(CodeDesc* desc) {
}
void Assembler::Align(intptr_t m) {
void Assembler::Align(int m) {
ASSERT(IsPowerOf2(m));
while ((pc_offset() & (m - 1)) != 0) {
nop();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment