X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FInteger%2Fconstpointer_bt.ll;h=6be9ec336a3cc64b397453769aa8c457ada0b9a5;hb=1b0dc64919e947bb4f4677b138c734e33061f7c4;hp=cbae92b6dcab1604ceab028a6617dc98a43d4518;hpb=c0948366f6cbec12d2c87f9cb4a1cea1435cf02a;p=oota-llvm.git diff --git a/test/Integer/constpointer_bt.ll b/test/Integer/constpointer_bt.ll index cbae92b6dca..6be9ec336a3 100644 --- a/test/Integer/constpointer_bt.ll +++ b/test/Integer/constpointer_bt.ll @@ -10,24 +10,23 @@ ; -%t3 = global i40 * %t1 ;; Forward reference -%t1 = global i40 4 -%t4 = global i40 ** %t3 ;; reference to reference +@t3 = global i40 * @t1 ;; Forward reference +@t1 = global i40 4 +@t4 = global i40 ** @t3 ;; reference to reference -%t2 = global i40 * %t1 +@t2 = global i40 * @t1 -global float * %0 ;; Forward numeric reference -global float * %0 ;; Duplicate forward numeric reference +global float * @2 ;; Forward numeric reference +global float * @2 ;; Duplicate forward numeric reference global float 0.0 -global float * %0 ;; Numeric reference +global float * @2 ;; Numeric reference -%fptr = global void() * %f ;; Forward ref method defn -declare void "f"() ;; External method +@fptr = global void() * @f ;; Forward ref method defn +declare void @"f"() ;; External method -%sptr1 = global [11x i8]* %somestr ;; Forward ref to a constant -%somestr = constant [11x i8] c"hello world" -%sptr2 = global [11x i8]* %somestr +@sptr1 = global [11x i8]* @somestr ;; Forward ref to a constant +@somestr = constant [11x i8] c"hello world" +@sptr2 = global [11x i8]* @somestr -implementation