1; RUN: llc < %s -mtriple=x86_64-apple-macosx10.14.0 -O0 | FileCheck %s 2 3define void @exit(i32 %status) 4; CHECK-LABEL: exit: 5; CHECK: ## %bb.0: 6; CHECK: ## InlineAsm Start 7; CHECK: movq $60, %rax 8; CHECK: syscall 9; CHECK: ## InlineAsm End 10; CHECK: retq 11{ 12 call void asm sideeffect inteldialect "mov rax, 60; syscall", ""() 13 ret void 14} 15