// RUN: %clang_cc1 -emit-llvm -triple i386-linux-gnu %s -o - | FileCheck %s
// RUN: %clang_cc1 -x c++ -emit-pch -triple i386-linux-gnu -o %t %s
// RUN: %clang_cc1 -include-pch %t %s -triple i386-linux-gnu -emit-llvm -o - | FileCheck %s
// expected-no-diagnostics
/// foo: declarations only
void ;
void
;
/// baz: static function declarations and a definition
static void ;
static void
;
// Definition
static void
static void ;
/// bar: external function declarations and a definition
void ;
void
;
// Definition
void
void ;
/// back to foo
void ;
/// class tests
;
void
void
/// template tests
void
void
void
;
void
void
// CHECK: define{{.*}} void @_Z3barv() #0
// CHECK: define{{.*}} void @_ZL3bazv() #1
// CHECK: define{{.*}} void @_ZN1C13public_methodEv({{.*}}) #2
// CHECK: declare{{.*}} void @_ZN1C14private_methodEv({{.*}}) #3
// CHECK: define{{.*}} void @_ZN1C13public_staticEv() #4
// CHECK: declare{{.*}} void @_ZN1C14private_staticEv() #5
// CHECK: define{{.*}} void @_Z13template_funcIfEvv() #6
// CHECK: define{{.*}} void @_Z13template_funcIiEvv() #7
// CHECK: define{{.*}} void @_ZN1SIfE6methodEv({{.*}}) #8
// CHECK: define{{.*}} void @_ZN1SIiE6methodEv({{.*}}) #9
// CHECK: declare{{.*}} void @_Z3foov() #10
// CHECK: attributes #0
// CHECK-SAME: "llvm.assume"="bar:before1,bar:before2,bar:before3,bar:def1,bar:def2"
// CHECK: attributes #1
// CHECK-SAME: "llvm.assume"="baz:before1,baz:before2,baz:before3,baz:def1,baz:def2,baz:after"
// CHECK: attributes #2
// CHECK-SAME: "llvm.assume"="C:public_method1,C:public_method2"
// CHECK: attributes #3
// CHECK-SAME: "llvm.assume"="C:private_method"
// CHECK: attributes #4
// CHECK-SAME: "llvm.assume"="C:public_static1,C:public_static2"
// CHECK: attributes #5
// CHECK-SAME: "llvm.assume"="C:private_static"
// CHECK: attributes #6
// CHECK-SAME: "llvm.assume"="template_func<T>,template_func<float>"
// CHECK: attributes #7
// CHECK-SAME: "llvm.assume"="template_func<T>"
// CHECK: attributes #8
// CHECK-SAME: "llvm.assume"="S<T>::method,S<float>::method"
// CHECK: attributes #9
// CHECK-SAME: "llvm.assume"="S<T>::method"
// CHECK: attributes #10
// CHECK-SAME: "llvm.assume"="foo:before1,foo:before2,foo:before3"