summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2009-07-29 16:48:32 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2009-07-29 16:48:32 +0000
commit4baffeb6be3a224f7adadbee17512ded22610fd0 (patch)
treefa1b3d3f0e1b998ba91f6a0be9974379dbff89d6 /unittests
parent9004e8d412acd991cb754cd52f10401079696633 (diff)
downloadllvm-4baffeb6be3a224f7adadbee17512ded22610fd0.tar.gz
llvm-4baffeb6be3a224f7adadbee17512ded22610fd0.tar.bz2
llvm-4baffeb6be3a224f7adadbee17512ded22610fd0.tar.xz
fix unittest on platforms with unsigned chars (e.g. linux-ppc)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77471 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/ADT/TwineTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/ADT/TwineTest.cpp b/unittests/ADT/TwineTest.cpp
index dae5fa02a1..2f87476950 100644
--- a/unittests/ADT/TwineTest.cpp
+++ b/unittests/ADT/TwineTest.cpp
@@ -36,7 +36,7 @@ TEST(TwineTest, Numbers) {
EXPECT_EQ("123", Twine::utostr(123).str());
EXPECT_EQ("-123", Twine::itostr(-123).str());
EXPECT_EQ("123", Twine::utostr((char) 123).str());
- EXPECT_EQ("-123", Twine::itostr((char) -123).str());
+ EXPECT_EQ("-123", Twine::itostr((signed char) -123).str());
EXPECT_EQ("7B", Twine::utohexstr(123).str());
EXPECT_EQ("FFFFFFFFFFFFFF85", Twine::itohexstr(-123).str());