diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-01-27 21:15:22 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-01-27 21:15:22 +0000 |
commit | 69c543709d9f6557097fd6eccd2984157378731f (patch) | |
tree | 988dde82739ed7a50fc21cc72166bd051fd8e352 | |
parent | 9bd79b17efd4e4a5f4f7ce7e90829f1f423e1148 (diff) |
X86 dag isel is now (soon) the default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25699 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/bswap.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/bswap.ll b/test/CodeGen/X86/bswap.ll index d48d26568c..4285c73008 100644 --- a/test/CodeGen/X86/bswap.ll +++ b/test/CodeGen/X86/bswap.ll @@ -1,7 +1,7 @@ ; bswap should be constant folded when it is passed a constant argument -; RUN: llvm-as < %s | llc -march=x86 -enable-x86-dag-isel | grep bswapl | wc -l | grep 3 && -; RUN: llvm-as < %s | llc -march=x86 -enable-x86-dag-isel | grep rolw | wc -l | grep 1 +; RUN: llvm-as < %s | llc -march=x86 | grep bswapl | wc -l | grep 3 && +; RUN: llvm-as < %s | llc -march=x86 | grep rolw | wc -l | grep 1 declare ushort %llvm.bswap.i16(ushort) declare uint %llvm.bswap.i32(uint) |