Dan Gohman | 3c7d308 | 2009-09-11 18:01:28 +0000 | [diff] [blame^] | 1 | ; RUN: opt < %s -globalopt -disable-output |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 2 | ; PR1491 |
| 3 | |
| 4 | target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64" |
| 5 | target triple = "i686-pc-linux-gnu" |
| 6 | %"struct.__gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<const int, int> > >" = type <{ i8 }> |
| 7 | %"struct.std::_Rb_tree<int,std::pair<const int, int>,std::_Select1st<std::pair<const int, int> >,std::less<int>,std::allocator<std::pair<const int, int> > >" = type { %"struct.std::_Rb_tree<int,std::pair<const int, int>,std::_Select1st<std::pair<const int, int> >,std::less<int>,std::allocator<std::pair<const int, int> > >::_Rb_tree_impl<std::less<int>,false>" } |
| 8 | %"struct.std::_Rb_tree<int,std::pair<const int, int>,std::_Select1st<std::pair<const int, int> >,std::less<int>,std::allocator<std::pair<const int, int> > >::_Rb_tree_impl<std::less<int>,false>" = type { %"struct.__gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<const int, int> > >", %"struct.std::_Rb_tree_node_base", i32 } |
| 9 | %"struct.std::_Rb_tree_node_base" = type { i32, %"struct.std::_Rb_tree_node_base"*, %"struct.std::_Rb_tree_node_base"*, %"struct.std::_Rb_tree_node_base"* } |
| 10 | %"struct.std::map<int,int,std::less<int>,std::allocator<std::pair<const int, int> > >" = type { %"struct.std::_Rb_tree<int,std::pair<const int, int>,std::_Select1st<std::pair<const int, int> >,std::less<int>,std::allocator<std::pair<const int, int> > >" } |
| 11 | @someMap = global %"struct.std::map<int,int,std::less<int>,std::allocator<std::pair<const int, int> > >" zeroinitializer ; <%"struct.std::map<int,int,std::less<int>,std::allocator<std::pair<const int, int> > >"*> [#uses=1] |
| 12 | @llvm.global_ctors = appending global [1 x { i32, void ()* }] [ { i32, void ()* } { i32 65535, void ()* @_GLOBAL__I_someMap } ] ; <[1 x { i32, void ()* }]*> [#uses=0] |
| 13 | @llvm.global_dtors = appending global [1 x { i32, void ()* }] [ { i32, void ()* } { i32 65535, void ()* @_GLOBAL__D_someMap } ] ; <[1 x { i32, void ()* }]*> [#uses=0] |
| 14 | |
| 15 | define void @_GLOBAL__I_someMap() { |
| 16 | entry: |
| 17 | call void @_Z41__static_initialization_and_destruction_0ii( i32 1, i32 65535 ) |
| 18 | ret void |
| 19 | } |
| 20 | |
| 21 | declare void @_GLOBAL__D_someMap() |
| 22 | |
| 23 | define void @_Z41__static_initialization_and_destruction_0ii(i32 %__initialize_p, i32 %__priority) { |
| 24 | entry: |
| 25 | %tmp1 = icmp eq i32 %__priority, 65535 ; <i1> [#uses=1] |
| 26 | %tmp4 = icmp eq i32 %__initialize_p, 1 ; <i1> [#uses=1] |
| 27 | %tmp7 = and i1 %tmp1, %tmp4 ; <i1> [#uses=1] |
| 28 | br i1 %tmp7, label %cond_true, label %cond_next |
| 29 | |
| 30 | cond_true: ; preds = %entry |
| 31 | store i8 0, i8* getelementptr (%"struct.std::map<int,int,std::less<int>,std::allocator<std::pair<const int, int> > >"* @someMap, i32 0, i32 0, i32 0, i32 0, i32 0) |
| 32 | ret void |
| 33 | |
| 34 | cond_next: ; preds = %entry |
| 35 | ret void |
| 36 | } |