From 209164e44f0bd0bbd938bf726e88d0dd29f84d55 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 18 Nov 2019 18:42:22 +0900 Subject: Renamed assembly file like as e64f71f812324d098bed12ed68c2bc1d6e780c90 --- missing/x86_64-chkstk.S | 10 ++++++++++ missing/x86_64-chkstk.s | 10 ---------- 2 files changed, 10 insertions(+), 10 deletions(-) create mode 100644 missing/x86_64-chkstk.S delete mode 100644 missing/x86_64-chkstk.s diff --git a/missing/x86_64-chkstk.S b/missing/x86_64-chkstk.S new file mode 100644 index 0000000000..6d1227b6d2 --- /dev/null +++ b/missing/x86_64-chkstk.S @@ -0,0 +1,10 @@ + .text +.globl ___chkstk +___chkstk: + pushq %rax + movq %rax, %rcx + movq %rsp, %rdx + call _ruby_alloca_chkstk + popq %rax + subq %rax, %rsp + ret diff --git a/missing/x86_64-chkstk.s b/missing/x86_64-chkstk.s deleted file mode 100644 index 6d1227b6d2..0000000000 --- a/missing/x86_64-chkstk.s +++ /dev/null @@ -1,10 +0,0 @@ - .text -.globl ___chkstk -___chkstk: - pushq %rax - movq %rax, %rcx - movq %rsp, %rdx - call _ruby_alloca_chkstk - popq %rax - subq %rax, %rsp - ret -- cgit v1.2.3