Mercurial > hg > CbC > CbC_llvm
annotate lld/test/ELF/ppc64-abi-version.s @ 192:d7606dcf6fce
Added tag llvm10 for changeset 0572611fdcc8
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 14 Dec 2020 18:01:34 +0900 |
parents | 1d019706d866 |
children |
rev | line source |
---|---|
150 | 1 # REQUIRES: ppc |
2 | |
3 # RUN: echo '.abiversion 1' | llvm-mc -filetype=obj -triple=powerpc64le-unknown-linux - -o %t1.o | |
4 # RUN: not ld.lld -o /dev/null %t1.o 2>&1 | FileCheck -check-prefix=ERR1 %s | |
5 | |
6 # ERR1: ABI version 1 is not supported | |
7 | |
8 # RUN: echo '.abiversion 3' | llvm-mc -filetype=obj -triple=powerpc64le-unknown-linux - -o %t1.o | |
9 # RUN: not ld.lld -o /dev/null %t1.o 2>&1 | FileCheck -check-prefix=ERR2 %s | |
10 | |
11 # ERR2: unrecognized e_flags: 3 |