Page Menu
Home
Phabricator
This is an archive of the discontinued LLVM Phabricator instance.
Paths
Table of Contents
t
-
source/Plugins/InstrumentationRuntime/ThreadSanitizer/
-
Plugins/
-
InstrumentationRuntime/
-
ThreadSanitizer/
1
ThreadSanitizerRuntime.cpp
Hide Panel
f
Keyboard Reference
?
Differential
D22984
[lldb][tsan] Avoid some string copies (NFC)
Closed
Public
Authored by
vsk
on Jul 29 2016, 5:13 PM.
Download Raw Diff
Details
Reviewers
compnerd
kubamracek
Commits
rG728b9abb3f6e: [lldb][tsan] Avoid a string copy (NFC)
rLLDB277347: [lldb][tsan] Avoid a string copy (NFC)
rL277347: [lldb][tsan] Avoid a string copy (NFC)
Diff Detail
Event Timeline
vsk
updated this revision to
Diff 66202
.
Jul 29 2016, 5:13 PM
vsk
retitled this revision from
to
[lldb][tsan] Avoid a string copy (NFC)
.
vsk
updated this object.
vsk
added a reviewer:
kubamracek
.
vsk
added a subscriber:
llvm-commits
.
compnerd
added a subscriber:
compnerd
.
Jul 29 2016, 6:32 PM
compnerd
added inline comments.
source/Plugins/InstrumentationRuntime/ThreadSanitizer/ThreadSanitizerRuntime.cpp
289
Why not make count_name a
const std::string &
as well?
vsk
updated this revision to
Diff 66208
.
Jul 29 2016, 6:38 PM
vsk
retitled this revision from
[lldb][tsan] Avoid a string copy (NFC)
to
[lldb][tsan] Avoid some string copies (NFC)
.
Comment Actions
Catch a few more copies pointed out by
@compnerd
.
compnerd
accepted this revision.
Jul 29 2016, 9:18 PM
compnerd
added a reviewer:
compnerd
.
This revision is now accepted and ready to land.
Jul 29 2016, 9:18 PM
Closed by commit
rL277347: [lldb][tsan] Avoid a string copy (NFC)
(authored by vedantk).
·
Explain Why
Aug 1 2016, 8:23 AM
This revision was automatically updated to reflect the committed changes.
Why not make count_name a const std::string & as well?