Skip to content

Commit 9e3048d

Browse files
thesamesamyuxuanchen1997
authored andcommitted
[msan] Fix goo.gl link in comment for Valgrind paper
goo.gl is going away: https://developers.googleblog.com/en/google-url-shortener-links-will-no-longer-be-available/ Fix goo.gl link from: - http://goo.gl/QKbem + https://static.usenix.org/event/usenix05/tech/general/full_papers/seward/seward_html/usenix2005.html and reflow the comment a bit to make it look a bit better after the URL change, although it's not perfect now. Committed as obvious. Bug: #99586
1 parent c2a920b commit 9e3048d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
/// reads.
1212
///
1313
/// The algorithm of the tool is similar to Memcheck
14-
/// (http://goo.gl/QKbem). We associate a few shadow bits with every
15-
/// byte of the application memory, poison the shadow of the malloc-ed
16-
/// or alloca-ed memory, load the shadow bits on every memory read,
17-
/// propagate the shadow bits through some of the arithmetic
18-
/// instruction (including MOV), store the shadow bits on every memory
14+
/// (https://static.usenix.org/event/usenix05/tech/general/full_papers/seward/seward_html/usenix2005.html)
15+
/// We associate a few shadow bits with every byte of the application memory,
16+
/// poison the shadow of the malloc-ed or alloca-ed memory, load the shadow,
17+
/// bits on every memory read, propagate the shadow bits through some of the
18+
/// arithmetic instruction (including MOV), store the shadow bits on every memory
1919
/// write, report a bug on some other instructions (e.g. JMP) if the
2020
/// associated shadow is poisoned.
2121
///

0 commit comments

Comments
 (0)