diff src/share/vm/graal/graalCompilerToVM.cpp @ 8269:985a97ba083c

Fix spacing.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 12 Mar 2013 11:02:07 +0100
parents b89a97928e72
children 37977d1dcedc
line wrap: on
line diff
--- a/src/share/vm/graal/graalCompilerToVM.cpp	Mon Mar 11 23:30:03 2013 +0100
+++ b/src/share/vm/graal/graalCompilerToVM.cpp	Tue Mar 12 11:02:07 2013 +0100
@@ -85,7 +85,7 @@
       memcpy(reconstituted_code, (jbyte *) method->code_base(), code_size);
     }
     BytecodeStream s(method);
-    while(!s.is_last_bytecode()) {
+    while (!s.is_last_bytecode()) {
       s.next();
       Bytecodes::Code opcode = s.raw_code();
       if (!Bytecodes::is_java_code(opcode)) {
@@ -962,7 +962,7 @@
 // XXX: Attention: it seEms that the line number table of a method just contains lines that are important, means that
 // empty lines are left out or lines that can't have a breakpoint on it; eg int a; or try {
   Method* method = getMethodFromHotSpotMethod(JNIHandles::resolve(hotspot_method));
-  if(!method->has_linenumber_table()) {
+  if (!method->has_linenumber_table()) {
     return NULL;
   }
   u2 num_entries = 0;
@@ -991,7 +991,7 @@
   ResourceMark rm;
 
   Method* method = getMethodFromHotSpotMethod(JNIHandles::resolve(hotspot_method));
-  if(!method->has_localvariable_table()) {
+  if (!method->has_localvariable_table()) {
     return NULL;
   }
   int localvariable_table_length = method->localvariable_table_length();