diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-06-16 17:49:52 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-06-16 17:49:52 +0000 |
commit | 75d0f82e50565cc4cf71140ecf2141a40a3a5af9 (patch) | |
tree | c2998c5912ea1006977d8d5b708adc3dcdfc00b1 /test/CodeGen/builtin-attributes.c | |
parent | 2ac54ec0a8ad305fdd76847c2fd6631cfb7baa82 (diff) |
Fix tests that I missed from my previous commit.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@106118 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/builtin-attributes.c')
-rw-r--r-- | test/CodeGen/builtin-attributes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/builtin-attributes.c b/test/CodeGen/builtin-attributes.c index 944aac3f52..6f13239bf6 100644 --- a/test/CodeGen/builtin-attributes.c +++ b/test/CodeGen/builtin-attributes.c @@ -1,11 +1,11 @@ // RUN: %clang_cc1 -triple arm-unknown-unknown -emit-llvm -o - %s | FileCheck %s -// CHECK: declare arm_aapcscc i32 @printf(i8*, ...) +// CHECK: declare i32 @printf(i8*, ...) void f0() { printf("a\n"); } -// CHECK: call arm_aapcscc void @exit +// CHECK: call void @exit // CHECK: unreachable void f1() { exit(1); |