diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-05-24 15:40:46 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-05-24 15:40:46 +0000 |
commit | 5b4e7b11e745329d8a55fd56504450dede1b2100 (patch) | |
tree | e9bc1bf93416994ab72f6c3bef097e4f35f2370e /lib/Driver/Tools.cpp | |
parent | f0b60ecc824af1e99e4288a8dcc11b22e2a6ea5e (diff) |
For non-Darwin, a plain 'char' type is unsigned.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131967 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Tools.cpp')
-rw-r--r-- | lib/Driver/Tools.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index fd59ebb4bb..b9594592d1 100644 --- a/lib/Driver/Tools.cpp +++ b/lib/Driver/Tools.cpp @@ -429,6 +429,7 @@ static bool isSignedCharDefault(const llvm::Triple &Triple) { default: return true; + case llvm::Triple::arm: case llvm::Triple::ppc: case llvm::Triple::ppc64: if (Triple.getOS() == llvm::Triple::Darwin) |