comparison clang/test/PCH/pr27445.cpp @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children c4bab56944e8
comparison
equal deleted inserted replaced
147:c2174574ed3a 150:1d019706d866
1 // RUN: %clang_cc1 -triple x86_64-windows-msvc -fms-extensions -x c++ %S/Inputs/pr27445.h -emit-pch -o %t.pch
2 // RUN: %clang_cc1 -triple x86_64-windows-msvc -fms-extensions %s -include-pch %t.pch -emit-llvm -o - | FileCheck %s
3
4 class A;
5 void fn1(A &) {}
6
7 class __declspec(dllexport) A {
8 int operator=(A) { return field_; }
9 void (*on_arena_allocation_)(Info);
10 int field_;
11 };
12
13 // CHECK: %class.A = type { void (%struct.Info*)*, i32 }
14 // CHECK: %struct.Info = type { i32 (...)** }