Skip to content

Commit 2031410

Browse files
author
Kamil Kashapov
committed
fixup! Split PPC VarArg Helper into PPC32 and PPC64
1 parent 1fc6217 commit 2031410

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6278,7 +6278,7 @@ struct VarArgPowerPC64Helper : public VarArgHelperBase {
62786278
Value *VAArgSize = nullptr;
62796279

62806280
VarArgPowerPC64Helper(Function &F, MemorySanitizer &MS,
6281-
MemorySanitizerVisitor &MSV, unsigned VAListTagSize)
6281+
MemorySanitizerVisitor &MSV, unsigned VAListTagSize)
62826282
: VarArgHelperBase(F, MS, MSV, VAListTagSize) {}
62836283

62846284
void visitCallBase(CallBase &CB, IRBuilder<> &IRB) override {
@@ -6430,7 +6430,7 @@ struct VarArgPowerPC32Helper : public VarArgHelperBase {
64306430
Value *VAArgSize = nullptr;
64316431

64326432
VarArgPowerPC32Helper(Function &F, MemorySanitizer &MS,
6433-
MemorySanitizerVisitor &MSV, unsigned VAListTagSize)
6433+
MemorySanitizerVisitor &MSV, unsigned VAListTagSize)
64346434
: VarArgHelperBase(F, MS, MSV, VAListTagSize) {}
64356435

64366436
void visitCallBase(CallBase &CB, IRBuilder<> &IRB) override {

0 commit comments

Comments
 (0)