mirror of
https://github.com/intel/llvm.git
synced 2026-01-26 03:56:16 +08:00
which was reverted because included unrelative changes by mistake. Original commit message: [ELF] - Change all messages to lowercase to be consistent. That is directly opposite to http://reviews.llvm.org/D18045, which was reverted. This patch changes all messages to start from lowercase letter if they were not before. That is done to be consistent with clang. Differential revision: http://reviews.llvm.org/D18085 llvm-svn: 263337
16 lines
506 B
ArmAsm
16 lines
506 B
ArmAsm
# Shouldn't allow the GNU hash style to be selected with the MIPS target.
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux %s -o %t-be.o
|
|
# RUN: not ld.lld -shared -hash-style=gnu %t-be.o -o %t-be.so 2>&1 | FileCheck %s
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=mipsel-unknown-linux %s -o %t-el.o
|
|
# RUN: not ld.lld -shared -hash-style=gnu %t-el.o -o %t-el.so 2>&1 | FileCheck %s
|
|
|
|
# CHECK: the .gnu.hash section is not compatible with the MIPS target.
|
|
|
|
# REQUIRES: mips
|
|
|
|
.globl __start
|
|
__start:
|
|
nop
|