You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
265 B
8 lines
265 B
7 months ago
|
; RUN: llvm-as %s -o /dev/null
|
||
|
; RUN: opt -mtriple=x86_64-unknown-linux -o /dev/null
|
||
|
; RUN: not opt -mtriple=x86_64-pc-win32 %s -o /dev/null 2>&1 | FileCheck %s
|
||
|
|
||
|
$v = comdat any
|
||
|
@v = private global i32 0, comdat($v)
|
||
|
; CHECK: comdat global value has private linkage
|