mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
3e787f751f
Summary: Fix failing tests that matched substrings in path. Reviewers: evgeny777, mattd, espindola, alexshap, rupprecht, jhenderson Reviewed By: jhenderson Subscribers: Bulletmagnet, emaste, arichardson, jakehehrlich, MaskRay, rupprecht, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D60170 llvm-svn: 357709
13 lines
325 B
ArmAsm
13 lines
325 B
ArmAsm
# REQUIRES: x86-registered-target
|
|
# RUN: llvm-mc --filetype=obj --triple=x86_64-pc-linux %s -o %t.o -g
|
|
# RUN: llvm-symbolizer --obj=%t.o 0 | FileCheck %s --implicit-check-not={{^}}bar{{$}}
|
|
|
|
# CHECK: foo
|
|
# CHECK-NEXT: ignore-undefined-symbols.s:12:0
|
|
|
|
.type bar,@function
|
|
.type foo,@function
|
|
.global foo
|
|
foo:
|
|
call bar
|