aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Generic
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-11-03 22:01:15 +0000
committerChris Lattner <sabre@nondot.org>2006-11-03 22:01:15 +0000
commit3acfac6493a9273c316d2e85f534f65bb2832a5a (patch)
tree30f418e25440e02255aaf2736d9d0db70ee956ef /test/CodeGen/Generic
parent7765d71304f0f26ab348deb41af9b6ae033aae4d (diff)
downloadexternal_llvm-3acfac6493a9273c316d2e85f534f65bb2832a5a.zip
external_llvm-3acfac6493a9273c316d2e85f534f65bb2832a5a.tar.gz
external_llvm-3acfac6493a9273c316d2e85f534f65bb2832a5a.tar.bz2
this started failing due to Reid's changes in the bc format. insulate it
from future changes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31428 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Generic')
-rw-r--r--test/CodeGen/Generic/BasicInstrs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/Generic/BasicInstrs.c b/test/CodeGen/Generic/BasicInstrs.c
index 141d32b..812b49d 100644
--- a/test/CodeGen/Generic/BasicInstrs.c
+++ b/test/CodeGen/Generic/BasicInstrs.c
@@ -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;