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] replace 'bitfield' with 'bit-field' for consistency (#117881)
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
type-cache.cpp
blob
191b769ff8f529f08aa8ea7a215c668fb0a67716
1
// RUN: %clang_cc1 -emit-llvm %s -o - -triple i386-pc-windows-msvc19.16.0 | FileCheck %s
2
// REQUIRES: asserts, x86-registered-target
3
4
// CHECK: call ptr @"?f@@YA?AUz@@XZ"()
5
6
struct
z
{
7
z
(*
p
)();
8
};
9
10
z
f
();
11
12
void
g
() {
13
f
();
14
}