aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
diff options
context:
space:
mode:
authorPablo Barrio <pablo.barrio@arm.com>2016-09-12 13:14:14 +0000
committerPablo Barrio <pablo.barrio@arm.com>2016-09-12 13:14:14 +0000
commit0bebc38abb96303545fcd4bb1aff46f93eb2b044 (patch)
treeb466e652a5c365cf6393da6286bab62ae2beea12 /llvm/lib/Transforms/Scalar/LoopInterchange.cpp
parentc7e1e034980d26faef3a7c4f22b73a04feeefa38 (diff)
downloadllvm-0bebc38abb96303545fcd4bb1aff46f93eb2b044.zip
llvm-0bebc38abb96303545fcd4bb1aff46f93eb2b044.tar.gz
llvm-0bebc38abb96303545fcd4bb1aff46f93eb2b044.tar.bz2
Fix the Thumb test for vfloat intrinsics
Summary: This test was not testing the intrinsics. A function like this: define %v4f32 @test_v4f32.floor(%v4f32 %a){ ... %1 = call %v4f32 @llvm.floor.v4f32(%v4f32 %a) ... } is transformed into the following assembly: _test_v4f32.floor: @ @test_v4f32.floor ... bl _floorf ... In each function tested, there are two CHECK: one that checked for the label and another one for the intrinsic that should be used inside the function (in our case, "floor"). However, although the first CHECK was matching the label, the second was not matching the intrinsic, but the second "floor" in the same line as the label. This is fixed by making the first CHECK match the entire line. Reviewers: jmolloy, rengolin Subscribers: rengolin, llvm-commits Differential Revision: https://reviews.llvm.org/D24398 llvm-svn: 281211
Diffstat (limited to 'llvm/lib/Transforms/Scalar/LoopInterchange.cpp')
0 files changed, 0 insertions, 0 deletions