aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Utils/BasicBlockUtils.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-03-03 02:55:14 +0000
committerDan Gohman <gohman@apple.com>2009-03-03 02:55:14 +0000
commit8387bb3116c16ebf4fd05c5aaa770e3eb243fc61 (patch)
treed6604c4df67bec3936ed3c7a3b92a312f42ea7a8 /lib/Transforms/Utils/BasicBlockUtils.cpp
parent2bf6a6b6881a785c1d164f223f019e4f38c2bc0b (diff)
downloadexternal_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/Transforms/Utils/BasicBlockUtils.cpp')
-rw-r--r--lib/Transforms/Utils/BasicBlockUtils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Utils/BasicBlockUtils.cpp b/lib/Transforms/Utils/BasicBlockUtils.cpp
index 875de55..5f9a8b5 100644
--- a/lib/Transforms/Utils/BasicBlockUtils.cpp
+++ b/lib/Transforms/Utils/BasicBlockUtils.cpp
@@ -425,9 +425,9 @@ BasicBlock *llvm::SplitBlockPredecessors(BasicBlock *BB,
/// AreEquivalentAddressValues - Test if A and B will obviously have the same
/// value. This includes recognizing that %t0 and %t1 will have the same
/// value in code like this:
-/// %t0 = getelementptr @a, 0, 3
+/// %t0 = getelementptr \@a, 0, 3
/// store i32 0, i32* %t0
-/// %t1 = getelementptr @a, 0, 3
+/// %t1 = getelementptr \@a, 0, 3
/// %t2 = load i32* %t1
///
static bool AreEquivalentAddressValues(const Value *A, const Value *B) {