annotate lld/test/MachO/duplicate-symbol.s @ 220:42394fc6a535
Added tag llvm12 for changeset 0572611fdcc8
author |
Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
date |
Tue, 15 Jun 2021 19:13:43 +0900 |
parents |
0572611fdcc8 |
children |
|
rev |
line source |
173
|
1 # REQUIRES: x86
|
|
2 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t.o
|
|
3 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t-dup.o
|
|
4 # RUN: not lld -flavor darwinnew -o /dev/null %t-dup.o %t.o 2>&1 | FileCheck %s
|
|
5
|
|
6 # CHECK: error: duplicate symbol: _main
|
|
7
|
|
8 .text
|
|
9 .global _main
|
|
10 _main:
|
|
11 mov $0, %rax
|
|
12 ret
|