aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-06-14 23:30:43 +0000
committerDan Gohman <gohman@apple.com>2009-06-14 23:30:43 +0000
commit9e1657f79a7cf86a12be2c0a2b4ae4a2600266c6 (patch)
tree456afbf76527eaa49d51f3d4777dfa6df0787667 /lib/Analysis
parent27bd4cbfcc489efac9e54a015950f06b91b9a725 (diff)
downloadexternal_llvm-9e1657f79a7cf86a12be2c0a2b4ae4a2600266c6.zip
external_llvm-9e1657f79a7cf86a12be2c0a2b4ae4a2600266c6.tar.gz
external_llvm-9e1657f79a7cf86a12be2c0a2b4ae4a2600266c6.tar.bz2
Fix old-style type names in comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73362 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/DebugInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DebugInfo.cpp b/lib/Analysis/DebugInfo.cpp
index 6bdb64c..adda5ee 100644
--- a/lib/Analysis/DebugInfo.cpp
+++ b/lib/Analysis/DebugInfo.cpp
@@ -352,7 +352,7 @@ Constant *DIFactory::GetStringConstant(const std::string &String) {
const PointerType *DestTy = PointerType::getUnqual(Type::Int8Ty);
- // If empty string then use a sbyte* null instead.
+ // If empty string then use a i8* null instead.
if (String.empty())
return Slot = ConstantPointerNull::get(DestTy);