Skip to content

Commit 8e9eef1

Browse files
committed
---
yaml --- r: 218430 b: refs/heads/auto c: 2509702 h: refs/heads/master v: v3
1 parent d798b03 commit 8e9eef1

File tree

31 files changed

+641
-1310
lines changed

31 files changed

+641
-1310
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
88
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
99
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1010
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
11-
refs/heads/auto: a36411d9db6a553f69af04317fcf2ecae9ac17da
11+
refs/heads/auto: 25097023141ade95d0eedf192ac8eeacc3f67d5c
1212
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1313
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
1414
refs/tags/0.2: 1754d02027f2924bed83b0160ee340c7f41d5ea1

branches/auto/mk/rustllvm.mk

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ LLVM_EXTRA_INCDIRS_$(1)= $$(call CFG_CC_INCLUDE_$(1),$(S)src/llvm/include) \
2424
endif
2525

2626
RUSTLLVM_OBJS_CS_$(1) := $$(addprefix rustllvm/, \
27-
ExecutionEngineWrapper.cpp RustWrapper.cpp PassWrapper.cpp \
28-
ArchiveWrapper.cpp)
27+
ExecutionEngineWrapper.cpp RustWrapper.cpp PassWrapper.cpp)
2928

3029
RUSTLLVM_INCS_$(1) = $$(LLVM_EXTRA_INCDIRS_$(1)) \
3130
$$(call CFG_CC_INCLUDE_$(1),$$(LLVM_INCDIR_$(1))) \

branches/auto/src/liballoc/boxed.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ use core::raw::{TraitObject};
7171
/// The following two examples are equivalent:
7272
///
7373
/// ```
74-
/// # #![feature(box_heap)]
74+
/// #![feature(box_heap)]
7575
/// #![feature(box_syntax)]
7676
/// use std::boxed::HEAP;
7777
///
@@ -162,7 +162,7 @@ impl<T : ?Sized> Box<T> {
162162
///
163163
/// # Examples
164164
/// ```
165-
/// # #![feature(box_raw)]
165+
/// #![feature(box_raw)]
166166
/// use std::boxed;
167167
///
168168
/// let seventeen = Box::new(17u32);

branches/auto/src/liblibc/lib.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4978,8 +4978,6 @@ pub mod consts {
49784978
pub const F_GETFL : c_int = 3;
49794979
pub const F_SETFL : c_int = 4;
49804980

4981-
pub const O_ACCMODE : c_int = 3;
4982-
49834981
pub const SIGTRAP : c_int = 5;
49844982
pub const SIG_IGN: size_t = 1;
49854983

@@ -5132,7 +5130,6 @@ pub mod consts {
51325130
pub const O_DSYNC : c_int = 4194304;
51335131
pub const O_SYNC : c_int = 128;
51345132
pub const O_NONBLOCK : c_int = 4;
5135-
pub const F_GETPATH : c_int = 50;
51365133
pub const F_FULLFSYNC : c_int = 51;
51375134

51385135
pub const MAP_COPY : c_int = 0x0002;
@@ -5154,8 +5151,6 @@ pub mod consts {
51545151
pub const SO_DONTTRUNC: c_int = 0x2000;
51555152
pub const SO_WANTMORE: c_int = 0x4000;
51565153
pub const SO_WANTOOBFLAG: c_int = 0x8000;
5157-
5158-
pub const PATH_MAX: c_int = 1024;
51595154
}
51605155
pub mod sysconf {
51615156
use types::os::arch::c95::c_int;

branches/auto/src/librustc/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ pub mod diagnostics;
9999

100100
pub mod back {
101101
pub use rustc_back::abi;
102+
pub use rustc_back::archive;
102103
pub use rustc_back::arm;
103104
pub use rustc_back::mips;
104105
pub use rustc_back::mipsel;

branches/auto/src/librustc/metadata/loader.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@
212212
//! no means all of the necessary details. Take a look at the rest of
213213
//! metadata::loader or metadata::creader for all the juicy details!
214214
215+
use back::archive::METADATA_FILENAME;
215216
use back::svh::Svh;
216217
use session::Session;
217218
use session::search_paths::PathKind;
@@ -279,8 +280,6 @@ pub struct CratePaths {
279280
pub rlib: Option<PathBuf>
280281
}
281282

282-
pub const METADATA_FILENAME: &'static str = "rust.metadata.bin";
283-
284283
impl CratePaths {
285284
fn paths(&self) -> Vec<PathBuf> {
286285
match (&self.dylib, &self.rlib) {

0 commit comments

Comments
 (0)