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

PROGN statements and brace blocks "{ ... }" in CUDA C #29

Open
takagi opened this issue Jul 15, 2014 · 0 comments
Open

PROGN statements and brace blocks "{ ... }" in CUDA C #29

takagi opened this issue Jul 15, 2014 · 0 comments

Comments

@takagi
Copy link
Owner

takagi commented Jul 15, 2014

Currenlty, the compiler make brace blocks { ... } when compiling following statements:

  • IF
  • LET
  • SYMBOL-MACROLET
  • DO
  • WITH-SHARED-MEMORY

On the other hand, It does not make brace blocks when compiling PROGN statement.

Should PROGN statements correspond to brace blocks in CUDA C?

If yes, what should LET statements be compiled into?

{
  int x = 0;
  return x;
}

or

{
  int x = 0;
  {
    return x;
  }
}

I want to adopt the former compiled code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant