mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 23:36:05 +00:00

I am looking at constant-folding changes that could affect these tests, so check that it emits the expected global value instead of just checking that it doesn't crash.
10 lines
276 B
C++
10 lines
276 B
C++
// RUN: %clang_cc1 -triple=x86_64-unknown-linux -emit-llvm %s -o - | FileCheck %s
|
|
// rdar://5914926
|
|
|
|
struct bork {
|
|
struct bork *next_local;
|
|
char * query;
|
|
};
|
|
int offset = (char *) &(((struct bork *) 0x10)->query) - (char *) 0x10;
|
|
// CHECK: @offset = global i32 8, align 4
|