Sign in
llvm
/
llvm-project
/
fd3907ccb583df99e9c19d2fe84e4e7c52d75de9
/
.
/
lldb
/
test
/
API
/
lang
/
objc
/
modules-inline-functions
/
myModule.h
blob: d50d0101f64565ebf7b03a5080e4251a3b4faacc [
file
] [
log
] [
blame
]
int
notInline
();
static
__inline__ __attribute__
((
always_inline
))
int
isInline
(
int
a
)
{
int
b
=
a
+
a
;
return
b
;
}