summaryrefslogtreecommitdiff
path: root/source/Expression/IRDynamicChecks.cpp
diff options
context:
space:
mode:
authorStephen Wilson <wilsons@start.ca>2011-04-11 19:41:40 +0000
committerStephen Wilson <wilsons@start.ca>2011-04-11 19:41:40 +0000
commitdbeb3e1e038a75f00fd565203839020e1d00a7c6 (patch)
treeb8fbec161954fab5a66652dec4998122d45d0e05 /source/Expression/IRDynamicChecks.cpp
parentd7d3af7201c7aed2ddd0ade31ae5d3543994c55b (diff)
Order of initialization lists.
This patch fixes all of the warnings due to unordered initialization lists. Patch by Marco Minutoli. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@129290 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'source/Expression/IRDynamicChecks.cpp')
-rw-r--r--source/Expression/IRDynamicChecks.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Expression/IRDynamicChecks.cpp b/source/Expression/IRDynamicChecks.cpp
index e0284c70d..a84fe8e7b 100644
--- a/source/Expression/IRDynamicChecks.cpp
+++ b/source/Expression/IRDynamicChecks.cpp
@@ -462,8 +462,8 @@ private:
IRDynamicChecks::IRDynamicChecks(DynamicCheckerFunctions &checker_functions,
const char *func_name) :
ModulePass(ID),
- m_checker_functions(checker_functions),
- m_func_name(func_name)
+ m_func_name(func_name),
+ m_checker_functions(checker_functions)
{
}