Skip to content

Commit

Permalink
Remove wrong "Based on " links (#5851)
Browse files Browse the repository at this point in the history
* Fix wrong link in x86.cr

* Update x86.cr

* link deleted

* link deleted

* link deleted
  • Loading branch information
wooster0 authored and Serdar Dogruyol committed Apr 12, 2018
1 parent fedb6dd commit 2e1fee6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/llvm/abi.cr
@@ -1,4 +1,3 @@
# Based on https://github.com/rust-lang/rust/blob/master/src/librustc_trans/trans/cabi.rs
abstract class LLVM::ABI
getter target_data : TargetData
getter? osx : Bool
Expand Down
1 change: 0 additions & 1 deletion src/llvm/abi/x86.cr
@@ -1,6 +1,5 @@
require "../abi"

# Based on https://github.com/rust-lang/rust/blob/master/src/librustc_trans/trans/cabi_x86.rs
class LLVM::ABI::X86 < LLVM::ABI
def abi_info(atys : Array(Type), rty : Type, ret_def : Bool, context : Context)
ret_ty = compute_return_type(rty, ret_def, context)
Expand Down
1 change: 0 additions & 1 deletion src/llvm/abi/x86_64.cr
@@ -1,6 +1,5 @@
require "../abi"

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

0 comments on commit 2e1fee6

Please sign in to comment.