diff options
author | Dan Gohman <gohman@apple.com> | 2008-05-12 16:34:30 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-05-12 16:34:30 +0000 |
commit | e9bc2ba256e664fbcc18c9174f70d97eed668bb6 (patch) | |
tree | d2268255ffe198d38ea34de9bee692a85bf66d17 /llvm/lib/VMCore/AsmWriter.cpp | |
parent | c79304461a7a1bc04d365b8085b78afc8694fc71 (diff) | |
download | bcm5719-llvm-e9bc2ba256e664fbcc18c9174f70d97eed668bb6.tar.gz bcm5719-llvm-e9bc2ba256e664fbcc18c9174f70d97eed668bb6.zip |
Update comments.
llvm-svn: 50974
Diffstat (limited to 'llvm/lib/VMCore/AsmWriter.cpp')
-rw-r--r-- | llvm/lib/VMCore/AsmWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp index 7af26d0e8a7..28e38cc0239 100644 --- a/llvm/lib/VMCore/AsmWriter.cpp +++ b/llvm/lib/VMCore/AsmWriter.cpp @@ -539,7 +539,7 @@ static void WriteConstantInt(std::ostream &Out, const Constant *CV, Out << "zeroinitializer"; } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) { // As a special case, print the array as a string if it is an array of - // ubytes or an array of sbytes with positive values. + // i8 with ConstantInt values. // const Type *ETy = CA->getType()->getElementType(); if (CA->isString()) { |