Displaying 1 result from an estimated 1 matches for "exprstrchar".
2016 Oct 29
1
Problems with Inline ASM expressions generated in the back end
...t;typename SDNodeT, typename... ArgTypes>
SDNodeT *newSDNode(ArgTypes &&... Args) {
return new (NodeAllocator.template Allocate<SDNodeT>())
SDNodeT(std::forward<ArgTypes>(Args)...);
}
*/
char *exprStrChar = (char *)malloc(2048);
strcpy(exprStrChar, "test... ...");
SDValue extSym = CurDAG->getTargetExternalSymbol(
exprStrChar,
MVT::i64);
SDNode *extSymNode = ex...