This is an unofficial snapshot of the ISO/IEC JTC1 SC22 WG21 Core Issues List revision 117a. See http://www.open-std.org/jtc1/sc22/wg21/ for the official list.

2025-04-13


1949. “sequenced after” instead of “sequenced before”

Section: 6.9.1  [intro.execution]     Status: CD4     Submitter: Richard Smith     Date: 2014-06-18

[Moved to DR at the October, 2015 meeting.]

The term “sequenced after” is used in both the core and library clauses instead of the more-correct “sequenced before.”

Proposed resolution (May, 2015):

  1. Change 6.9.1 [intro.execution] paragraph 13 as follows:

  2. Sequenced before is an asymmetric, transitive, pair-wise relation between evaluations executed by a single thread (6.9.2 [intro.multithread]), which induces a partial order among those evaluations. Given any two evaluations A and B, if A is sequenced before B , then the execution of A shall precede the execution of B. If A is not sequenced before B...
  3. Change 6.9.2 [intro.multithread] paragraph 14 as follows:

  4. An evaluation A happens before an evaluation B if:...
  5. Change 6.9.1 [intro.execution] paragraph 15 as follows:

  6. ...Every evaluation in the calling function (including other function calls) that is not otherwise specifically sequenced before or after the execution of the body of the called function is indeterminately sequenced with respect to the execution of the called function .9 Several contexts...
  7. Change 6.9.3.2 [basic.start.static] paragraph 4 as follows:

  8. It is implementation-defined whether the dynamic initialization of a non-local variable with static storage duration is done before the first statement of main. If the initialization is deferred to some point in time after the first statement of main, it shall occur before the first odr-use (6.3 [basic.def.odr]) of any function or variable...
  9. Change 6.9.3.2 [basic.start.static] paragraph 5 as follows:

  10. It is implementation-defined whether the dynamic initialization of a non-local variable with static or thread storage duration is done before the first statement of the initial function of the thread. If the initialization is deferred to some point in time after the first statement of the initial function of the thread, it shall occur before the first odr-use (6.3 [basic.def.odr]) of any variable with thread storage duration defined in the same translation unit as the variable to be initialized.
  11. Change 8.6.4 [stmt.for] paragraph 1 as follows:

  12. ...[Note: Thus the first statement specifies initialization for the loop; the condition (8.5 [stmt.select]) specifies a test, made before each iteration, such that the loop is exited when the condition becomes false; the expression often specifies incrementing that is done after each iteration. —end note]
  13. Add the following as a new paragraph at the end of Clause 14 [except]: