aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/function-template-specialization.cpp
blob: eb099df14d0022659b29c9156dde2f19a53bce07 (plain) (blame)
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
// RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple %s -o - | FileCheck %s
template<typename T, typename U>
T* next(T* ptr, const U& diff);

template<typename T, typename U>
T* next(T* ptr, const U& diff) { 
  return ptr + diff; 
}

void test(int *iptr, float *fptr, int diff) {
  // CHECK: _Z4nextIiiEPT_S1_RKT0_
  iptr = next(iptr, diff);

  // CHECK: _Z4nextIfiEPT_S1_RKT0_
  fptr = next(fptr, diff);
}

template<typename T, typename U>
T* next(T* ptr, const U& diff);

void test2(int *iptr, double *dptr, int diff) {
  iptr = next(iptr, diff);

  // CHECK: _Z4nextIdiEPT_S1_RKT0_
  dptr = next(dptr, diff);
}