diff options
-rw-r--r-- | llvm/lib/VMCore/Instructions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Instructions.cpp b/llvm/lib/VMCore/Instructions.cpp index 612b7630728..8966bbe1dd3 100644 --- a/llvm/lib/VMCore/Instructions.cpp +++ b/llvm/lib/VMCore/Instructions.cpp @@ -3239,7 +3239,7 @@ LoadInst *LoadInst::clone_impl() const { } StoreInst *StoreInst::clone_impl() const { - return new StoreInst(getOperand(0), getOperand(1),isVolatile(), + return new StoreInst(getOperand(0), getOperand(1), isVolatile(), getAlignment(), getOrdering(), getSynchScope()); } |