mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
Fix silly bug.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110684 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b0f3b3e7de
commit
15af387bff
@ -96,7 +96,7 @@ namespace options {
|
||||
} else if (opt.startswith("pass-through=")) {
|
||||
llvm::StringRef item = opt.substr(strlen("pass-through="));
|
||||
pass_through.push_back(item.str());
|
||||
} else if (opt == "mtriple=") {
|
||||
} else if (opt.startswith("mtriple=")) {
|
||||
triple = opt.substr(strlen("mtriple="));
|
||||
} else if (opt == "emit-llvm") {
|
||||
generate_bc_file = BC_ONLY;
|
||||
|
Loading…
Reference in New Issue
Block a user