comparison src/cpu/x86/vm/sharedRuntime_x86_64.cpp @ 605:98cb887364d3

6810672: Comment typos Summary: I have collected some typos I have found while looking at the code. Reviewed-by: kvn, never
author twisti
date Fri, 27 Feb 2009 13:27:09 -0800
parents c9004fe53695
children 3db67f76d308
comparison
equal deleted inserted replaced
604:ec59443af135 605:98cb887364d3
1348 1348
1349 #ifdef ASSERT 1349 #ifdef ASSERT
1350 { 1350 {
1351 Label L; 1351 Label L;
1352 __ mov(rax, rsp); 1352 __ mov(rax, rsp);
1353 __ andptr(rax, -16); // must be 16 byte boundry (see amd64 ABI) 1353 __ andptr(rax, -16); // must be 16 byte boundary (see amd64 ABI)
1354 __ cmpptr(rax, rsp); 1354 __ cmpptr(rax, rsp);
1355 __ jcc(Assembler::equal, L); 1355 __ jcc(Assembler::equal, L);
1356 __ stop("improperly aligned stack"); 1356 __ stop("improperly aligned stack");
1357 __ bind(L); 1357 __ bind(L);
1358 } 1358 }