Skip to content

Commit 703ffa7

Browse files
---
yaml --- r: 143059 b: refs/heads/try2 c: b52eb4a h: refs/heads/master i: 143057: 712be43 143055: 42cda62 v: v3
1 parent 5eb7a31 commit 703ffa7

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
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: 6aa43c77d4eaf72e673f060ed07bce7f8fc5757d
8+
refs/heads/try2: b52eb4a0ffbb5be156a0d71dc37f74c3f92e315e
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1225,8 +1225,8 @@ fn type_metadata(cx: &mut CrateContext,
12251225

12261226
debug!("type_metadata: %?", ty::get(t));
12271227

1228-
let sty = copy ty::get(t).sty;
1229-
let type_metadata = match sty {
1228+
let sty = &ty::get(t).sty;
1229+
let type_metadata = match *sty {
12301230
ty::ty_nil |
12311231
ty::ty_bot |
12321232
ty::ty_bool |

branches/try2/src/librustc/middle/ty.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3694,7 +3694,7 @@ fn struct_ctor_id(cx: ctxt, struct_did: ast::def_id) -> Option<ast::def_id> {
36943694

36953695
// Enum information
36963696
#[deriving(Clone)]
3697-
pub struct VariantInfo_ {
3697+
pub struct VariantInfo {
36983698
args: ~[t],
36993699
arg_names: Option<~[ast::ident]>,
37003700
ctor_ty: t,

branches/try2/src/rustllvm/rustllvm.def.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -608,3 +608,6 @@ LLVMDIBuilderCreateSubroutineType
608608
LLVMDIBuilderGetOrCreateArray
609609
LLVMDIBuilderInsertDeclareAtEnd
610610
LLVMDIBuilderInsertDeclareBefore
611+
LLVMDIBuilderCreateEnumerator
612+
LLVMDIBuilderCreateEnumerationType
613+
LLVMDIBuilderCreateUnionType

0 commit comments

Comments
 (0)