Home | History | Annotate | Download | only in MC

Lines Matching refs:Options

144   virtual void EmitLinkerOptions(ArrayRef<std::string> Options);
377 void MCAsmStreamer::EmitLinkerOptions(ArrayRef<std::string> Options) {
378 assert(!Options.empty() && "At least one option is required!");
379 OS << "\t.linker_option \"" << Options[0] << '"';
380 for (ArrayRef<std::string>::iterator it = Options.begin() + 1,
381 ie = Options.end(); it != ie; ++it) {