diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-08-02 14:44:01 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-08-02 14:44:01 +0000 |
commit | 5258d9f96767d898af4756930ce0c66a31ddf7d9 (patch) | |
tree | cffb5a8639416d5406d56e45f9e69da2d2ca9057 /include | |
parent | 79240f9539ab187f5e25cec44e0250a89dfe1d59 (diff) |
include/llvm/Analysis/RegionInfo.h: Appease msvc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161179 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/RegionInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/RegionInfo.h b/include/llvm/Analysis/RegionInfo.h index c76a8a7d2a..188d11c283 100644 --- a/include/llvm/Analysis/RegionInfo.h +++ b/include/llvm/Analysis/RegionInfo.h @@ -523,7 +523,7 @@ public: } // Construct the end iterator. - block_iterator_wrapper() : super(df_end<pointer>(0)) {} + block_iterator_wrapper() : super(df_end<pointer>((BasicBlock *)0)) {} /*implicit*/ block_iterator_wrapper(super I) : super(I) {} |