mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Don't branch fold inline asm statements.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43191 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7f5f6851c3
commit
80629c85f1
@ -271,7 +271,8 @@ static unsigned ComputeCommonTailLength(MachineBasicBlock *MBB1,
|
||||
unsigned TailLen = 0;
|
||||
while (I1 != MBB1->begin() && I2 != MBB2->begin()) {
|
||||
--I1; --I2;
|
||||
if (!I1->isIdenticalTo(I2)) {
|
||||
if (!I1->isIdenticalTo(I2) ||
|
||||
I1->getOpcode() == TargetInstrInfo::INLINEASM) {
|
||||
++I1; ++I2;
|
||||
break;
|
||||
}
|
||||
|
@ -1,5 +1,4 @@
|
||||
// RUN: llvm-gcc -S %s -o /dev/null
|
||||
// RUN: %llvmgcc -S %s -o /dev/null
|
||||
void bork(void **data) {
|
||||
(*(unsigned short *) (&(data[37])[927]) = 0);
|
||||
}
|
||||
|
||||
|
@ -0,0 +1,18 @@
|
||||
; RUN: llvm-as < %s | opt -std-compile-opts -o - | llc -o - | grep bork_directive | wc -l | grep 2
|
||||
|
||||
;; We don't want branch folding to fold asm directives.
|
||||
|
||||
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
|
||||
}
|
Loading…
Reference in New Issue
Block a user