[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / GlobalSplit / non-beneficial.ll
blob97ffcc2fdbd53ccd65512e9efd642aed409c4cb3
1 ; RUN: opt -S -globalsplit %s | FileCheck %s
3 target datalayout = "e-p:64:64"
4 target triple = "x86_64-unknown-linux-gnu"
6 ; CHECK: @global =
7 @global = internal constant { [2 x i8* ()*], [1 x i8* ()*] } {
8   [2 x i8* ()*] [i8* ()* @f, i8* ()* @g],
9   [1 x i8* ()*] [i8* ()* @h]
12 define i8* @f() {
13   ret i8* bitcast (i8* ()** getelementptr ({ [2 x i8* ()*], [1 x i8* ()*] }, { [2 x i8* ()*], [1 x i8* ()*] }* @global, i32 0, inrange i32 0, i32 0) to i8*)
16 define i8* @g() {
17   ret i8* null
20 define i8* @h() {
21   ret i8* null
24 !0 = !{i32 16}