mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
add valuemapper support for inline asm
llvm-svn: 27332
This commit is contained in:
parent
38318b2706
commit
704770bfe7
@ -24,7 +24,7 @@ Value *llvm::MapValue(const Value *V, std::map<const Value*, Value*> &VM) {
|
||||
|
||||
// Global values do not need to be seeded into the ValueMap if they are using
|
||||
// the identity mapping.
|
||||
if (isa<GlobalValue>(V))
|
||||
if (isa<GlobalValue>(V) || isa<InlineAsm>(V))
|
||||
return VMSlot = const_cast<Value*>(V);
|
||||
|
||||
if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user