Displaying 1 result from an estimated 1 matches for "heyentrytoken".
2012 Aug 21
0
[LLVMdev] SelectionDAGISel::CodeGenAndEmitDAG() confusion.
...G->getRoot());
//JOE'S EDITS END
CurDAG->clear();
}
The files make fine but when I run clang on an input file I get
Cobrakai$./clang temp.c
temp.c:4:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
main()
^~~~
Hello everybody Joe was here!
startEntryToken
heyEntryToken
1 warning generated.
Cobrakai$
...which implies that either my itterator is not working as I expect
it would (I expect many more than one node), or the selectionDAG has
only one node... which would be odd - can anyone point me in the right
direction for this?
PS - here is my test file, in case i...