1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 12:43:36 +01:00

TargetMachine: document unnamed bool argument

Its meaning was slightly mysterious without looking at
subclasses.

llvm-svn: 145705
This commit is contained in:
Dylan Noblesmith 2011-12-02 20:53:57 +00:00
parent 6978c891cf
commit eb962ee28f

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;
}
};