Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
LLVM の命令を画面ではなく文字列に出力したいと考えています。私I->print( errs() )は画面に印刷するために使用します。代わりに命令を文字列に入れるにはどうすればよいですか?
I->print( errs() )
このような、
std::string str; llvm::raw_string_ostream rso(str); I->print(rso);