Home | History | Annotate | Download | only in CodeGenObjC
      1 // RUN: %clang_cc1 -triple i386-unknown-unknown %s -emit-llvm -o - | FileCheck %s
      2 
      3 // <rdar://problem/10465114>
      4 struct overwrite_string_struct {
      5   char L[3];
      6   int M;
      7 } overwrite_string[] = { { { @encode(void**) }, 1 }, [0].L[1] = 'x'};
      8 // CHECK: [3 x i8] c"^xv", i32 1
      9