Ticket #1923 (closed defect: wontfix)

Opened 14 years ago

Last modified 14 years ago

getting-out-assignments-from-some-if-calls

Reported by: vit_r Owned by:
Priority: trivial Milestone:
Component: mc-core Version:
Keywords: Cc:
Blocked By: Blocking:
Branch state: Votes for changeset:

Description (last modified by andrew_b) (diff)

Example

     if ((pid = fork ()) == -1) {

is replaced by

     pid = fork ();
     if (pid == -1) {

Attachments

1923-getting-out-assignments-from-some-ifs.patch (51.0 KB) - added by vit_r 14 years ago.
Getting out assignments(X = foo) from some if-calls

Change History

Changed 14 years ago by vit_r

Getting out assignments(X = foo) from some if-calls

comment:1 Changed 14 years ago by andrew_b

  • Status changed from new to closed
  • Version version not selected deleted
  • Resolution set to wontfix
  • Description modified (diff)
  • Milestone 4.7 deleted

These code modifications will be made in lowest priority simultaneity with other work.

Note: See TracTickets for help on using tickets.