diff options
author | Reid Kleckner <rnk@google.com> | 2019-10-19 01:07:48 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2019-10-19 01:07:48 +0000 |
commit | 0ad6c191deef592818d2381b16e1093a0006e7b5 (patch) | |
tree | 3f432afb29fd1cbd2033af00212489ff0ab22d51 /llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp | |
parent | 8b0d14a8f0cc085afa2a9c86c237da81c74517fc (diff) | |
download | bcm5719-llvm-0ad6c191deef592818d2381b16e1093a0006e7b5.tar.gz bcm5719-llvm-0ad6c191deef592818d2381b16e1093a0006e7b5.zip |
Prune Analysis includes from SelectionDAG.h
Only forward declarations are needed here. Follow-on to r375311.
llvm-svn: 375319
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp index 68db96a1ce2..8e8126c90e7 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp +++ b/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp @@ -38,7 +38,7 @@ WebAssemblyInstrInfo::WebAssemblyInstrInfo(const WebAssemblySubtarget &STI) RI(STI.getTargetTriple()) {} bool WebAssemblyInstrInfo::isReallyTriviallyReMaterializable( - const MachineInstr &MI, AliasAnalysis *AA) const { + const MachineInstr &MI, AAResults *AA) const { switch (MI.getOpcode()) { case WebAssembly::CONST_I32: case WebAssembly::CONST_I64: |