Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Assembler / alias-redefinition.ll
blob69eb9c9b4c1b273e6626b32b8ae300cdbccc6a1f
1 ; RUN: not llvm-as %s 2>&1 | FileCheck %s
3 ; CHECK: error: redefinition of global '@bar'
5 @foo = global i32 0
6 @bar = alias i32, ptr @foo
7 @bar = alias i32, ptr @foo