]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix comment and whitespace.
authorRaymond Hettinger <python@rcn.com>
Sun, 16 Mar 2003 15:41:11 +0000 (15:41 +0000)
committerRaymond Hettinger <python@rcn.com>
Sun, 16 Mar 2003 15:41:11 +0000 (15:41 +0000)
Python/ceval.c

index 384bfbe48ed0c617ab330020e448fe6914bbb2df..38edb73bd0658724cbf04629d0c3a6efcd6366a0 100644 (file)
@@ -609,7 +609,7 @@ eval_frame(PyFrameObject *f)
        followed by a POP_TOP.
 
        Verifying the prediction costs a single high-speed test of register
-       variable against a constant.  If the pairing was good, then the odds
+       variable against a constant.  If the pairing was good, then the
        processor has a high likelihood of making its own successful branch
        prediction which results in a nearly zero overhead transition to the
        next opcode.
@@ -618,9 +618,10 @@ eval_frame(PyFrameObject *f)
        its two unpredictable branches, the HASARG test and the switch-case.
 */
 
-#define PREDICT(op)    if (*next_instr == op) goto PRED_##op
+#define PREDICT(op)            if (*next_instr == op) goto PRED_##op
 #define PREDICTED(op)          PRED_##op: next_instr++
-#define PREDICTED_WITH_ARG(op) PRED_##op: oparg = (next_instr += 3, (next_instr[-1]<<8) + next_instr[-2])
+#define PREDICTED_WITH_ARG(op) PRED_##op: oparg = (next_instr += 3, \
+                               (next_instr[-1]<<8) + next_instr[-2])
 
 /* Stack manipulation macros */