commit | 5aa592a2f8be307533d287fe1722036399a652d7 | [log] [tgz] |
---|---|---|
author | Nick Lewycky <nicholas@mxc.ca> | Sun Mar 15 06:39:52 2009 +0000 |
committer | Nick Lewycky <nicholas@mxc.ca> | Sun Mar 15 06:39:52 2009 +0000 |
tree | df437e8e381158f7c3424e294e36ae467911bac0 | |
parent | 64895a07032f88217782053c573cfc416129820f [diff] [blame] |
Remove obviously redundant call. llvm-svn: 67023
diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp index c1cc7ba..b9ed8af 100644 --- a/llvm/lib/VMCore/AsmWriter.cpp +++ b/llvm/lib/VMCore/AsmWriter.cpp
@@ -66,7 +66,7 @@ raw_ostream &Out) { for (unsigned i = 0; i != Length; ++i) { unsigned char C = Str[i]; - if (isprint(C) && C != '\\' && C != '"' && isprint(C)) + if (isprint(C) && C != '\\' && C != '"') Out << C; else Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);