[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Transforms / GlobalOpt / 2009-03-07-PromotePtrToBool.ll
blob99d3269ca5b58fe6264afc48c1690ccb649eeeb8
1 ; RUN: opt < %s -passes=globalopt -S | FileCheck %s
2 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
3 target triple = "i386-apple-darwin7"
5 ; CHECK: @X = internal unnamed_addr global i32
6 @X = internal global i32* null          ; <i32**> [#uses=2]
7 @Y = internal global i32 0              ; <i32*> [#uses=1]
9 define void @foo() nounwind {
10 entry:
11         store i32* @Y, i32** @X, align 4
12         ret void
15 define i32* @get() nounwind {
16 entry:
17         %0 = load i32*, i32** @X, align 4               ; <i32*> [#uses=1]
18         ret i32* %0