We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Characters are defined in the spec to be unsigned 8 bit integers.
7.2. A character is a signed 8-bit value. A character can be represented by an i8 in MLIR.
However, casting seems to simply an unsigned integer is produced.
9.2. Casting a integer to character produces unsigned integer value mod 256
Similarly, character reads from std_input also treat the bytes as unsigned.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Characters are defined in the spec to be unsigned 8 bit integers.
However, casting seems to simply an unsigned integer is produced.
Similarly, character reads from std_input also treat the bytes as unsigned.
The text was updated successfully, but these errors were encountered: