address-space-of-this.cl 221 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 // RUN: %clang_cc1 %s -triple spir-unknown-unknown -cl-std=clc++ -pedantic -verify -fsyntax-only // expected-no-diagnostics // Extract from PR38614 struct C {}; C f1() { return C{}; } C f2(){ C c; return c; }