repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
PCH
/
uuidof.cpp
blob
baccd97ee6d8865c59d4042c0e5030e402d03675
1
// RUN: %clang_cc1 -fms-extensions -x c++-header -emit-pch -o %t %s
2
// RUN: %clang_cc1 -fms-extensions -include-pch %t %s -emit-llvm -o - | FileCheck %s
3
4
#ifndef HEADER
5
#define HEADER
6
struct
_GUID
{};
7
const
_GUID
&
x
=
__uuidof
(
0
);
8
// CHECK-DAG: @_GUID_00000000_0000_0000_0000_000000000000
9
#endif