diff options
author | Dan Gohman <gohman@apple.com> | 2009-03-13 23:53:06 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-03-13 23:53:06 +0000 |
commit | 474d3b3f40e117a66946e9fb9d2016b4c05caef0 (patch) | |
tree | e4fe73f5281c4cbfdea7165412bf7d617eff8c60 /test/CodeGen/X86/fast-isel-phys.ll | |
parent | 4425240dbcb6e0da24f4a9f72cfb24f529f5b7af (diff) |
Improve FastISel's handling of truncates to i1, and implement
ptrtoint and inttoptr in X86FastISel. These casts aren't always
handled in the generic FastISel code because X86 sometimes needs
custom code to do truncation and zero-extension.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66988 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/fast-isel-phys.ll')
-rw-r--r-- | test/CodeGen/X86/fast-isel-phys.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/fast-isel-phys.ll b/test/CodeGen/X86/fast-isel-phys.ll index 26011468f7..91dcca57cc 100644 --- a/test/CodeGen/X86/fast-isel-phys.ll +++ b/test/CodeGen/X86/fast-isel-phys.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -fast-isel -march=x86 +; RUN: llvm-as < %s | llc -fast-isel -fast-isel-abort -march=x86 define i8 @t2(i8 %a, i8 %c) nounwind { %tmp = shl i8 %a, %c |