Files
clang-p2996/llvm/test/Assembler/invalid-uselistorder-indexes-toomany.ll
Nikita Popov 75a479221b [Assembler] Convert tests to opaque pointers (NFC)
Some tests are removed because the error conditions can no longer
occur with opaque pointers.
2022-12-13 14:36:21 +01:00

7 lines
239 B
LLVM

; RUN: not llvm-as < %s -disable-output 2>&1 | FileCheck %s
; CHECK: error: wrong number of indexes, expected 2
@global = global i32 0
@alias1 = alias i32, ptr @global
@alias2 = alias i32, ptr @global
uselistorder ptr @global, { 1, 0, 2 }