1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

Be more strict when checking existence of foo

This commit is contained in:
Juneyoung Lee 2020-03-15 12:02:19 +09:00
parent b73d82e804
commit 65f493cc03

View File

@ -3,7 +3,7 @@
# RUN: yaml2obj -o %t.out %p/Inputs/simple-executable-x86_64.yaml
# RUN: llvm-objdump -d %t.out --disassemble-symbols=main \
# RUN: | FileCheck %s --check-prefix=MAIN --implicit-check-not=foo --implicit-check-not=somedata
# RUN: | FileCheck %s --check-prefix=MAIN --implicit-check-not="<foo>:" --implicit-check-not=somedata
# RUN: llvm-objdump -d %t.out --disassemble-symbols=main,foo \
# RUN: | FileCheck %s --check-prefixes=MAIN,FOO --implicit-check-not=somedata