mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
87e909a8b2
A symbol being redefined as a label is something that can happen as a result of ordinary input, so it shouldn't cause a fatal error. Also adjust the error message to match the one you get when a symbol is redefined as a variable. Differential Revision: https://reviews.llvm.org/D98181
10 lines
217 B
LLVM
10 lines
217 B
LLVM
; RUN: not llc < %s -march=xcore -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
@bar = internal global i32 zeroinitializer
|
|
|
|
define void @".dp.bss"() {
|
|
ret void
|
|
}
|
|
|
|
; CHECK: <unknown>:0: error: symbol '.dp.bss' is already defined
|