1; Test that inttoptr, add and ptrtoint don't cause problems in alias summaries. 2; RUN: opt -module-summary %s -o - | llvm-dis | FileCheck %s 3 4; CHECK: ^1 = gv: (name: "a", {{.*}} aliasee: ^2 5; CHECK: ^2 = gv: (name: "b", 6 7target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" 8target triple = "x86_64-unknown-linux-gnu" 9 10@a = alias i32, i32* inttoptr (i64 add (i64 ptrtoint (i32* @b to i64), i64 1297036692682702848) to i32*) 11@b = global i32 1 12