comparison src/share/vm/c1/c1_RangeCheckElimination.hpp @ 9156:acadb114c818

8011648: C1: optimized build is broken after 7153771 Summary: missing #ifdef ASSERT Reviewed-by: kvn
author roland
date Mon, 15 Apr 2013 17:17:11 +0200
parents 46f6f063b272
children d13d7aba8c12
comparison
equal deleted inserted replaced
9155:bb4a966cc68f 9156:acadb114c818
164 void do_ProfileCall (ProfileCall* x) { /* nothing to do */ }; 164 void do_ProfileCall (ProfileCall* x) { /* nothing to do */ };
165 void do_ProfileInvoke (ProfileInvoke* x) { /* nothing to do */ }; 165 void do_ProfileInvoke (ProfileInvoke* x) { /* nothing to do */ };
166 void do_RuntimeCall (RuntimeCall* x) { /* nothing to do */ }; 166 void do_RuntimeCall (RuntimeCall* x) { /* nothing to do */ };
167 void do_MemBar (MemBar* x) { /* nothing to do */ }; 167 void do_MemBar (MemBar* x) { /* nothing to do */ };
168 void do_RangeCheckPredicate(RangeCheckPredicate* x) { /* nothing to do */ }; 168 void do_RangeCheckPredicate(RangeCheckPredicate* x) { /* nothing to do */ };
169 #ifdef ASSERT
169 void do_Assert (Assert* x) { /* nothing to do */ }; 170 void do_Assert (Assert* x) { /* nothing to do */ };
171 #endif
170 }; 172 };
171 173
172 #ifdef ASSERT 174 #ifdef ASSERT
173 void add_assertions(Bound *bound, Instruction *instruction, Instruction *position); 175 void add_assertions(Bound *bound, Instruction *instruction, Instruction *position);
174 #endif 176 #endif