blob: 249927d1ffe201c6342e9478782cebeaeb1df845 (
plain)
1
2
3
4
5
6
7
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=c
; Make sure that global variables do not collide if they have the same name,
; but different types.
%X = global int 5
%X = global long 7
|