view test/Assembler/2007-08-06-AliasInvalid.ll @ 115:95b91bc9a2f8

cleanupflag
author mir3636
date Fri, 05 Aug 2016 19:04:52 +0900
parents 95c75e76d11b
children
line wrap: on
line source

; RUN: not llvm-as < %s > /dev/null 2> %t
; RUN: grep "expected top-level entity" %t
; PR1577

@anInt = global i32 1 
alias i32 @anAlias

define i32 @main() {
   ret i32 0 
}