[ARC] Make char unsigned by default

Summary: This patch specifies 'char' default sign on ARC.

Reviewers: tatyana-krasnukha, clayborg

Reviewed By: tatyana-krasnukha, clayborg

Subscribers: clayborg, lldb-commits

Differential Revision: https://reviews.llvm.org/D51594

llvm-svn: 341667
This commit is contained in:
Alexander Polyakov 2018-09-07 14:45:32 +00:00
parent e32ff4b28a
commit 469304e8fb
1 changed files with 1 additions and 0 deletions

View File

@ -815,6 +815,7 @@ bool ArchSpec::CharIsSignedByDefault() const {
case llvm::Triple::ppc64le:
case llvm::Triple::systemz:
case llvm::Triple::xcore:
case llvm::Triple::arc:
return false;
}
}