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:
844a3d1
)
Remove warning about initialization order.
author
Bill Wendling
<isanbard@gmail.com>
Tue, 1 Jul 2008 21:00:31 +0000
(21:00 +0000)
committer
Bill Wendling
<isanbard@gmail.com>
Tue, 1 Jul 2008 21:00:31 +0000
(21:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52980
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/TargetRegisterInfo.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/TargetRegisterInfo.cpp
b/lib/Target/TargetRegisterInfo.cpp
index 37745ec95d40c548af6d3bead019b99881f58529..5d8823bcb524954af6fae447b47c5c8fe6216379 100644
(file)
--- a/
lib/Target/TargetRegisterInfo.cpp
+++ b/
lib/Target/TargetRegisterInfo.cpp
@@
-24,8
+24,8
@@
TargetRegisterInfo::TargetRegisterInfo(const TargetRegisterDesc *D, unsigned NR,
regclass_iterator RCB, regclass_iterator RCE,
int CFSO, int CFDO,
const unsigned* subregs, const unsigned subregsize)
- :
Desc(D), NumRegs(NR), RegClassBegin(RCB), RegClassEnd(RCE
),
-
SubregHash(subregs), SubregHashSize(subregsize
) {
+ :
SubregHash(subregs), SubregHashSize(subregsize), Desc(D), NumRegs(NR
),
+
RegClassBegin(RCB), RegClassEnd(RCE
) {
assert(NumRegs < FirstVirtualRegister &&
"Target has too many physical registers!");