mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-20 10:24:12 +00:00
For PR950:
Convert signed integer types to signless. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32790 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -38,7 +38,11 @@ OutputFilename("o", cl::desc("Override output filename"),
|
||||
cl::value_desc("filename"), cl::init("-"));
|
||||
|
||||
static cl::opt<bool>
|
||||
Force("f", cl::desc("Overwrite output files"));
|
||||
Force("f", cl::desc("Overwrite output files"), cl::init(false));
|
||||
|
||||
static cl::opt<bool>
|
||||
AddAttrs("add-attrs", cl::desc("Add function result and argument attributes"),
|
||||
cl::init(false));
|
||||
|
||||
static cl::opt<bool>
|
||||
Debug("debug", cl::desc("Print debug output from yacc parser"),cl::Hidden,
|
||||
@ -115,7 +119,7 @@ int main(int argc, char **argv) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
UpgradeAssembly(InputFilename, *In, *Out, Debug);
|
||||
UpgradeAssembly(InputFilename, *In, *Out, Debug, AddAttrs);
|
||||
|
||||
} catch (const std::string& caught_message) {
|
||||
cerr << argv[0] << ": " << caught_message << "\n";
|
||||
|
Reference in New Issue
Block a user