Sign in
rust
/
rust-lang
/
llvm-project
/
35c537490f7804c0a68fcabcd20ecf96357b74ff
/
.
/
lldb
/
packages
/
Python
/
lldbsuite
/
test
/
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
;
}