We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a09dcb commit 324be7dCopy full SHA for 324be7d
llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
@@ -4304,7 +4304,8 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
4304
// The NEON vector load instructions handled by this function all have
4305
// integer variants. It is easier to use those rather than trying to cast
4306
// a struct of vectors of floats into a struct of vectors of integers.
4307
- CallInst *CI = IRB.CreateIntrinsic(getShadowTy(&I), I.getIntrinsicID(), ShadowArgs);
+ CallInst *CI =
4308
+ IRB.CreateIntrinsic(getShadowTy(&I), I.getIntrinsicID(), ShadowArgs);
4309
setShadow(&I, CI);
4310
4311
if (!MS.TrackOrigins)
0 commit comments