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