mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-18 13:34:04 +00:00
Use typedefs. Fix indentation. Extracted from the Andy/PaX patch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162283 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c558476329
commit
7996d04582
@ -3075,8 +3075,8 @@ bool GenericAsmParser::ParseDirectiveMacro(StringRef Directive,
|
||||
|
||||
MacroParameters Parameters;
|
||||
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
||||
for(;;) {
|
||||
StringRef Parameter;
|
||||
for (;;) {
|
||||
MacroParameter Parameter;
|
||||
if (getParser().ParseIdentifier(Parameter))
|
||||
return TokError("expected identifier in directive");
|
||||
Parameters.push_back(Parameter);
|
||||
@ -3321,9 +3321,8 @@ bool AsmParser::ParseDirectiveIrp(SMLoc DirectiveLoc) {
|
||||
SmallString<256> Buf;
|
||||
raw_svector_ostream OS(Buf);
|
||||
|
||||
for (std::vector<MacroArgument>::iterator i = A.begin(), e = A.end(); i != e;
|
||||
++i) {
|
||||
std::vector<MacroArgument> Args;
|
||||
for (MacroArguments::iterator i = A.begin(), e = A.end(); i != e; ++i) {
|
||||
MacroArguments Args;
|
||||
Args.push_back(*i);
|
||||
|
||||
if (expandMacro(OS, M->Body, Parameters, Args, getTok().getLoc()))
|
||||
|
Loading…
x
Reference in New Issue
Block a user