27 lines · plain
1; RUN: llc < %s -relocation-model=static -no-integrated-as | FileCheck %s2; PR8823 4target datalayout = "e-p:32:32"5target triple = "i686-apple-darwin9.0.0d2"6@GV = weak global i32 0 ; <ptr> [#uses=2]7@str = external global [12 x i8] ; <ptr> [#uses=1]8 9define void @foo() {10; CHECK-LABEL: foo:11; CHECK-NOT: ret12; CHECK: test1 $_GV13; CHECK-NOT: ret14; CHECK: test2 _GV15; CHECK: ret16 17 tail call void asm sideeffect "test1 $0", "i,~{dirflag},~{fpsr},~{flags}"( ptr @GV )18 tail call void asm sideeffect "test2 ${0:c}", "i,~{dirflag},~{fpsr},~{flags}"( ptr @GV )19 ret void20}21 22define void @unknown_bootoption() {23entry:24 call void asm sideeffect "ud2\0A\09.word ${0:c}\0A\09.long ${1:c}\0A", "i,i,~{dirflag},~{fpsr},~{flags}"( i32 235, ptr @str )25 ret void26}27