1 ;; Check that we accept functions with '$' in the name.
2 ; RUN: llc -mtriple=x86_64 < %s | FileCheck %s
4 ;; Check that we accept .Ldsolocal$local: below the function label.
5 ; RUN: llc -mtriple=x86_64 -relocation-model=pic < %s | FileCheck %s --check-prefix=PIC
7 ;; Check that we accept .seh_proc below the function label.
8 ; RUN: llc -mtriple=x86_64-windows -relocation-model=pic < %s | FileCheck %s --check-prefix=WIN
10 @gv0 = dso_local global i32 0, align 4
11 @gv1 = dso_preemptable global i32 0, align 4
13 define hidden i32 @"_Z54bar$ompvariant$bar"() {
18 define dso_local i32 @dsolocal() {
28 %a = load i32, i32* @gv0
29 %b = load i32, i32* @gv1
34 declare i32 @pers(...)
36 define i32 @eh() personality ptr @pers {