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