diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2020-06-20 20:06:52 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2020-06-20 20:06:52 +0000 |
| commit | e837bb5cfb2b3a734feb1fbe20b25dbe6d550a3c (patch) | |
| tree | 7a4d84600852e9b6c294ff8e4ee013a932870305 /contrib/llvm-project/llvm/lib/Transforms/Utils/ValueMapper.cpp | |
| parent | b1779ca056bce033ef5667cd7693b66be39d614b (diff) | |
| parent | 8055b7e383f74dbc58c8085a0f0c45f4c61f8231 (diff) | |
Notes
Diffstat (limited to 'contrib/llvm-project/llvm/lib/Transforms/Utils/ValueMapper.cpp')
| -rw-r--r-- | contrib/llvm-project/llvm/lib/Transforms/Utils/ValueMapper.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/llvm-project/llvm/lib/Transforms/Utils/ValueMapper.cpp b/contrib/llvm-project/llvm/lib/Transforms/Utils/ValueMapper.cpp index da68d3713b40..d6b01a12b937 100644 --- a/contrib/llvm-project/llvm/lib/Transforms/Utils/ValueMapper.cpp +++ b/contrib/llvm-project/llvm/lib/Transforms/Utils/ValueMapper.cpp @@ -369,7 +369,8 @@ Value *Mapper::mapValue(const Value *V) { if (NewTy != IA->getFunctionType()) V = InlineAsm::get(NewTy, IA->getAsmString(), IA->getConstraintString(), - IA->hasSideEffects(), IA->isAlignStack()); + IA->hasSideEffects(), IA->isAlignStack(), + IA->getDialect()); } return getVM()[V] = const_cast<Value *>(V); |
