Home | History | Annotate | Download | only in FrontendC
      1 // RUN: %llvmgcc -xc %s -S -o - | grep llvm.memcpy
      2 
      3 struct X { int V[10000]; };
      4 struct X Global1, Global2;
      5 void test() {
      6   Global2 = Global1;
      7 }
      8 
      9