aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/CBackend/CBackend.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-16 12:21:19 +0000
committerChris Lattner <sabre@nondot.org>2003-06-16 12:21:19 +0000
commitda92090f0eafaf4fa0b96fb6c9ed6ff32ab9fcdf (patch)
treeae28ad737f080ea833cfef9c714d60c95a88e98d /lib/Target/CBackend/CBackend.cpp
parent1989d34b3b6a1fe5a771d2297b2af07e3d8d0d71 (diff)
Fix typeo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6704 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CBackend/CBackend.cpp')
-rw-r--r--lib/Target/CBackend/CBackend.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp
index 9915b5951d..0b7ad64d23 100644
--- a/lib/Target/CBackend/CBackend.cpp
+++ b/lib/Target/CBackend/CBackend.cpp
@@ -303,8 +303,8 @@ void CWriter::printConstantArray(ConstantArray *CPA) {
// Print it out literally if it is a printable character. The only thing
// to be careful about is when the last letter output was a hex escape
// code, in which case we have to be careful not to print out hex digits
- // explicitly (the C compiler things it is a continuation of the previous
- // character, arg...)
+ // explicitly (the C compiler thinks it is a continuation of the previous
+ // character, sheesh...)
//
if (isprint(C) && (!LastWasHex || !isxdigit(C))) {
LastWasHex = false;