You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
320 B
13 lines
320 B
// RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-apple-darwin9 -std=c++98 | FileCheck %s
|
|
|
|
template <bool B> struct S3 {};
|
|
|
|
// CHECK-LABEL: define void @_Z1f2S3ILb1EE
|
|
void f(S3<true>) {}
|
|
|
|
// CHECK-LABEL: define void @_Z1f2S3ILb0EE
|
|
void f(S3<false>) {}
|
|
|
|
// CHECK-LABEL: define void @_Z2f22S3ILb1EE
|
|
void f2(S3<100>) {}
|