mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-20 09:30:43 +00:00
Formating/comment changes - no functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58801 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d87293ce78
commit
b951aec3ad
@ -80,20 +80,15 @@ private:
|
||||
return Legal;
|
||||
case TargetLowering::Promote:
|
||||
// Promote can mean
|
||||
// 1) On integers, use the promote integer type (e.g., i8 to i32)
|
||||
// 2) For vectors, use the widen vector type returned by the target
|
||||
// (e.g., v3i32 to v4i32). If the type is the same as the original
|
||||
// type, than expand the vector instead.
|
||||
if (!VT.isVector()) {
|
||||
// 1) For integers, use a larger integer type (e.g. i8 -> i32).
|
||||
// 2) For vectors, use a wider vector type (e.g. v3i32 -> v4i32).
|
||||
if (!VT.isVector())
|
||||
return PromoteInteger;
|
||||
} else {
|
||||
// TODO: move widen code to LegalizeType.
|
||||
if (VT.getVectorNumElements() == 1) {
|
||||
else if (VT.getVectorNumElements() == 1)
|
||||
return ScalarizeVector;
|
||||
} else {
|
||||
else
|
||||
// TODO: move widen code to LegalizeTypes.
|
||||
return SplitVector;
|
||||
}
|
||||
}
|
||||
case TargetLowering::Expand:
|
||||
// Expand can mean
|
||||
// 1) split scalar in half, 2) convert a float to an integer,
|
||||
|
Loading…
Reference in New Issue
Block a user