blob: a9ab6ca42370138bcb396474011b8dfe46f3d6e8 [file] [log] [blame]
Richard Smith8ef7b202012-01-18 23:55:52 +00001// RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-apple-darwin9 -std=c++98 | FileCheck %s
2
3template <bool B> struct S3 {};
4
5// CHECK: define void @_Z1f2S3ILb1EE
6void f(S3<true>) {}
7
8// CHECK: define void @_Z1f2S3ILb0EE
9void f(S3<false>) {}
10
11// CHECK: define void @_Z2f22S3ILb1EE
12void f2(S3<100>) {}