llvm-6502/test/FrontendAda/element_copy.adb
Duncan Sands 9e413a96a3 Adjust this test for the fact that the stores are no longer
being combined (which is being tracked as PR8699).


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120734 91177308-0d34-0410-b5e6-96231b3b80d8
2010-12-02 20:56:51 +00:00

9 lines
206 B
Ada

-- RUN: %llvmgcc -S -O2 %s -I%p/Support -o - | grep 105 | count 2
package body Element_Copy is
function F return VariableSizedField is
X : VariableSizedField;
begin
return X;
end;
end;