diff options
author | Mike Stump <mrs@apple.com> | 2009-12-14 21:58:14 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-12-14 21:58:14 +0000 |
commit | ba6a0c40c4b89235876502ae295a471e3f62f683 (patch) | |
tree | dd191307fccc06b4fee94d13b4418eff395a3c8d /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | bee6f16fed3f3cce2447c2af299a829495df8330 (diff) | |
download | bcm5719-llvm-ba6a0c40c4b89235876502ae295a471e3f62f683.tar.gz bcm5719-llvm-ba6a0c40c4b89235876502ae295a471e3f62f683.zip |
Add support for detecting undefined shift behavior. WIP.
llvm-svn: 91341
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index db604f63b18..c3bae0768c3 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -31,8 +31,8 @@ CodeGenFunction::CodeGenFunction(CodeGenModule &cgm) DebugInfo(0), IndirectBranch(0), SwitchInsn(0), CaseRangeBlock(0), InvokeDest(0), CXXThisDecl(0), CXXVTTDecl(0), - ConditionalBranchLevel(0), TerminateHandler(0), - UniqueAggrDestructorCount(0), AbortBB(0) { + ConditionalBranchLevel(0), TerminateHandler(0), AbortBB(0), + UniqueAggrDestructorCount(0) { LLVMIntTy = ConvertType(getContext().IntTy); LLVMPointerWidth = Target.getPointerWidth(0); Exceptions = getContext().getLangOptions().Exceptions; |