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

Unsupported C features #3

Open
12 of 15 tasks
DontBelieveMe opened this issue Nov 30, 2021 · 0 comments
Open
12 of 15 tasks

Unsupported C features #3

DontBelieveMe opened this issue Nov 30, 2021 · 0 comments
Assignees
Labels
enhancement New feature or request frontend Relating to the C language frontend

Comments

@DontBelieveMe
Copy link
Owner

DontBelieveMe commented Nov 30, 2021

This is a working list of all features that are not supported:

  • ++/-- prefix/postfix operators
  • +=, -=, *=, /= binary operators
  • User defined structures
  • Global data
  • String literals (ties into "global data", since that's pretty much just what strings are)
  • Dereferencing in an assignment (e.g. *b = 10)
  • goto
  • do/while loops
  • switch statements
  • Boolean operators (&&, ||, !)
  • Bitwise operators (>>, <<, |, &, ~, <<=, >>=, |=, &=, ~=)
  • enums
  • non implicit casts
  • % modulo operator
  • sizeof
@DontBelieveMe DontBelieveMe added enhancement New feature or request frontend Relating to the C language frontend labels Nov 30, 2021
@DontBelieveMe DontBelieveMe self-assigned this Jan 7, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request frontend Relating to the C language frontend
Projects
None yet
Development

No branches or pull requests

1 participant