File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
branches/try/src/rustc/lib Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5
- refs/heads/try: 597d9b4dd00704bee4ec816fe663cb1b193e1812
5
+ refs/heads/try: 3c166937608789d3a1ad3d89a8577b9a178c9595
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
Original file line number Diff line number Diff line change @@ -766,9 +766,16 @@ native mod llvm {
766
766
fn LLVMAddTargetData ( TD : TargetDataRef , PM : PassManagerRef ) ;
767
767
/** Returns the size of a type. FIXME: rv is actually a C_Ulonglong! */
768
768
fn LLVMStoreSizeOfType ( TD : TargetDataRef , Ty : TypeRef ) -> c_uint ;
769
- /** Returns the alignment of a type. */
769
+ /** Returns the preferred alignment of a type. */
770
770
fn LLVMPreferredAlignmentOfType ( TD : TargetDataRef ,
771
771
Ty : TypeRef ) -> c_uint ;
772
+ /** Returns the minimum alignment of a type. */
773
+ fn LLVMABIAlignmentOfType ( TD : TargetDataRef ,
774
+ Ty : TypeRef ) -> c_uint ;
775
+ /** Returns the minimum alignment of a type when part of a call frame. */
776
+ fn LLVMCallFrameAlignmentOfType ( TD : TargetDataRef ,
777
+ Ty : TypeRef ) -> c_uint ;
778
+
772
779
/** Disposes target data. */
773
780
fn LLVMDisposeTargetData ( TD : TargetDataRef ) ;
774
781
You can’t perform that action at this time.
0 commit comments