Test to make sure that 'internal' flags don't get dropped accidentally!

llvm-svn: 2887
This commit is contained in:
Chris Lattner 2002-07-14 22:30:45 +00:00
parent ede97432ae
commit a1efe55957
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
; Test to make sure that the 'internal' tag is not lost!
;
; RUN: as < %s | dis | grep internal
declare void %foo()
implementation
internal void %foo() {
ret void
}