diff options
author | Reid Kleckner <reid@kleckner.net> | 2014-10-24 17:42:17 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2014-10-24 17:42:17 +0000 |
commit | d7857f05f4c56cf7bd22ce5a6a8d78df6043ab6d (patch) | |
tree | c423a984ad030a579ab4d6be0a136c21903c1c04 /clang/test/CodeGen/mrtd.c | |
parent | d024f528b474bd0446ced3eb0fe660e71bfa87eb (diff) | |
download | bcm5719-llvm-d7857f05f4c56cf7bd22ce5a6a8d78df6043ab6d.tar.gz bcm5719-llvm-d7857f05f4c56cf7bd22ce5a6a8d78df6043ab6d.zip |
Add frontend support for __vectorcall
Wire it through everywhere we have support for fastcall, essentially.
This allows us to parse the MSVC "14" CTP headers, but we will
miscompile them because LLVM doesn't support __vectorcall yet.
Reviewed By: Aaron Ballman
Differential Revision: http://reviews.llvm.org/D5808
llvm-svn: 220573
Diffstat (limited to 'clang/test/CodeGen/mrtd.c')
-rw-r--r-- | clang/test/CodeGen/mrtd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/mrtd.c b/clang/test/CodeGen/mrtd.c index 1132d046095..f929d4c26b2 100644 --- a/clang/test/CodeGen/mrtd.c +++ b/clang/test/CodeGen/mrtd.c @@ -1,6 +1,6 @@ // RUN: %clang_cc1 -mrtd -triple i386-unknown-unknown -std=c89 -emit-llvm -o - %s 2>&1 | FileCheck %s -// CHECK: mrtd.c:10:3: warning: function with no prototype cannot use the callee-cleanup stdcall calling convention +// CHECK: mrtd.c:10:3: warning: function with no prototype cannot use the stdcall calling convention void baz(int arg); |