Skip to content

Commit acd5d7c

Browse files
committed
---
yaml --- r: 48858 b: refs/heads/snap-stage3 c: 6f3d168 h: refs/heads/master v: v3
1 parent 5f01c19 commit acd5d7c

File tree

10 files changed

+315
-121
lines changed

10 files changed

+315
-121
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 3bbcac322669cff3abde5be937cc4ec3860f3985
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 257ef26bf11625ea8344f1251ea1877842425b64
4+
refs/heads/snap-stage3: 6f3d1686b2353f8df196aecd5bc2772f86508e41
55
refs/heads/try: 2a8fb58d79e685d5ca07b039badcf2ae3ef077ea
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/etc/x86.supp

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -451,21 +451,6 @@
451451
fun:*uv_loop_delete*
452452
}
453453

454-
{
455-
race-or-something-ask-pcwalton-0
456-
Memcheck:Value4
457-
fun:*task_start_wrapper*
458-
...
459-
}
460-
461-
{
462-
race-or-something-ask-pcwalton-1
463-
Memcheck:Value4
464-
...
465-
fun:*build_start_wrapper*
466-
...
467-
}
468-
469454
{
470455
lock_and_signal-probably-threadsafe-access-outside-of-lock
471456
Helgrind:Race

branches/snap-stage3/src/libcore/repr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ pub impl ReprVisitor {
218218

219219
fn write_escaped_slice(&self, slice: &str) {
220220
self.writer.write_char('"');
221-
for str::chars_each(slice) |ch| {
221+
for slice.each_char |ch| {
222222
self.writer.write_escaped_char(ch);
223223
}
224224
self.writer.write_char('"');

0 commit comments

Comments
 (0)