TargetMachine: document unnamed bool argument

Its meaning was slightly mysterious without looking at
subclasses.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145705 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dylan Noblesmith 2011-12-02 20:53:57 +00:00
parent 35af1d7e2c
commit a930f3d8a3

View File

@ -249,7 +249,7 @@ public:
virtual bool addPassesToEmitFile(PassManagerBase &,
formatted_raw_ostream &,
CodeGenFileType,
bool = true) {
bool /*DisableVerify*/ = true) {
return true;
}
@ -261,7 +261,7 @@ public:
///
virtual bool addPassesToEmitMachineCode(PassManagerBase &,
JITCodeEmitter &,
bool = true) {
bool /*DisableVerify*/ = true) {
return true;
}
@ -273,7 +273,7 @@ public:
virtual bool addPassesToEmitMC(PassManagerBase &,
MCContext *&,
raw_ostream &,
bool = true) {
bool /*DisableVerify*/ = true) {
return true;
}
};