mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
a62270de2c
The reversion apparently deleted the test/Transforms directory. Will be re-reverting again. llvm-svn: 358552
11 lines
143 B
LLVM
11 lines
143 B
LLVM
; RUN: opt < %s -globalopt
|
|
|
|
@g = global i32 0
|
|
|
|
@a = alias i8, bitcast (i32* @g to i8*)
|
|
|
|
define void @f() {
|
|
%tmp = load i8, i8* @a
|
|
ret void
|
|
}
|