projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3d2ff5f
)
The inline keyword goes before the return type. This fixes a compiler warning.
author
Dan Gohman
<gohman@apple.com>
Thu, 19 Jun 2008 16:16:06 +0000
(16:16 +0000)
committer
Dan Gohman
<gohman@apple.com>
Thu, 19 Jun 2008 16:16:06 +0000
(16:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52492
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/ParameterAttributes.h
patch
|
blob
|
history
diff --git
a/include/llvm/ParameterAttributes.h
b/include/llvm/ParameterAttributes.h
index 22833629f06ebeed34fe883d45eb3df5d0d171cc..919c460337ad4eb09d83d879034b179899a3e3f5 100644
(file)
--- a/
include/llvm/ParameterAttributes.h
+++ b/
include/llvm/ParameterAttributes.h
@@
-68,7
+68,7
@@
Attributes typeIncompatible(const Type *Ty);
/// This turns an int alignment (a power of 2, normally) into the
/// form used internally in ParameterAttributes.
-
ParamAttr::Attributes inline
constructAlignmentFromInt(unsigned i) {
+
inline ParamAttr::Attributes
constructAlignmentFromInt(unsigned i) {
return (i << 16);
}