this started failing due to Reid's changes in the bc format. insulate it

from future changes.

llvm-svn: 31428
This commit is contained in:
Chris Lattner 2006-11-03 22:01:15 +00:00
parent ea2abe2384
commit 2d242aba18
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
// This file can be used to see what a native C compiler is generating for a
// variety of interesting operations.
//
// RUN: %llvmgcc -c %s -o - | llc
// RUN: %llvmgcc -S %s -o - | llvm-as | llc
unsigned int udiv(unsigned int X, unsigned int Y) {
return X/Y;