Skip to content

Commit 6c37dac

Browse files
committed
clang-format
1 parent 5dcb768 commit 6c37dac

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4055,7 +4055,7 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
40554055

40564056
Intrinsic::ID shadowIntrinsicID = I.getIntrinsicID();
40574057

4058-
switch(I.getIntrinsicID()) {
4058+
switch (I.getIntrinsicID()) {
40594059
case Intrinsic::x86_sse3_hsub_ps:
40604060
shadowIntrinsicID = Intrinsic::x86_sse3_hadd_ps;
40614061
break;
@@ -4110,11 +4110,10 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
41104110

41114111
default:
41124112
break;
4113-
}
4113+
}
41144114

4115-
return handleIntrinsicByApplyingToShadow(
4116-
I, shadowIntrinsicID,
4117-
/*trailingVerbatimArgs*/ 0);
4115+
return handleIntrinsicByApplyingToShadow(I, shadowIntrinsicID,
4116+
/*trailingVerbatimArgs*/ 0);
41184117
}
41194118

41204119
/// Handle Arm NEON vector store intrinsics (vst{2,3,4}, vst1x_{2,3,4},

0 commit comments

Comments
 (0)