1 ; RUN: not llc -mtriple=i686-- -no-integrated-as < %s 2>&1 | FileCheck %s
3 @x = global i32 0, align 4
5 ; CHECK: error: constraint 'n' expects an integer constant expression
7 %a = getelementptr i32, ptr @x, i32 1
8 call void asm sideeffect "foo $0", "n"(ptr %a) nounwind
12 ; CHECK: error: invalid operand for inline asm constraint 'i'
13 define void @bar(i32 %v) {
14 call void asm "", "in"(i32 %v)