[llvm] r285280 - [ARM] Add newline char to test.
Sam Parker via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 27 03:43:02 PDT 2016
Author: sam_parker
Date: Thu Oct 27 05:43:02 2016
New Revision: 285280
URL: http://llvm.org/viewvc/llvm-project?rev=285280&view=rev
Log:
[ARM] Add newline char to test.
Missed a newline in the previous commit.
Differential Revision: https://reviews.llvm.org/D26027
Modified:
llvm/trunk/test/CodeGen/ARM/longMAC.ll
Modified: llvm/trunk/test/CodeGen/ARM/longMAC.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/longMAC.ll?rev=285280&r1=285279&r2=285280&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/longMAC.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/longMAC.ll Thu Oct 27 05:43:02 2016
@@ -224,7 +224,8 @@ define i64 @MACLongTest10(i32 %lhs, i32
;CHECK-V7M-THUMB-NOT: umaal
%conv = zext i32 %lhs to i64
%conv1 = zext i32 %rhs to i64
- %mul = mul nuw i64 %conv1, %conv %conv2 = zext i32 %lo to i64
+ %mul = mul nuw i64 %conv1, %conv
+ %conv2 = zext i32 %lo to i64
%conv3 = zext i32 %hi to i64
%add = add i64 %conv2, %conv3
%add2 = add i64 %add, %mul
More information about the llvm-commits
mailing list