projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e9dec6
)
[CodeExtractor] Add missing AllowVarArgs initialization.
author
Florian Hahn
<florian.hahn@arm.com>
Mon, 13 Nov 2017 11:08:47 +0000
(11:08 +0000)
committer
Florian Hahn
<florian.hahn@arm.com>
Mon, 13 Nov 2017 11:08:47 +0000
(11:08 +0000)
llvm-svn: 318029
llvm/lib/Transforms/Utils/CodeExtractor.cpp
patch
|
blob
|
history
diff --git
a/llvm/lib/Transforms/Utils/CodeExtractor.cpp
b/llvm/lib/Transforms/Utils/CodeExtractor.cpp
index
f9e2727
..
c65cf2e
100644
(file)
--- a/
llvm/lib/Transforms/Utils/CodeExtractor.cpp
+++ b/
llvm/lib/Transforms/Utils/CodeExtractor.cpp
@@
-176,8
+176,9
@@
CodeExtractor::CodeExtractor(DominatorTree &DT, Loop &L, bool AggregateArgs,
BlockFrequencyInfo *BFI,
BranchProbabilityInfo *BPI)
: DT(&DT), AggregateArgs(AggregateArgs || AggregateArgsOpt), BFI(BFI),
- BPI(BPI), Blocks(buildExtractionBlockSet(L.getBlocks(), &DT,
- /* AllowVarArgs */ false)) {}
+ BPI(BPI), AllowVarArgs(false),
+ Blocks(buildExtractionBlockSet(L.getBlocks(), &DT,
+ /* AllowVarArgs */ false)) {}
/// definedInRegion - Return true if the specified value is defined in the
/// extracted region.