brintos

brintos / llvm-project-archived public Read only

0
0
Text · 212 B · 9c5177d Raw
8 lines · plain
1; RUN: not llc -mtriple=i686-- -no-integrated-as < %s 2>&1 | FileCheck %s2 3; CHECK: error: value out of range for constraint 'I'4define void @foo() {5  call void asm sideeffect "foo $0", "I"(i32 42)6  ret void7}8