This testcase causes the CBE to generate code that is not legal C.

llvm-svn: 15601
This commit is contained in:
Chris Lattner 2004-08-09 23:56:17 +00:00
parent 189229151f
commit cee3c6b1be
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare void %llvm.va_end(sbyte*)
void %test() {
call void %llvm.va_end( sbyte* null )
ret void
}