Files compiled with C++ for OpenCL mode can now have a distinct file extension - clcpp, then clang driver picks the compilation mode automatically (-x clcpp) without the use of -cl-std=clc++. Differential Revision: https://reviews.llvm.org/D96771
15 lines
207 B
Plaintext
15 lines
207 B
Plaintext
// RUN: %clang_cc1 %s -triple spir-unknown-unknown -pedantic -verify -fsyntax-only
|
|
// expected-no-diagnostics
|
|
|
|
// Extract from PR38614
|
|
struct C {};
|
|
|
|
C f1() {
|
|
return C{};
|
|
}
|
|
|
|
C f2(){
|
|
C c;
|
|
return c;
|
|
}
|