mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-29 00:08:59 -04:00

This corrects the handling for i686-windows-itanium. This environment is nearly identical to Windows MSVC, except it uses the itanium ABI for C++. llvm-svn: 211991
16 lines
448 B
C
16 lines
448 B
C
// RUN: %clang_cc1 -triple i686-windows-itanium -emit-llvm %s -o - \
|
|
// RUN: | FileCheck %s -check-prefix CHECK-C -check-prefix CHECK
|
|
|
|
// RUN: %clang_cc1 -triple i686-windows-itanium -emit-llvm -x c++ %s -o - \
|
|
// RUN: | FileCheck %s -check-prefix CHECK-CXX -check-prefix CHECK
|
|
|
|
int function() {
|
|
return 32;
|
|
}
|
|
|
|
// CHECK-C: define i32 @function() {{.*}} {
|
|
// CHECK-CXX: define i32 @_Z8functionv() {{.*}} {
|
|
// CHECK: ret i32 32
|
|
// CHECK: }
|
|
|