1*f4a2713aSLionel Sambuc // REQUIRES: arm-registered-target 2*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -triple armv7-apple-darwin9 -emit-llvm -w -o - %s | FileCheck %s 3*f4a2713aSLionel Sambuc t1(void * f,int g)4*f4a2713aSLionel Sambucvoid t1 (void *f, int g) { 5*f4a2713aSLionel Sambuc // CHECK: call void asm "str $1, $0", "=*Q,r" 6*f4a2713aSLionel Sambuc asm("str %1, %0" : "=Q"(f) : "r"(g)); 7*f4a2713aSLionel Sambuc } 8