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