diff test/Linker/ConstantGlobals.ll @ 100:7d135dc70f03 LLVM 3.9

LLVM 3.9
author Miyagi Mitsuki <e135756@ie.u-ryukyu.ac.jp>
date Tue, 26 Jan 2016 22:53:40 +0900
parents 60c9769439b8
children
line wrap: on
line diff
--- a/test/Linker/ConstantGlobals.ll	Tue Oct 13 17:49:56 2015 +0900
+++ b/test/Linker/ConstantGlobals.ll	Tue Jan 26 22:53:40 2016 +0900
@@ -6,3 +6,7 @@
 
 ; CHECK-DAG: @Y = external global [1 x i32]
 @Y = external global [1 x i32]
+
+define [1 x i32]* @use-Y() {
+  ret [1 x i32] *@Y
+}