summaryrefslogtreecommitdiff
path: root/test/Transforms/MemCpyOpt/memcpy.ll
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-02-15 05:25:26 +0000
committerBill Wendling <isanbard@gmail.com>2013-02-15 05:25:26 +0000
commit94328f4ff3d450104f15c9dae437cea80417233d (patch)
tree8a50187b7c50578798cab474d7c950d9749547c8 /test/Transforms/MemCpyOpt/memcpy.ll
parentab90084bca42b74a5b5edad9b416bd81e105dad0 (diff)
downloadllvm-94328f4ff3d450104f15c9dae437cea80417233d.tar.gz
llvm-94328f4ff3d450104f15c9dae437cea80417233d.tar.bz2
llvm-94328f4ff3d450104f15c9dae437cea80417233d.tar.xz
Simplify the 'operator<' for the attribute object.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175252 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/MemCpyOpt/memcpy.ll')
-rw-r--r--test/Transforms/MemCpyOpt/memcpy.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/MemCpyOpt/memcpy.ll b/test/Transforms/MemCpyOpt/memcpy.ll
index c19a93a776..3fbc559ccf 100644
--- a/test/Transforms/MemCpyOpt/memcpy.ll
+++ b/test/Transforms/MemCpyOpt/memcpy.ll
@@ -98,7 +98,7 @@ entry:
ret i32 0
; CHECK: @test5(
; CHECK: store i8 4
- ; CHECK: call void @test5a(%struct.S* align 16 byval %y)
+ ; CHECK: call void @test5a(%struct.S* byval align 16 %y)
}
;; Noop memcpy should be zapped.
@@ -123,7 +123,7 @@ entry:
%call = call i32 @g(%struct.p* align 8 byval %agg.tmp) nounwind
ret i32 %call
; CHECK: @test7
-; CHECK: call i32 @g(%struct.p* align 8 byval %q) nounwind
+; CHECK: call i32 @g(%struct.p* byval align 8 %q) nounwind
}
declare i32 @g(%struct.p* align 8 byval)