Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 -std=c++14 %s -triple=x86_64-linux -emit-llvm -o - | FileCheck %s
      2 
      3 struct f {
      4   void operator()() const {}
      5 };
      6 
      7 template <typename T> auto vtemplate = f{};
      8 
      9 int main() { vtemplate<int>(); }
     10 
     11 // CHECK: @_Z9vtemplateIiE = linkonce_odr global %struct.f undef, comdat
     12 
     13 // CHECK: define i32 @main()
     14 // CHECK: call void @_ZNK1fclEv(%struct.f* @_Z9vtemplateIiE)
     15