Skip to content

Commit

Permalink
Update parser.go
Browse files Browse the repository at this point in the history
`-mllvm` takes an extra `<arg>`

E.g.
```
-mllvm <arg>
```
  • Loading branch information
ianamason authored Jun 29, 2021
1 parent b0c77e1 commit d01ecad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ func Parse(argList []string) ParserResult {
"-mskip-rax-setup": {0, pr.compileUnaryCallback}, //iam: linux kernel stuff
"-mindirect-branch-register": {0, pr.compileUnaryCallback}, //iam: linux kernel stuff

"-mllvm": {1, pr.compileUnaryCallback}, //iam: chromium
"-mllvm": {1, pr.compileBinaryCallback}, //iam: chromium

"-A": {1, pr.compileBinaryCallback},
"-D": {1, pr.compileBinaryCallback},
Expand Down

0 comments on commit d01ecad

Please sign in to comment.