Skip to content

Commit 93203ec

Browse files
committed
---
yaml --- r: 180205 b: refs/heads/tmp c: cfe84cb46f2069c261d8b3b5e0c490b36e1282f8 h: refs/heads/master i: 180203: 218c836 v: v3
1 parent 74850df commit 93203ec

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
3434
refs/heads/beta: 44a287e6eb22ec3c2a687fc156813577464017f7
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3636
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
37-
refs/heads/tmp: a091c5afad80d3f91f48ff827a4717d393641f70
37+
refs/heads/tmp: cfe84cb46f2069c261d8b3b5e0c490b36e1282f8

branches/tmp/src/test/run-make/issue-7349/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
all:
99
$(RUSTC) foo.rs --emit=llvm-ir
10-
[ "$$(grep -c 8675309 "$(TMPDIR)/foo.ll")" -eq "1" ]
11-
[ "$$(grep -c 11235813 "$(TMPDIR)/foo.ll")" -eq "1" ]
10+
[ "$$(grep -c 'ret i32 8675309' "$(TMPDIR)/foo.ll")" -eq "1" ]
11+
[ "$$(grep -c 'ret i32 11235813' "$(TMPDIR)/foo.ll")" -eq "1" ]

branches/tmp/src/test/run-make/issue-7349/foo.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010

1111
fn outer<T>() {
1212
#[allow(dead_code)]
13-
fn inner() -> uint {
13+
fn inner() -> u32 {
1414
8675309
1515
}
1616
}
1717

1818
extern "C" fn outer_foreign<T>() {
1919
#[allow(dead_code)]
20-
fn inner() -> uint {
20+
fn inner() -> u32 {
2121
11235813
2222
}
2323
}

0 commit comments

Comments
 (0)