mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
Another regression from the pattern isel
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25867 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a55079a5cc
commit
3e1d5e5ea3
@ -288,3 +288,19 @@ _test:
|
||||
|
||||
This is bad for register pressure, though the dag isel is producing a
|
||||
better schedule. :)
|
||||
|
||||
//===---------------------------------------------------------------------===//
|
||||
|
||||
This testcase should have no SSE instructions in it, and only one load from
|
||||
a constant pool:
|
||||
|
||||
double %test3(bool %B) {
|
||||
%C = select bool %B, double 123.412, double 523.01123123
|
||||
ret double %C
|
||||
}
|
||||
|
||||
Currently, the select is being lowered, which prevents the dag combiner from
|
||||
turning 'select (load CPI1), (load CPI2)' -> 'load (select CPI1, CPI2)'
|
||||
|
||||
The pattern isel got this one right.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user