Skip to content

Commit 05ce45a

Browse files
committed
---
yaml --- r: 152482 b: refs/heads/try2 c: 8c05798 h: refs/heads/master v: v3
1 parent 88506b4 commit 05ce45a

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
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: c20aed09307d1b486c22e9b62156b02500ae1e6e
8+
refs/heads/try2: 8c057984c6d9244e2542759602c65a7930dfd6f1
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/.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/try2/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/try2/src/librustc/middle/trans/debuginfo.rs

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

branches/try2/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/try2/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/try2/src/test/auxiliary/cross_crate_debuginfo_type_uniquing.rs

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

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

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

0 commit comments

Comments
 (0)