1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00

[WebAssembly] Comment out a switch block in ISelDAGToDAG

Summary: Fixes PR37977.

Reviewers: RKSimon

Subscribers: dschuff, sbc100, sunfish, llvm-commits

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

llvm-svn: 336017
This commit is contained in:
Heejin Ahn 2018-06-29 21:19:22 +00:00
parent c96b36e0c5
commit 4bc76318a1

View File

@ -75,15 +75,14 @@ void WebAssemblyDAGToDAGISel::Select(SDNode *Node) {
return;
}
// Few custom selection stuff.
EVT VT = Node->getValueType(0);
// Few custom selection stuff. If we need WebAssembly-specific selection,
// uncomment this block add corresponding case statements.
/*
switch (Node->getOpcode()) {
default:
break;
// If we need WebAssembly-specific selection, it would go here.
(void)VT;
}
*/
// Select the default instruction.
SelectCode(Node);