diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-23 07:21:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-23 07:21:12 +0000 |
commit | 32814a58e43e3d852403e54e573c2c98b28fdfa3 (patch) | |
tree | c56c0b44b4ac21c7f8efaffd0557f4b197405705 | |
parent | dfeeac9f002454ccba362893f218fd2e6f502f48 (diff) |
this option is gone, the dag isel is the default now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25536 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/SparcV8/xnor.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/SparcV8/xnor.ll b/test/CodeGen/SparcV8/xnor.ll index 52b5410090..0fa5330935 100644 --- a/test/CodeGen/SparcV8/xnor.ll +++ b/test/CodeGen/SparcV8/xnor.ll @@ -1,5 +1,5 @@ -; RUN: llvm-as < %s | llc -march=sparcv8 -enable-v8-dag-isel=true && -; RUN: llvm-as < %s | llc -march=sparcv8 -enable-v8-dag-isel=true | grep xnor | wc -l | grep 2 +; RUN: llvm-as < %s | llc -march=sparcv8 && +; RUN: llvm-as < %s | llc -march=sparcv8 | grep xnor | wc -l | grep 2 int %test1(int %X, int %Y) { %A = xor int %X, %Y |