debuginfo: Fixed some merge fallout
This commit is contained in:
@@ -1225,8 +1225,8 @@ fn type_metadata(cx: &mut CrateContext,
|
|||||||
|
|
||||||
debug!("type_metadata: %?", ty::get(t));
|
debug!("type_metadata: %?", ty::get(t));
|
||||||
|
|
||||||
let sty = copy ty::get(t).sty;
|
let sty = &ty::get(t).sty;
|
||||||
let type_metadata = match sty {
|
let type_metadata = match *sty {
|
||||||
ty::ty_nil |
|
ty::ty_nil |
|
||||||
ty::ty_bot |
|
ty::ty_bot |
|
||||||
ty::ty_bool |
|
ty::ty_bool |
|
||||||
|
|||||||
@@ -3694,7 +3694,7 @@ fn struct_ctor_id(cx: ctxt, struct_did: ast::def_id) -> Option<ast::def_id> {
|
|||||||
|
|
||||||
// Enum information
|
// Enum information
|
||||||
#[deriving(Clone)]
|
#[deriving(Clone)]
|
||||||
pub struct VariantInfo_ {
|
pub struct VariantInfo {
|
||||||
args: ~[t],
|
args: ~[t],
|
||||||
arg_names: Option<~[ast::ident]>,
|
arg_names: Option<~[ast::ident]>,
|
||||||
ctor_ty: t,
|
ctor_ty: t,
|
||||||
|
|||||||
@@ -608,3 +608,6 @@ LLVMDIBuilderCreateSubroutineType
|
|||||||
LLVMDIBuilderGetOrCreateArray
|
LLVMDIBuilderGetOrCreateArray
|
||||||
LLVMDIBuilderInsertDeclareAtEnd
|
LLVMDIBuilderInsertDeclareAtEnd
|
||||||
LLVMDIBuilderInsertDeclareBefore
|
LLVMDIBuilderInsertDeclareBefore
|
||||||
|
LLVMDIBuilderCreateEnumerator
|
||||||
|
LLVMDIBuilderCreateEnumerationType
|
||||||
|
LLVMDIBuilderCreateUnionType
|
||||||
|
|||||||
Reference in New Issue
Block a user