comparison src/share/vm/oops/methodOop.cpp @ 2233:15d6977f04b0

7017824: Add support for creating 64-bit Visual Studio projects Summary: Updated create.bat and ProjectCreator Reviewed-by: brutisso, stefank, ohair
author sla
date Thu, 10 Feb 2011 13:03:22 +0100
parents 3582bf76420e
children f77b3ec064b0
comparison
equal deleted inserted replaced
2205:b83527d0482d 2233:15d6977f04b0
1370 write_signed_int(bci_delta); 1370 write_signed_int(bci_delta);
1371 write_signed_int(line_delta); 1371 write_signed_int(line_delta);
1372 } 1372 }
1373 1373
1374 // See comment in methodOop.hpp which explains why this exists. 1374 // See comment in methodOop.hpp which explains why this exists.
1375 #if defined(_M_AMD64) && MSC_VER >= 1400 1375 #if defined(_M_AMD64) && _MSC_VER >= 1400
1376 #pragma optimize("", off) 1376 #pragma optimize("", off)
1377 void CompressedLineNumberWriteStream::write_pair(int bci, int line) { 1377 void CompressedLineNumberWriteStream::write_pair(int bci, int line) {
1378 write_pair_inline(bci, line); 1378 write_pair_inline(bci, line);
1379 } 1379 }
1380 #pragma optimize("", on) 1380 #pragma optimize("", on)