|
Hi Jc,
+1 LGTM. One question: Would it be convenient at the same time to fix missing spaces around commas and comparisons in loops and conditions. One more case is function call arguments but I did not see any instances of it. Some examples: http://cr.openjdk.java.net/%7Ejcbeyler/8212939/webrev.00/test/hotspot/jtreg/vmTestbase/nsk/jvmti/Breakpoint/breakpoint001/breakpoint001.cpp.udiff.html - for(i=0; i<METH_NUM; i++) + for (i=0; i<METH_NUM; i++) http://cr.openjdk.java.net/%7Ejcbeyler/8212939/webrev.00/test/hotspot/jtreg/vmTestbase/nsk/jvmti/ClassLoad/classload001/classload001.cpp.udiff.html - for(i=0; i<EXP_SIG_NUM; i++) + for (i=0; i<EXP_SIG_NUM; i++) clsEvents[i] = 0; - for(i=0; i<UNEXP_SIG_NUM; i++) + for (i=0; i<UNEXP_SIG_NUM; i++) http://cr.openjdk.java.net/%7Ejcbeyler/8212939/webrev.00/test/hotspot/jtreg/vmTestbase/nsk/stress/jni/libjnistress004.cpp.udiff.html There are many cases like below: - for(i=0;i<DIGESTLENGTH;i++) { + for (i=0;i<DIGESTLENGTH;i++) {. . . - for(i=0;i<len;i++) - if(ch[i]!=tmp[i]) { + for (i=0;i<len;i++) + if (ch[i]!=tmp[i]) { Thanks, Serguei On 11/7/18 12:23, Chris Plummer wrote: Hi JC. |
- Re: RFR (M) 212939: Add space after if/while/fo... Chris Plummer
- Re: RFR (M) 212939: Add space after if/whi... [email protected]
