8 lines
253 B
LLVM
8 lines
253 B
LLVM
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
; CHECK: 'vscale_range' minimum must be greater than 0
|
|
declare ptr @a(ptr) vscale_range(0, 1)
|
|
|
|
; CHECK: 'vscale_range' minimum cannot be greater than maximum
|
|
declare ptr @b(ptr) vscale_range(8, 1)
|