24 lines
		
	
	
		
			768 B
		
	
	
	
		
			LLVM
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			768 B
		
	
	
	
		
			LLVM
		
	
	
	
; RUN: opt < %s -O3 | llc -no-integrated-as | FileCheck %s
 | 
						|
; REQUIRES: default_triple
 | 
						|
 | 
						|
;; We don't want branch folding to fold asm directives.
 | 
						|
 | 
						|
; CHECK: bork_directive
 | 
						|
; CHECK: bork_directive
 | 
						|
; CHECK-NOT: bork_directive
 | 
						|
 | 
						|
define void @bork(i32 %param) {
 | 
						|
entry:
 | 
						|
	%tmp = icmp eq i32 %param, 0
 | 
						|
        br i1 %tmp, label %cond_true, label %cond_false
 | 
						|
 | 
						|
cond_true:
 | 
						|
        call void asm sideeffect ".bork_directive /* ${0:c}:${1:c} */", "i,i,~{dirflag},~{fpsr},~{flags}"( i32 37, i32 927 )
 | 
						|
        ret void
 | 
						|
 | 
						|
cond_false:
 | 
						|
	call void asm sideeffect ".foo_directive ${0:c}:${1:c}", "i,i,~{dirflag},~{fpsr},~{flags}"( i32 37, i32 927 )
 | 
						|
        call void asm sideeffect ".bork_directive /* ${0:c}:${1:c} */", "i,i,~{dirflag},~{fpsr},~{flags}"( i32 37, i32 927 )
 | 
						|
        ret void
 | 
						|
}
 |