Displaying 2 results from an estimated 2 matches for "181f951".
2013 Aug 13
1
[LLVMdev] vector type legalization
...e, since we check
the element Vector type (EltVT) to be integer.
The patch breaks a whole lot of test-cases, so it is obviously not the
ideal solution. It simply reflects what the comment says.
diff --git a/include/llvm/Target/TargetLowering.h
b/include/llvm/Target/TargetLowering.h
index c3fa3cc..181f951 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -1474,10 +1474,14 @@ public:
// Try to widen vector elements until a legal type is found.
if (EltVT.isInteger()) {
// Vectors with a number of elements that is not a power of two are
alw...
2013 Aug 13
0
[LLVMdev] vector type legalization
...e changed to something with integers.
>
> The patch breaks a whole lot of test-cases, so it is obviously not the ideal solution. It simply reflects what the comment says.
>
> diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
> index c3fa3cc..181f951 100644
> --- a/include/llvm/Target/TargetLowering.h
> +++ b/include/llvm/Target/TargetLowering.h
> @@ -1474,10 +1474,14 @@ public:
> // Try to widen vector elements until a legal type is found.
> if (EltVT.isInteger()) {
> // Vectors with a number of elements that...