[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / clang / test / PCH / cxx-implicit-moves.cpp
blobff6322d49d689997c1d9dc18f441727f7ded9388
1 // Test with PCH
2 // RUN: %clang_cc1 -std=c++11 -x c++-header -emit-pch -o %t %s
3 // RUN: %clang_cc1 -std=c++11 -include-pch %t -verify %s
4 // expected-no-diagnostics
6 // PR10847
7 #ifndef HEADER
8 #define HEADER
9 struct NSSize {
10 double width;
11 double height;
13 typedef struct NSSize NSSize;
15 static inline NSSize NSMakeSize(double w, double h) {
16 NSSize s = { w, h };
17 return s;
19 #else
20 float test(float v1, float v2) {
21 NSSize s = NSMakeSize(v1, v2);
22 return s.width;
24 #endif