Skip to content

Commit a6f77b6

Browse files
committed
---
yaml --- r: 118415 b: refs/heads/try c: 8c05798 h: refs/heads/master i: 118413: 6fb92a9 118411: 13ab66a 118407: 327b961 118399: 3243d4c v: v3
1 parent 233c613 commit a6f77b6

File tree

8 files changed

+148
-734
lines changed

8 files changed

+148
-734
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 3770c42a4959cbabc73da52abc7e3db96657974e
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: d6736a1440d42f6af967a8a20ab8d73522112b72
5-
refs/heads/try: c20aed09307d1b486c22e9b62156b02500ae1e6e
5+
refs/heads/try: 8c057984c6d9244e2542759602c65a7930dfd6f1
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ install:
1212
- sudo apt-get update -qq
1313
- sudo apt-get install -qq --force-yes -y llvm-$LLVM_VERSION
1414
llvm-${LLVM_VERSION}-dev clang-$LLVM_VERSION lldb-$LLVM_VERSION
15-
libjemalloc-dev
1615

1716

1817
# All of the llvm tools are suffixed with "-$VERS" which we don't want, so
@@ -29,7 +28,7 @@ before_script:
2928
- ln -nsf /usr/bin/llc-$LLVM_VERSION local-llvm/bin/llc
3029
- ln -nsf /usr/include/llvm-$LLVM_VERSION local-llvm/include
3130
- ./configure --disable-optimize-tests --llvm-root=`pwd`/local-llvm
32-
--enable-fast-make --enable-clang --jemalloc-root=/usr/lib
31+
--enable-fast-make --enable-clang
3332

3433
# Tidy everything up first, then build a few things, and then run a few tests.
3534
# Note that this is meant to run in a "fairly small" amount of time, so this

branches/try/src/librustc/lib/llvm.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1809,7 +1809,6 @@ pub mod llvm {
18091809
pub fn LLVMRustDestroyArchive(AR: ArchiveRef);
18101810

18111811
pub fn LLVMRustSetDLLExportStorageClass(V: ValueRef);
1812-
pub fn LLVMVersionMajor() -> c_int;
18131812
pub fn LLVMVersionMinor() -> c_int;
18141813

18151814
pub fn LLVMRustGetSectionName(SI: SectionIteratorRef,

branches/try/src/librustc/middle/trans/debuginfo.rs

Lines changed: 143 additions & 672 deletions
Large diffs are not rendered by default.

branches/try/src/libstd/rand/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ use std::rand;
6060
use std::rand::Rng;
6161
6262
let mut rng = rand::task_rng();
63-
if rng.gen() { // random bool
63+
if rng.gen() { // bool
6464
println!("int: {}, uint: {}", rng.gen::<int>(), rng.gen::<uint>())
6565
}
6666
```

branches/try/src/rustllvm/RustWrapper.cpp

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ extern "C" LLVMValueRef LLVMDIBuilderCreateStructType(
318318
unwrapDI<DIArray>(Elements),
319319
RunTimeLang,
320320
unwrapDI<DIType>(VTableHolder)
321-
#if LLVM_VERSION_MINOR >= 4
321+
#if LLVM_VERSION_MINOR >= 5
322322
,UniqueId
323323
#endif
324324
));
@@ -510,7 +510,7 @@ extern "C" LLVMValueRef LLVMDIBuilderCreateUnionType(
510510
Flags,
511511
unwrapDI<DIArray>(Elements),
512512
RunTimeLang
513-
#if LLVM_VERSION_MINOR >= 4
513+
#if LLVM_VERSION_MINOR >= 5
514514
,UniqueId
515515
#endif
516516
));
@@ -734,11 +734,6 @@ LLVMVersionMinor() {
734734
return LLVM_VERSION_MINOR;
735735
}
736736

737-
extern "C" int
738-
LLVMVersionMajor() {
739-
return LLVM_VERSION_MAJOR;
740-
}
741-
742737
// Note that the two following functions look quite similar to the
743738
// LLVMGetSectionName function. Sadly, it appears that this function only
744739
// returns a char* pointer, which isn't guaranteed to be null-terminated. The

branches/try/src/test/auxiliary/cross_crate_debuginfo_type_uniquing.rs

Lines changed: 0 additions & 26 deletions
This file was deleted.

branches/try/src/test/debuginfo/cross-crate-type-uniquing.rs

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)