[LLVMbugs] [Bug 398] NEW: sbyte is inconsistent with other integer types
bugzilla-daemon at cs.uiuc.edu
bugzilla-daemon at cs.uiuc.edu
Sat Jul 3 23:49:44 PDT 2004
http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=398
Summary: sbyte is inconsistent with other integer types
Product: libraries
Version: 1.0
Platform: All
OS/Version: All
Status: NEW
Severity: trivial
Priority: P2
Component: LLVM assembly language parser
AssignedTo: unassignedbugs at nondot.org
ReportedBy: rspencer at x10sys.com
Currently, we have the following signed integer types:
sbyte
short
int
long
And the following unsigned integer types:
ubyte
ushort
uint
ulong
The inconsistency is that "sbyte" is unlike the other signed types and should
really just be "byte". Either that or the signed types should be "sshort",
"sint" and "slong".
Unfortunately, fixing this breaks the LLVM assembly language.
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
More information about the llvm-bugs
mailing list