File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 33
33
#include < cctype>
34
34
#include < cstring>
35
35
#include < unordered_map>
36
- #include < iostream>
37
36
38
37
using namespace llvm ;
39
38
namespace id = itanium_demangle;
@@ -1212,9 +1211,9 @@ PreservedAnalyses SYCLLowerESIMDPass::run(Function &F,
1212
1211
DstTy->getScalarType ()->getPrimitiveSizeInBits () < 32 )) {
1213
1212
IRBuilder<> Builder (&I);
1214
1213
llvm::Value *Src = CastOp->getOperand (0 );
1215
- auto TmpTy =
1216
- llvm::FixedVectorType::get ( llvm:: Type::getInt32Ty (DstTy->getContext ()),
1217
- cast<VectorType>(DstTy)->getNumElements ());
1214
+ auto TmpTy = llvm::FixedVectorType::get (
1215
+ llvm::Type::getInt32Ty (DstTy->getContext ()),
1216
+ cast<VectorType>(DstTy)->getNumElements ());
1218
1217
Src = Builder.CreateFPToSI (Src, TmpTy);
1219
1218
1220
1219
llvm::Instruction::CastOps TruncOp = llvm::Instruction::Trunc;
You can’t perform that action at this time.
0 commit comments