[libc] Deprecate LLVM_ENABLE_PROJECTS in favor of LLVM_ENABLE_RUNTIMES. (#117265)
[llvm-project.git] / llvm / test / Assembler / invalid-uselistorder-indexes-ordered.ll
blob59d6ab152455a74f27c770565814d13aa4737cee
1 ; RUN: not llvm-as < %s -disable-output 2>&1 | FileCheck %s
2 ; CHECK: error: expected uselistorder indexes to change the order
3 @global = global i32 0
4 @alias1 = alias i32, ptr @global
5 @alias2 = alias i32, ptr @global
6 @alias3 = alias i32, ptr @global
7 uselistorder ptr @global, { 0, 1, 2 }