Displaying 2 results from an estimated 2 matches for "raw_out".
Did you mean:
raw_cout
2010 Apr 01
2
[LLVMdev] raw_os_ostream: symbol not found
...lock->end(); i !
= e; ++i) {
Instruction *instruction = i;
out << *instruction << std::endl;
...
}
...
}
I tried working around this problem using the raw_os_ostream adapter:
#include <llvm/Support/raw_os_ostream.h>
...
raw_os_ostream raw_out(out);
raw_out << *instruction << std::endl;
It compiles fine, but opt gives a runtime error when trying to load
the pass:
Symbol not found: __ZTVN4llvm14raw_os_ostreamE
Any thoughts on why this is happening? And is there a workaround that
doesn't involve raw_os_ostrea...
2010 Apr 01
0
[LLVMdev] raw_os_ostream: symbol not found
...ion *instruction = i;
> out << *instruction << std::endl;
> ...
> }
> ...
> }
>
> I tried working around this problem using the raw_os_ostream adapter:
>
> #include <llvm/Support/raw_os_ostream.h>
> ...
> raw_os_ostream raw_out(out);
> raw_out << *instruction << std::endl;
>
> It compiles fine, but opt gives a runtime error when trying to load
> the pass:
>
> Symbol not found: __ZTVN4llvm14raw_os_ostreamE
>
> Any thoughts on why this is happening? And is there a workaround th...