mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 20:15:49 -04:00

It is not needed after LLVM r327734. Now it will be easier to copy-paste IR symbol names from Clang. llvm-svn: 327738
14 lines
419 B
C
14 lines
419 B
C
// RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-pc-win32 | FileCheck %s
|
|
|
|
// CHECK: define dso_local void @"?f@@$$J0YAXP6AX@Z@Z"
|
|
__attribute__((overloadable)) void f(void (*x)()) {}
|
|
|
|
// CHECK: define dso_local void @f
|
|
void f(void (*x)(int)) {}
|
|
|
|
// CHECK: define dso_local void @g
|
|
void g(void (*x)(int)) {}
|
|
|
|
// CHECK: define dso_local void @"?g@@$$J0YAXP6AX@Z@Z"
|
|
__attribute__((overloadable)) void g(void (*x)()) {}
|