[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / Mips / constraint-empty.ll
blob849320f61a15bbadc8696799ea21177ae97afc23
1 ; Check that `getRegForInlineAsmConstraint` does not crash on empty Constraint.
2 ; RUN: llc -march=mips64 < %s | FileCheck %s
4 define void @foo() {
5 entry:
6   %s = alloca i32, align 4
7   %x = alloca i32, align 4
8   call void asm "", "=*imr,=*m,0,*m,~{$1}"(i32* elementtype(i32) %x, i32* elementtype(i32) %s, i32* %x, i32* elementtype(i32) %s)
10 ; CHECK: #APP
11 ; CHECK: #NO_APP
13   ret void