aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 141d32bbc0..812b49db28 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;