Home | History | Annotate | Download | only in BranchFolding
      1 ; RUN: opt < %s -std-compile-opts -o - | llc -o - | grep bork_directive | wc -l | grep 2
      2 
      3 ;; We don't want branch folding to fold asm directives.
      4 
      5 define void @bork(i32 %param) {
      6 entry:
      7 	%tmp = icmp eq i32 %param, 0
      8         br i1 %tmp, label %cond_true, label %cond_false
      9 
     10 cond_true:   
     11         call void asm sideeffect ".bork_directive /* ${0:c}:${1:c} */", "i,i,~{dirflag},~{fpsr},~{flags}"( i32 37, i32 927 )
     12         ret void
     13 
     14 cond_false:
     15 	call void asm sideeffect ".foo_directive ${0:c}:${1:c}", "i,i,~{dirflag},~{fpsr},~{flags}"( i32 37, i32 927 )
     16         call void asm sideeffect ".bork_directive /* ${0:c}:${1:c} */", "i,i,~{dirflag},~{fpsr},~{flags}"( i32 37, i32 927 )
     17         ret void
     18 }
     19