[llvm-commits] [llvm] r155799 - /llvm/trunk/include/llvm/CodeGen/ValueTypes.h
Craig Topper
craig.topper at gmail.com
Sun Apr 29 13:27:47 PDT 2012
Author: ctopper
Date: Sun Apr 29 15:27:47 2012
New Revision: 155799
URL: http://llvm.org/viewvc/llvm-project?rev=155799&view=rev
Log:
Remove superfluous 'inline'
Modified:
llvm/trunk/include/llvm/CodeGen/ValueTypes.h
Modified: llvm/trunk/include/llvm/CodeGen/ValueTypes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/ValueTypes.h?rev=155799&r1=155798&r2=155799&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/ValueTypes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/ValueTypes.h Sun Apr 29 15:27:47 2012
@@ -506,7 +506,7 @@
}
/// is256BitVector - Return true if this is a 256-bit vector type.
- inline bool is256BitVector() const {
+ bool is256BitVector() const {
if (!isSimple())
return isExtended256BitVector();
return (V == MVT::v8f32 || V == MVT::v4f64 || V == MVT::v32i8 ||
@@ -514,7 +514,7 @@
}
/// is512BitVector - Return true if this is a 512-bit vector type.
- inline bool is512BitVector() const {
+ bool is512BitVector() const {
return isSimple() ? (V == MVT::v8i64) : isExtended512BitVector();
}
More information about the llvm-commits
mailing list