Skip to content

Commit d104e5b

Browse files
committed
Up the LLVM
Fixes #36474
1 parent d1acabe commit d104e5b

File tree

3 files changed

+42
-2
lines changed

3 files changed

+42
-2
lines changed

src/rustllvm/llvm-auto-clean-trigger

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# If this file is modified, then llvm will be forcibly cleaned and then rebuilt.
22
# The actual contents of this file do not matter, but to trigger a change on the
33
# build bots then the contents should be changed so git updates the mtime.
4-
2016-08-30
4+
2016-09-17

src/test/run-pass/issue-36474.rs

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
fn main() {
12+
remove_axis(&3, 0);
13+
}
14+
15+
trait Dimension {
16+
fn slice(&self) -> &[usize];
17+
}
18+
19+
impl Dimension for () {
20+
fn slice(&self) -> &[usize] { &[] }
21+
}
22+
23+
impl Dimension for usize {
24+
fn slice(&self) -> &[usize] {
25+
unsafe {
26+
::std::slice::from_raw_parts(self, 1)
27+
}
28+
}
29+
}
30+
31+
fn remove_axis(value: &usize, axis: usize) -> () {
32+
let tup = ();
33+
let mut it = tup.slice().iter();
34+
for (i, _) in value.slice().iter().enumerate() {
35+
if i == axis {
36+
continue;
37+
}
38+
it.next();
39+
}
40+
}

0 commit comments

Comments
 (0)