diff options
author | Akira Hatanaka <ahatanaka@apple.com> | 2015-11-11 02:11:46 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@apple.com> | 2015-11-11 02:11:46 +0000 |
commit | 5dda59264335f1ca78ec72fdb0b6072ed898c2a0 (patch) | |
tree | 8a96aa0cdbbdba43391e86aa17378ad138ae3033 /llvm/test/Bitcode | |
parent | ed60b436d46b74c6c6bf38a59c362406621739ff (diff) | |
download | bcm5719-llvm-5dda59264335f1ca78ec72fdb0b6072ed898c2a0.tar.gz bcm5719-llvm-5dda59264335f1ca78ec72fdb0b6072ed898c2a0.zip |
Sort the enums in Attributes.h in case insensitive alphabetical order.
Sort the enums in preparation for moving the attributes to a table-gen
file.
rdar://problem/19836465
llvm-svn: 252692
Diffstat (limited to 'llvm/test/Bitcode')
-rw-r--r-- | llvm/test/Bitcode/compatibility-3.6.ll | 4 | ||||
-rw-r--r-- | llvm/test/Bitcode/compatibility-3.7.ll | 4 | ||||
-rw-r--r-- | llvm/test/Bitcode/compatibility.ll | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/Bitcode/compatibility-3.6.ll b/llvm/test/Bitcode/compatibility-3.6.ll index 1c2cf5124d1..87958fc3418 100644 --- a/llvm/test/Bitcode/compatibility-3.6.ll +++ b/llvm/test/Bitcode/compatibility-3.6.ll @@ -1180,8 +1180,8 @@ define void @intrinsics.codegen() { ; CHECK: attributes #27 = { uwtable } ; CHECK: attributes #28 = { "cpu"="cortex-a8" } ; CHECK: attributes #29 = { nounwind readnone } -; CHECK: attributes #30 = { nounwind readonly argmemonly } -; CHECK: attributes #31 = { nounwind argmemonly } +; CHECK: attributes #30 = { argmemonly nounwind readonly } +; CHECK: attributes #31 = { argmemonly nounwind } ; CHECK: attributes #32 = { nounwind readonly } ; CHECK: attributes #33 = { builtin } diff --git a/llvm/test/Bitcode/compatibility-3.7.ll b/llvm/test/Bitcode/compatibility-3.7.ll index 662f916c7bc..4ae0aed2018 100644 --- a/llvm/test/Bitcode/compatibility-3.7.ll +++ b/llvm/test/Bitcode/compatibility-3.7.ll @@ -1243,8 +1243,8 @@ define void @misc.metadata() { ; CHECK: attributes #30 = { uwtable } ; CHECK: attributes #31 = { "cpu"="cortex-a8" } ; CHECK: attributes #32 = { nounwind readnone } -; CHECK: attributes #33 = { nounwind readonly argmemonly } -; CHECK: attributes #34 = { nounwind argmemonly } +; CHECK: attributes #33 = { argmemonly nounwind readonly } +; CHECK: attributes #34 = { argmemonly nounwind } ; CHECK: attributes #35 = { nounwind readonly } ; CHECK: attributes #36 = { builtin } diff --git a/llvm/test/Bitcode/compatibility.ll b/llvm/test/Bitcode/compatibility.ll index 49689a99237..6c08a930209 100644 --- a/llvm/test/Bitcode/compatibility.ll +++ b/llvm/test/Bitcode/compatibility.ll @@ -1508,8 +1508,8 @@ normal: ; CHECK: attributes #31 = { "cpu"="cortex-a8" } ; CHECK: attributes #32 = { norecurse } ; CHECK: attributes #33 = { nounwind readnone } -; CHECK: attributes #34 = { nounwind readonly argmemonly } -; CHECK: attributes #35 = { nounwind argmemonly } +; CHECK: attributes #34 = { argmemonly nounwind readonly } +; CHECK: attributes #35 = { argmemonly nounwind } ; CHECK: attributes #36 = { nounwind readonly } ; CHECK: attributes #37 = { builtin } |