1*9880d681SAndroid Build Coastguard Worker; RUN: not llc -march=x86 -no-integrated-as < %s 2>&1 | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker 3*9880d681SAndroid Build Coastguard Worker@x = global i32 0, align 4 4*9880d681SAndroid Build Coastguard Worker 5*9880d681SAndroid Build Coastguard Worker;CHECK: error: invalid operand for inline asm constraint 'n' 6*9880d681SAndroid Build Coastguard Workerdefine void @foo() { 7*9880d681SAndroid Build Coastguard Worker %a = getelementptr i32, i32* @x, i32 1 8*9880d681SAndroid Build Coastguard Worker call void asm sideeffect "foo $0", "n"(i32* %a) nounwind 9*9880d681SAndroid Build Coastguard Worker ret void 10*9880d681SAndroid Build Coastguard Worker} 11