mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
3cbb196ffe
Adds blacklist parsing behaviour for filtering results into four categories: - Expected Protected: Things that are not in the blacklist and are protected. - Unexpected Protected: Things that are in the blacklist and are protected. - Expected Unprotected: Things that are in the blacklist and are unprotected. - Unexpected Unprotected: Things that are not in the blacklist and are unprotected. now can optionally be invoked with a second command line argument, which specifies the blacklist file that the binary was built with. Current statistics for chromium: Reviewers: vlad.tsyrklevich Subscribers: mgorny, llvm-commits, pcc, kcc Differential Revision: https://reviews.llvm.org/D39525 llvm-svn: 317364
6 lines
235 B
ArmAsm
6 lines
235 B
ArmAsm
# RUN: llvm-mc %S/Inputs/unprotected-nolineinfo.s -filetype obj \
|
|
# RUN: -triple x86_64-linux-elf -o %t.o
|
|
# RUN: not llvm-cfi-verify %t.o 2>&1 | FileCheck %s
|
|
|
|
# CHECK: DWARF line information missing. Did you compile with '-g'?
|