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:
Reid Spencer
2006-12-31 06:02:26 +00:00
parent eacb7020ec
commit 71d2ec9e6d
14 changed files with 4453 additions and 4471 deletions

View File

@ -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";