search for: subfunc

Displaying 1 result from an estimated 1 matches for "subfunc".

Did you mean: subfunc1
2015 Jan 04
3
[LLVMdev] Writing my own debugger... use __builtin_frame_address or is there something better?
...ell the debugger that we are on line 1 of the current file's source code. int N = 0; DB_Line(2); // Tell the debugger that we have advanced to line 2 of our source code. Type2* Curr = GetFirst(P); DB_Line(3); while (Curr) { DB_Line(4); Type3* Tmp = SubFunc(Curr, self, nil); if (!Tmp) { PrintError("Error"); return 0; } DB_Line(5); N++; DB_Line(6); Item = GetNext(Curr); DB_Line(7); }; DB_Line(8); return N + 1; } All I need to do then... is implement...