The only change from https://github.com/llvm/llvm-project/pull/83171 is the change of the allocator so the destructor is called for ConstantRangeAttributeImpl. reverts https://github.com/llvm/llvm-project/pull/84549
7 lines
183 B
LLVM
7 lines
183 B
LLVM
; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
; CHECK: the range should not represent the full or empty set!
|
|
define void @range_empty(i8 range(i8 0, 0) %a) {
|
|
ret void
|
|
}
|