mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
b1184c5419
It had accidently accepted a symbol+offset value (and emitted incorrect code for it, keeping only the offset part) instead of properly reporting the constraint as invalid. Differential Revision: http://reviews.llvm.org/D11039 llvm-svn: 242040
11 lines
293 B
LLVM
11 lines
293 B
LLVM
; RUN: not llc -march=x86 -no-integrated-as < %s 2>&1 | FileCheck %s
|
|
|
|
@x = global i32 0, align 4
|
|
|
|
;CHECK: error: invalid operand for inline asm constraint 'n'
|
|
define void @foo() {
|
|
%a = getelementptr i32, i32* @x, i32 1
|
|
call void asm sideeffect "foo $0", "n"(i32* %a) nounwind
|
|
ret void
|
|
}
|