This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
9781679f0f
llvm-project
/
clang
/
test
/
Index
/
Inputs
/
preamble.h
7 lines
83 B
C
Raw
Normal View
History
Unescape
Escape
When using a precompiled preamble, save the diagnostics produced when creating the preamble and "replay" them when reusing the preamble. Also, fix a thinko in the copying of the preamble when building the precompiled preamble. llvm-svn: 110061
2010-08-03 04:51:39 +08:00
inline
int
bar
(
int
i
)
{
int
*
ptr
=
0
;
float
*
ptr1
;
ptr
=
ptr1
;
return
0
;
}