File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 1aa1f8c4b7595ced89e0a335c3ebafe3c6d5aba2
2
+ refs/heads/master: 1739200b02d0714c6caaf47d7a09cab037a40682
Original file line number Diff line number Diff line change @@ -627,7 +627,7 @@ fn T_tydesc(taskptr_type: TypeRef) -> TypeRef {
627
627
628
628
fn T_array ( t : TypeRef , n : uint ) -> TypeRef { ret llvm:: LLVMArrayType ( t, n) ; }
629
629
630
- fn T_vec ( t : TypeRef ) -> TypeRef {
630
+ fn T_evec ( t : TypeRef ) -> TypeRef {
631
631
ret T_struct ( ~[ T_int ( ) , // Refcount
632
632
T_int ( ) , // Alloc
633
633
T_int ( ) , // Fill
@@ -637,7 +637,7 @@ fn T_vec(t: TypeRef) -> TypeRef {
637
637
T_array ( t, 0 u) ] ) ;
638
638
}
639
639
640
- fn T_opaque_vec_ptr ( ) -> TypeRef { ret T_ptr ( T_vec ( T_int ( ) ) ) ; }
640
+ fn T_opaque_vec_ptr ( ) -> TypeRef { ret T_ptr ( T_evec ( T_int ( ) ) ) ; }
641
641
642
642
643
643
// Interior vector.
@@ -688,7 +688,7 @@ fn T_opaque_ivec_heap() -> TypeRef {
688
688
689
689
}
690
690
691
- fn T_str ( ) -> TypeRef { ret T_vec ( T_i8 ( ) ) ; }
691
+ fn T_str ( ) -> TypeRef { ret T_evec ( T_i8 ( ) ) ; }
692
692
693
693
fn T_box ( t : TypeRef ) -> TypeRef { ret T_struct ( ~[ T_int ( ) , t] ) ; }
694
694
You can’t perform that action at this time.
0 commit comments