Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge Declaration to Dominator [Not prioritized] #3

Open
K-Wu opened this issue Aug 19, 2020 · 0 comments
Open

Merge Declaration to Dominator [Not prioritized] #3

K-Wu opened this issue Aug 19, 2020 · 0 comments
Labels
enhancement New feature or request

Comments

@K-Wu
Copy link
Collaborator

K-Wu commented Aug 19, 2020

Code in python as follows

                if (len>4):
                    limit=3
                elif (len>2):
                    limit=2
                elif (len==2):
                    limit=1
                else:
                    limit=0

generates

if (len > 4)
      {
        int limit = 3;
      }
      else
      {
        if (len > 2)
        {
          limit = 2;
        }
        else
        {
          if (len == 2)
          {
            limit = 1;
          }
          else
          {
            limit = 0;
          }

        }

      }

in C. Should be

int limit 
if (len > 4)
      {
        limit = 3;
      }
      else
      {
        if (len > 2)
        {
          limit = 2;
        }
        else
        {
          if (len == 2)
          {
            limit = 1;
          }
          else
          {
            limit = 0;
          }

        }

      }

@K-Wu K-Wu added the enhancement New feature or request label Aug 19, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant