view test/CodeGen/X86/sret-implicit.ll @ 83:60c9769439b8 LLVM3.7

LLVM 3.7
author Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
date Wed, 18 Feb 2015 14:55:36 +0900
parents
children afa8332a0e37
line wrap: on
line source

; RUN: llc -mtriple=x86_64-apple-darwin8 < %s | FileCheck %s
; RUN: llc -mtriple=x86_64-pc-linux < %s | FileCheck %s

; CHECK-LABEL: return32
; CHECK-DAG: movq	$0, (%rdi)
; CHECK-DAG: movq	%rdi, %rax
; CHECK: retq
define i256 @return32() {
  ret i256 0
}