mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-01 12:43:47 +00:00
[libclang] Use same USR encoding for 'char' regardless of what the target considers the sign to be.
Should fix the clang-hexagon-elf bot. llvm-svn: 223642
This commit is contained in:
parent
68e04b8613
commit
56af7e6ab4
@ -560,7 +560,6 @@ void USRGenerator::VisitType(QualType T) {
|
||||
c = 'v'; break;
|
||||
case BuiltinType::Bool:
|
||||
c = 'b'; break;
|
||||
case BuiltinType::Char_U:
|
||||
case BuiltinType::UChar:
|
||||
c = 'c'; break;
|
||||
case BuiltinType::Char16:
|
||||
@ -577,6 +576,7 @@ void USRGenerator::VisitType(QualType T) {
|
||||
c = 'k'; break;
|
||||
case BuiltinType::UInt128:
|
||||
c = 'j'; break;
|
||||
case BuiltinType::Char_U:
|
||||
case BuiltinType::Char_S:
|
||||
c = 'C'; break;
|
||||
case BuiltinType::SChar:
|
||||
|
Loading…
x
Reference in New Issue
Block a user