forked from OSchip/llvm-project
12 lines
318 B
ArmAsm
12 lines
318 B
ArmAsm
# Should print an expected message in case of conflict with an internally generated symbol.
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux %s -o %t.o
|
|
# RUN: not ld.lld -shared %t.o -o %t.so 2>&1 | FileCheck %s
|
|
|
|
# CHECK: duplicate symbol: _gp in {{.*}} and (internal)
|
|
|
|
# REQUIRES: mips
|
|
|
|
.globl _gp
|
|
_gp = 0
|