https://bugs.llvm.org/show_bug.cgi?id=32530

Nico Weber <nicolaswe...@gmx.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|CONFIRMED                   |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Nico Weber <nicolaswe...@gmx.de> ---
epastor fixed this a while ago in https://reviews.llvm.org/D71436

% cat hello_linux.s
.intel_syntax noprefix
.text
.globl _start

_start:
    mov rax, 1
    mov rdi, 1
    mov rsi, offset msg
    mov rdx, 14
    syscall

    mov rax, 60
    mov rdi, 0
    syscall

.data
msg:
    .ascii "Hello, world!\n"

% out/gn/bin/clang --target=x86_64-unknown-linux-gnu hello_linux.s -nostdlib
-fuse-ld=lld
% echo $?
0

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to