mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 03:36:07 +00:00

Some tests are removed because the error conditions can no longer occur with opaque pointers.
8 lines
294 B
LLVM
8 lines
294 B
LLVM
; RUN: not llvm-as < %s -disable-output 2>&1 | FileCheck %s
|
|
; CHECK: error: expected distinct uselistorder indexes in range [0, size)
|
|
@global = global i32 0
|
|
@alias1 = alias i32, ptr @global
|
|
@alias2 = alias i32, ptr @global
|
|
@alias3 = alias i32, ptr @global
|
|
uselistorder ptr @global, { 0, 3, 1 }
|