<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:verdana,helvetica,sans-serif;font-size:10pt"><div>Hi All,
<br><br>Specifically, the problem is that I want to insert a string into
the source code. When the source code is compiled by the compiler into
bitcode file such info will be extracted and stored somewhere else, and
the compiler only compiles the original source code.
<br>An example is like:
<br>a1.cpp:
<br>int main()
<br>{
<br> int a = 0;
<br> cout << a << endl;
<br>}
<br><br>I'd like to insert one string
<br>a2.cpp:
<br>int main()
<br>{
<br> CheckSthHere;
<br> int a = 0;
<br> cout << a << endl;
<br>}
<br><br>I hope to extract such information out a2.cpp and compile only
a1.cpp. After compiling a1.cpp into bitcode file I can still get that
string information back and do some analysis.
<br><br>Is this possible?
<br><br>Thanks in advance.</div>
</div></body></html>