aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/mangle.c
blob: cdcce751cbdc8da40ec8762511069f91dd6849e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// RUN: clang -arch i386 -emit-llvm -o %t %s &&
// RUN: grep '@_Z2f0i' %t &&
// RUN: grep '@_Z2f0l' %t &&

// Make sure we mangle overloadable, even in C system headers.

# 1 "somesystemheader.h" 1 3 4
void __attribute__((__overloadable__)) f0(int a) {}
void __attribute__((__overloadable__)) f0(long b) {}



// These should get merged.
void foo() __asm__("bar");
void foo2() __asm__("bar");

// RUN: grep '@"\\01foo"' %t &&
// RUN: grep '@"\\01bar"' %t

int nux __asm__("foo");
extern float nux2 __asm__("foo");

int test() { 
  foo();
  foo2();
  
  return nux + nux2;
}