https://github.com/epiqc/ScaffCC
Raw File
Tip revision: 861c8b60980b0f4d36b101b45346a2e64b0fa390 authored by Pranav Gokhale on 05 February 2018, 05:29:11 UTC
update documentation and release notes
Tip revision: 861c8b6
ConstantGlobals2.ll
; Test that appending linkage works correctly when arrays are the same size.

; RUN: echo {@X = external global \[1 x i32\] } | \
; RUN:   llvm-as > %t.2.bc
; RUN: llvm-as < %s > %t.1.bc
; RUN: llvm-link %t.1.bc %t.2.bc -S | grep constant

@X = constant [1 x i32] [ i32 12 ]		; <[1 x i32]*> [#uses=0]

back to top