diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/VMCore/Instructions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp index 612b763072..8966bbe1dd 100644 --- a/lib/VMCore/Instructions.cpp +++ b/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()); } |