Move this testcase out of /home/vadve/lattner/cvs/llvm/test/Programs/LLVMSource,

as it fails.

llvm-svn: 11250
This commit is contained in:
Chris Lattner 2004-02-09 22:52:25 +00:00
parent 37d46f4815
commit a52b206d91
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
; This testcase ensures the code emitter does something about the fact that
; we can have collisions with keywords
; RUN: llvm-as < %s | llc | not grep '^byte:'
void %byte() {
ret void
}
int %main() {
call void %byte()
ret int 0
}