Mercurial > hg > Members > tobaru > cbc > CbC_llvm
view test/CodeGen/SystemZ/asm-05.ll @ 128:c347d3398279 default tip
fix
author | mir3636 |
---|---|
date | Wed, 06 Dec 2017 14:37:17 +0900 |
parents | 1172e4bd9c6f |
children |
line wrap: on
line source
; Test the "m" asm constraint, which is equivalent to "T". ; ; RUN: llc < %s -mtriple=s390x-linux-gnu -no-integrated-as | FileCheck %s define void @f1(i64 %base) { ; CHECK-LABEL: f1: ; CHECK: blah 0(%r2) ; CHECK: br %r14 %addr = inttoptr i64 %base to i64 * call void asm "blah $0", "=*m" (i64 *%addr) ret void }