tree-flow-inline.h (get_addr_base_and_unit_offset_1): Handle BIT_FIELD_REF.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / realloc.C
blob3e50aa80490f12cb19452a348c8d5f46ac18191e
1 // { dg-do assemble  }
3 extern "C" void realloc();
5 class bug {
6 public:
7   void realloc(int foo,int bar);
8 };
10 void f() {
11   bug c;
12   c.realloc(50,50);