diff options
author | Dan Gohman <gohman@apple.com> | 2009-03-03 02:55:14 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-03-03 02:55:14 +0000 |
commit | 8387bb3116c16ebf4fd05c5aaa770e3eb243fc61 (patch) | |
tree | d6604c4df67bec3936ed3c7a3b92a312f42ea7a8 /lib/Target/ARM/AsmPrinter | |
parent | 2bf6a6b6881a785c1d164f223f019e4f38c2bc0b (diff) | |
download | external_llvm-8387bb3116c16ebf4fd05c5aaa770e3eb243fc61.zip external_llvm-8387bb3116c16ebf4fd05c5aaa770e3eb243fc61.tar.gz external_llvm-8387bb3116c16ebf4fd05c5aaa770e3eb243fc61.tar.bz2 |
Fix a bunch of Doxygen syntax issues. Escape special characters,
and put @file directives on their own comment line.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65920 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/AsmPrinter')
-rw-r--r-- | lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp index 2f1da52..969b8fa 100644 --- a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp +++ b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp @@ -799,7 +799,7 @@ bool ARMAsmPrinter::doInitialization(Module &M) { } /// PrintUnmangledNameSafely - Print out the printable characters in the name. -/// Don't print things like \n or \0. +/// Don't print things like \\n or \\0. static void PrintUnmangledNameSafely(const Value *V, raw_ostream &OS) { for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen(); Name != E; ++Name) |