diff options
| author | Igor Laevsky <igmyrj@gmail.com> | 2015-07-23 14:31:18 +0000 |
|---|---|---|
| committer | Igor Laevsky <igmyrj@gmail.com> | 2015-07-23 14:31:18 +0000 |
| commit | 2ba8374612cf7c9ffcde3e6e73da328f10e5037b (patch) | |
| tree | 32850d631ff550c28c43e014a739a9f47d25512c | |
| parent | e047071c9c866e1c534ea3de86d12b3248c20dff (diff) | |
| download | bcm5719-llvm-2ba8374612cf7c9ffcde3e6e73da328f10e5037b.tar.gz bcm5719-llvm-2ba8374612cf7c9ffcde3e6e73da328f10e5037b.zip | |
NFC. Explicitly specify attributes in BasicAA/cs-cs.ll test.
This will simplify verifying correctness for a changes which modify attributes.
llvm-svn: 243016
| -rw-r--r-- | llvm/test/Analysis/BasicAA/cs-cs.ll | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/test/Analysis/BasicAA/cs-cs.ll b/llvm/test/Analysis/BasicAA/cs-cs.ll index 78670b61ca1..427242580ed 100644 --- a/llvm/test/Analysis/BasicAA/cs-cs.ll +++ b/llvm/test/Analysis/BasicAA/cs-cs.ll @@ -233,4 +233,7 @@ define void @test6(i8* %P) nounwind ssp { ; CHECK: Just Ref: call void @a_readonly_func(i8* %P) <-> call void @llvm.memset.p0i8.i64(i8* %P, i8 -51, i64 32, i32 8, i1 false) } -attributes #0 = { nounwind } +attributes #0 = { nounwind readonly } +attributes #1 = { nounwind } +attributes #2 = { noinline nounwind readonly } +attributes #3 = { nounwind ssp } |

