mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
Remove superfluous 'inline'
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155799 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d77d2feb7a
commit
7988981990
@ -506,7 +506,7 @@ namespace llvm {
|
||||
}
|
||||
|
||||
/// 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 @@ namespace llvm {
|
||||
}
|
||||
|
||||
/// is512BitVector - Return true if this is a 512-bit vector type.
|
||||
inline bool is512BitVector() const {
|
||||
bool is512BitVector() const {
|
||||
return isSimple() ? (V == MVT::v8i64) : isExtended512BitVector();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user