aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/function-attributes.c
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-01-31 23:17:12 +0000
committerBill Wendling <isanbard@gmail.com>2013-01-31 23:17:12 +0000
commit5e31474b9c8348e8d0404264ae6a8775e34df6ac (patch)
tree2f4f140ff876b8e400e1de7ff98facbf909baa2b /test/CodeGen/function-attributes.c
parentf843a580c4a54ca147f22422ee8ccfd2347784fc (diff)
Update the tests.
This update coincides with r174110. That change ordered the attributes alphabetically. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174111 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/function-attributes.c')
-rw-r--r--test/CodeGen/function-attributes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/function-attributes.c b/test/CodeGen/function-attributes.c
index 886bd8d2fb..ab3447641d 100644
--- a/test/CodeGen/function-attributes.c
+++ b/test/CodeGen/function-attributes.c
@@ -25,8 +25,8 @@ void f6(signed short x) { }
void f7(unsigned short x) { }
// CHECK: define void @f8()
-// CHECK: nounwind
// CHECK: alwaysinline
+// CHECK: nounwind
// CHECK: {
void __attribute__((always_inline)) f8(void) { }
@@ -56,7 +56,7 @@ int f12(int arg) {
return arg ? 0 : f10_t();
}
-// CHECK: define void @f13() nounwind readnone
+// CHECK: define void @f13() nounwind optsize readnone
void f13(void) __attribute__((pure)) __attribute__((const));
void f13(void){}