projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cb0f06e
)
Fix unused parameter warning.
author
Eric Christopher
<echristo@apple.com>
Thu, 25 Mar 2010 00:59:51 +0000
(
00:59
+0000)
committer
Eric Christopher
<echristo@apple.com>
Thu, 25 Mar 2010 00:59:51 +0000
(
00:59
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99463
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Target/TargetMachine.h
patch
|
blob
|
history
diff --git
a/include/llvm/Target/TargetMachine.h
b/include/llvm/Target/TargetMachine.h
index b239a306761fd4a8c43131900f2314e5b51e38d2..d1d665f870ffe4c4bb1c9e65fa15d536c21d34c4 100644
(file)
--- a/
include/llvm/Target/TargetMachine.h
+++ b/
include/llvm/Target/TargetMachine.h
@@
-192,7
+192,7
@@
public:
formatted_raw_ostream &,
CodeGenFileType,
CodeGenOpt::Level,
- bool
DisableVerify
= true) {
+ bool = true) {
return true;
}
@@
-205,7
+205,7
@@
public:
virtual bool addPassesToEmitMachineCode(PassManagerBase &,
JITCodeEmitter &,
CodeGenOpt::Level,
- bool
DisableVerify
= true) {
+ bool = true) {
return true;
}
@@
-216,7
+216,7
@@
public:
virtual bool addPassesToEmitWholeFile(PassManager &, formatted_raw_ostream &,
CodeGenFileType,
CodeGenOpt::Level,
- bool
DisableVerify
= true) {
+ bool = true) {
return true;
}
};