[llvm] 5f65fae - ValueMapper does not preserve inline assembly dialect when remapping the type

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Sun May 17 15:40:48 PDT 2020


Author: Craig Topper
Date: 2020-05-17T14:57:50-07:00
New Revision: 5f65faef2c61bfb5e041f74db61665f43a05e9db

URL: https://github.com/llvm/llvm-project/commit/5f65faef2c61bfb5e041f74db61665f43a05e9db
DIFF: https://github.com/llvm/llvm-project/commit/5f65faef2c61bfb5e041f74db61665f43a05e9db.diff

LOG: ValueMapper does not preserve inline assembly dialect when remapping the type

Bug report: https://bugs.llvm.org/show_bug.cgi?id=45291

Patch by Tomasz Miąsko

Differential Revision: https://reviews.llvm.org/D80066

Added: 
    

Modified: 
    llvm/lib/Transforms/Utils/ValueMapper.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Utils/ValueMapper.cpp b/llvm/lib/Transforms/Utils/ValueMapper.cpp
index 3c55df2d006c..f1b3fe8e2fa9 100644
--- a/llvm/lib/Transforms/Utils/ValueMapper.cpp
+++ b/llvm/lib/Transforms/Utils/ValueMapper.cpp
@@ -368,7 +368,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);


        


More information about the llvm-commits mailing list