diff options
author | Devang Patel <dpatel@apple.com> | 2007-10-08 20:57:48 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2007-10-08 20:57:48 +0000 |
commit | c049e4f406a7f7179eba98659044a32508e53289 (patch) | |
tree | 67e90e141cc64fab7e8bb63449a41f8f9e887b52 /CodeGen/CodeGenFunction.cpp | |
parent | ab0aeb0bf3eb289013e9f37e75c3dfc4c618f53c (diff) |
Code gen case statement ranges.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42766 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | CodeGen/CodeGenFunction.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CodeGen/CodeGenFunction.cpp b/CodeGen/CodeGenFunction.cpp index e8a00c89ea..80c75afdb8 100644 --- a/CodeGen/CodeGenFunction.cpp +++ b/CodeGen/CodeGenFunction.cpp @@ -24,7 +24,8 @@ using namespace clang; using namespace CodeGen; CodeGenFunction::CodeGenFunction(CodeGenModule &cgm) - : CGM(cgm), Target(CGM.getContext().Target) {} + : CGM(cgm), Target(CGM.getContext().Target), SwitchInsn(NULL), + CaseRangeBlock(NULL) {} ASTContext &CodeGenFunction::getContext() const { return CGM.getContext(); |