1 ; Test that we don't crash in the case where the type info object is an
2 ; alias pointing to a non-zero offset within a global.
4 ; RUN: llc < %s | FileCheck %s
6 target triple = "x86_64-unknown-linux-gnu"
8 %struct.exception = type { i8, i8, i32, i8*, i8*, i32, i8* }
9 @g = global %struct.exception zeroinitializer
10 @a = alias %struct.exception, %struct.exception* inttoptr (i64 add (i64 ptrtoint (%struct.exception* @g to i64), i64 1297036692682702848) to %struct.exception*)
12 define i32 @typeid() {
13 ; CHECK: movl $1, %eax
14 %eh_typeid = tail call i32 @llvm.eh.typeid.for( i8* getelementptr (%struct.exception, %struct.exception* @a, i32 0, i32 0))
18 declare i32 @llvm.eh.typeid.for(i8*)