diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-02-15 01:04:46 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-02-15 01:04:46 +0000 |
commit | 223b3fdc557c0a3901f53297e63044308b8e7e89 (patch) | |
tree | 0996140499d3b0a384836c082086d35182a4ac1e | |
parent | 5cf38fd7633bee4a0ff627593cc1fd63ab0868d8 (diff) |
Fix testcase for attribute ordering.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175238 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/MemCpyOpt/memcpy.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/MemCpyOpt/memcpy.ll b/test/Transforms/MemCpyOpt/memcpy.ll index 8fdfbbccdb..3fbc559ccf 100644 --- a/test/Transforms/MemCpyOpt/memcpy.ll +++ b/test/Transforms/MemCpyOpt/memcpy.ll @@ -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) |