diff options
author | Craig Topper <craig.topper@intel.com> | 2019-02-04 21:24:13 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2019-02-04 21:24:13 +0000 |
commit | c45e39b35f2d91012b70f35aa0addd2ec4afd496 (patch) | |
tree | 7c7b4ce062d6d338c9f42e767b740f7fd911fb90 /llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp | |
parent | 1469ff417bba5e14c99edb8c9858a7a80458df4e (diff) | |
download | llvm-c45e39b35f2d91012b70f35aa0addd2ec4afd496.zip llvm-c45e39b35f2d91012b70f35aa0addd2ec4afd496.tar.gz llvm-c45e39b35f2d91012b70f35aa0addd2ec4afd496.tar.bz2 |
[CodeGen][ARC][SystemZ][WebAssembly] Use MachineInstr::isInlineAsm in more places instead of just comparing opcode. NFCI
I'm looking at adding a second INLINEASM opcode for better modeling asm-goto
as a terminator. Using the existing predicate will reduce teh number of
places that will need to use the new opcode.
llvm-svn: 353095
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp index e2675b5..6463e26 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp +++ b/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp @@ -789,11 +789,11 @@ bool WebAssemblyRegStackify::runOnMachineFunction(MachineFunction &MF) { MachineInstr *Insert = &*MII; // Don't nest anything inside an inline asm, because we don't have // constraints for $push inputs. - if (Insert->getOpcode() == TargetOpcode::INLINEASM) + if (Insert->isInlineAsm()) continue; // Ignore debugging intrinsics. - if (Insert->getOpcode() == TargetOpcode::DBG_VALUE) + if (Insert->isDebugValue()) continue; // Iterate through the inputs in reverse order, since we'll be pulling @@ -821,7 +821,7 @@ bool WebAssemblyRegStackify::runOnMachineFunction(MachineFunction &MF) { // Don't nest an INLINE_ASM def into anything, because we don't have // constraints for $pop outputs. - if (Def->getOpcode() == TargetOpcode::INLINEASM) + if (Def->isInlineAsm()) continue; // Argument instructions represent live-in registers and not real |