11 lines · cpp
1// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - -fexperimental-new-constant-interpreter | FileCheck %s2 3// Check that the following construct, which is similar to one which occurs4// in Firefox, is folded correctly.5struct A { char x; };6struct B { char y; };7struct C : A,B {};8unsigned char x = ((char*)(B*)(C*)0x1000) - (char*)0x1000;9 10// CHECK: @x = {{(dso_local )?}}global i8 111