diff options
author | Martin Storsjo <martin@martin.st> | 2017-07-17 20:05:56 +0000 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2017-07-17 20:05:56 +0000 |
commit | d1daa95e119de6544fd8542123ef22d787dac36e (patch) | |
tree | f88a4dfd3b32b970ae02170e3a5966aff74b94b3 /clang/test/CodeGen/ms_abi.c | |
parent | 2f24e93481fe6e870f4c676309057785334c6bb3 (diff) | |
download | bcm5719-llvm-d1daa95e119de6544fd8542123ef22d787dac36e.tar.gz bcm5719-llvm-d1daa95e119de6544fd8542123ef22d787dac36e.zip |
Update use of llvm::CallingConv:X86_64_Win64 after LLVM commit r308208
llvm-svn: 308209
Diffstat (limited to 'clang/test/CodeGen/ms_abi.c')
-rw-r--r-- | clang/test/CodeGen/ms_abi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGen/ms_abi.c b/clang/test/CodeGen/ms_abi.c index 97f66b29c51..407087e4091 100644 --- a/clang/test/CodeGen/ms_abi.c +++ b/clang/test/CodeGen/ms_abi.c @@ -15,20 +15,20 @@ void f3(void) { // FREEBSD-LABEL: define void @f3() // WIN64-LABEL: define void @f3() f1(); - // FREEBSD: call x86_64_win64cc void @f1() + // FREEBSD: call win64cc void @f1() // WIN64: call void @f1() f2(); // FREEBSD: call void @f2() // WIN64: call x86_64_sysvcc void @f2() } -// FREEBSD: declare x86_64_win64cc void @f1() +// FREEBSD: declare win64cc void @f1() // FREEBSD: declare void @f2() // WIN64: declare void @f1() // WIN64: declare x86_64_sysvcc void @f2() // Win64 ABI varargs void __attribute__((ms_abi)) f4(int a, ...) { - // FREEBSD-LABEL: define x86_64_win64cc void @f4 + // FREEBSD-LABEL: define win64cc void @f4 // WIN64-LABEL: define void @f4 __builtin_ms_va_list ap; __builtin_ms_va_start(ap, a); |