search for: b2fa446d

Displaying 2 results from an estimated 2 matches for "b2fa446d".

2012 Aug 27
0
[LLVMdev] Illegal node introduced by DAGCombiner after legal phase
...et code. I guess I could add a custom dagcombine hook for this node and revert it in my target, but I want to hear what is the best thing to do. Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120827/b2fa446d/attachment.html>
2012 Aug 26
3
[LLVMdev] Illegal node introduced by DAGCombiner after legal phase
Hello, I'm getting an instruction selection error because DAGCombiner is introducing an illegal node after the legalizeDAG phase. Basically this is what is going on: 1) During legalization, BR_JT gets expanded introducing a (mul x, 2). 2) After legalization (AfterLegalizeDAG), that (mul x, 2) is converted to an (shl x, 1). However, that shl node introduced is illegal, and since my custom