Skip to content

Commit 2e1fee6

Browse files
wooster0sdogruyol
authored andcommittedApr 12, 2018
Remove wrong "Based on " links (#5851)
* Fix wrong link in x86.cr * Update x86.cr * link deleted * link deleted * link deleted
1 parent fedb6dd commit 2e1fee6

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed
 

Diff for: ‎src/llvm/abi.cr

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# Based on https://github.com/rust-lang/rust/blob/master/src/librustc_trans/trans/cabi.rs
21
abstract class LLVM::ABI
32
getter target_data : TargetData
43
getter? osx : Bool

Diff for: ‎src/llvm/abi/x86.cr

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
require "../abi"
22

3-
# Based on https://github.com/rust-lang/rust/blob/master/src/librustc_trans/trans/cabi_x86.rs
43
class LLVM::ABI::X86 < LLVM::ABI
54
def abi_info(atys : Array(Type), rty : Type, ret_def : Bool, context : Context)
65
ret_ty = compute_return_type(rty, ret_def, context)

Diff for: ‎src/llvm/abi/x86_64.cr

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
require "../abi"
22

3-
# Based on https://github.com/rust-lang/rust/blob/master/src/librustc_trans/trans/cabi_x86_64.rs
43
class LLVM::ABI::X86_64 < LLVM::ABI
54
def abi_info(atys : Array(Type), rty : Type, ret_def : Bool, context : Context)
65
arg_tys = Array(LLVM::Type).new(atys.size)

0 commit comments

Comments
 (0)
Please sign in to comment.