brintos

brintos / llvm-project-archived public Read only

0
0
Text · 428 B · b686be5 Raw
14 lines · plain
1; RUN: not llc -mtriple i386-apple-- -o /dev/null < %s 2>&1| FileCheck %s2; CHECK: <inline asm>:1:13: error: IP-relative addressing requires 64-bit mode3; CHECK-NEXT: jmpl *_foo(%eip)4 5; Make sure that we emit an error if we encounter IP-relative instructions in6; 32-bit mode.7 8define i32 @foo() { ret i32 0 }9 10define i32 @bar() {11  call void asm sideeffect "jmpl *_foo(%eip)\0A", "~{dirflag},~{fpsr},~{flags}"()12  ret i32 013}14