From: Chris Lattner Date: Fri, 14 Dec 2001 16:41:18 +0000 (+0000) Subject: Make strings SByte* arrays instead of UByte * arrays X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a2644f60ce58eb2ae2317b9f3074e704980325b6;p=oota-llvm.git Make strings SByte* arrays instead of UByte * arrays git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1469 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/ConstPoolVals.cpp b/lib/VMCore/ConstPoolVals.cpp index 3814311f98a..257bd7622c9 100644 --- a/lib/VMCore/ConstPoolVals.cpp +++ b/lib/VMCore/ConstPoolVals.cpp @@ -436,12 +436,12 @@ ConstantArray *ConstantArray::get(const string &Str) { vector ElementVals; for (unsigned i = 0; i < Str.length(); ++i) - ElementVals.push_back(ConstantUInt::get(Type::UByteTy, Str[i])); + ElementVals.push_back(ConstantSInt::get(Type::SByteTy, Str[i])); // Add a null terminator to the string... - ElementVals.push_back(ConstantUInt::get(Type::UByteTy, 0)); + ElementVals.push_back(ConstantSInt::get(Type::SByteTy, 0)); - ArrayType *ATy = ArrayType::get(Type::UByteTy/*,stringConstant.length()*/); + ArrayType *ATy = ArrayType::get(Type::SByteTy, Str.length()+1); return ConstantArray::get(ATy, ElementVals); }