diff options
Diffstat (limited to 'test/Feature/constpointer.ll')
-rw-r--r-- | test/Feature/constpointer.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Feature/constpointer.ll b/test/Feature/constpointer.ll index 5c1bed194bd..bd967272cf5 100644 --- a/test/Feature/constpointer.ll +++ b/test/Feature/constpointer.ll @@ -16,10 +16,10 @@ @t2 = global i32* @t1 -global float * @2 ;; Forward numeric reference -global float * @2 ;; Duplicate forward numeric reference -global float 0.0 -global float * @2 ;; Numeric reference +@0 = global float * @2 ;; Forward numeric reference +@1 = global float * @2 ;; Duplicate forward numeric reference +@2 = global float 0.0 +@3 = global float * @2 ;; Numeric reference @fptr = global void() * @f ;; Forward ref method defn |