Vendor import of clang RELEASE_351/final tag r225668 (effectively, 3.5.1 release):
https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_351/final@225668
This commit is contained in:
parent
9f4dbff666
commit
30d791273d
@ -1,6 +1,6 @@
|
||||
=====================================
|
||||
Clang 3.5 (In-Progress) Release Notes
|
||||
=====================================
|
||||
=======================
|
||||
Clang 3.5 Release Notes
|
||||
=======================
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
@ -8,12 +8,6 @@ Clang 3.5 (In-Progress) Release Notes
|
||||
|
||||
Written by the `LLVM Team <http://llvm.org/>`_
|
||||
|
||||
.. warning::
|
||||
|
||||
These are in-progress notes for the upcoming Clang 3.5 release. You may
|
||||
prefer the `Clang 3.4 Release Notes
|
||||
<http://llvm.org/releases/3.4/tools/clang/docs/ReleaseNotes.html>`_.
|
||||
|
||||
Introduction
|
||||
============
|
||||
|
||||
@ -188,16 +182,6 @@ directive just prior to the desired loop. The directive allows vectorization and
|
||||
interleaving to be enabled or disabled. Vector width as well as interleave count
|
||||
can be manually specified. See :ref:`langext-pragma-loop` for details.
|
||||
|
||||
C Language Changes in Clang
|
||||
---------------------------
|
||||
|
||||
...
|
||||
|
||||
C11 Feature Support
|
||||
^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
...
|
||||
|
||||
C++ Language Changes in Clang
|
||||
-----------------------------
|
||||
|
||||
@ -207,8 +191,6 @@ C++ Language Changes in Clang
|
||||
references, and `-fsanitize=null` can be used to detect null references
|
||||
being formed at runtime.
|
||||
|
||||
- ...
|
||||
|
||||
C++17 Feature Support
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
@ -227,16 +209,6 @@ Additionally, trigraphs are not recognized by default in this mode.
|
||||
Note that these features may be changed or removed in future Clang releases
|
||||
without notice.
|
||||
|
||||
Objective-C Language Changes in Clang
|
||||
-------------------------------------
|
||||
|
||||
...
|
||||
|
||||
OpenCL C Language Changes in Clang
|
||||
----------------------------------
|
||||
|
||||
...
|
||||
|
||||
OpenMP C/C++ Language Changes in Clang
|
||||
--------------------------------------
|
||||
|
||||
@ -254,11 +226,6 @@ this section should help get you past the largest hurdles of upgrading.
|
||||
- Clang uses `std::unique_ptr<T>` in many places where it used to use
|
||||
raw `T *` pointers.
|
||||
|
||||
libclang
|
||||
--------
|
||||
|
||||
...
|
||||
|
||||
Static Analyzer
|
||||
---------------
|
||||
|
||||
@ -282,25 +249,6 @@ instead of `report-XXXXXX.html`, scan-build/clang analyzer generate
|
||||
|
||||
List the function/method name in the index page of scan-build.
|
||||
|
||||
...
|
||||
|
||||
Core Analysis Improvements
|
||||
==========================
|
||||
|
||||
- ...
|
||||
|
||||
New Issues Found
|
||||
================
|
||||
|
||||
- ...
|
||||
|
||||
Python Binding Changes
|
||||
----------------------
|
||||
|
||||
The following methods have been added:
|
||||
|
||||
- ...
|
||||
|
||||
Significant Known Problems
|
||||
==========================
|
||||
|
||||
|
@ -2115,6 +2115,9 @@ def warn_attribute_invalid_on_definition : Warning<
|
||||
InGroup<IgnoredAttributes>;
|
||||
def err_attribute_dll_redeclaration : Error<
|
||||
"redeclaration of %q0 cannot add %q1 attribute">;
|
||||
def warn_attribute_dll_redeclaration : Warning<
|
||||
"redeclaration of %q0 should not add %q1 attribute">,
|
||||
InGroup<DiagGroup<"dll-attribute-on-redeclaration">>;
|
||||
def err_attribute_dllimport_function_definition : Error<
|
||||
"dllimport cannot be applied to non-inline function definition">;
|
||||
def err_attribute_dll_deleted : Error<
|
||||
|
@ -3216,18 +3216,26 @@ Value *ScalarExprEmitter::VisitChooseExpr(ChooseExpr *E) {
|
||||
|
||||
Value *ScalarExprEmitter::VisitVAArgExpr(VAArgExpr *VE) {
|
||||
QualType Ty = VE->getType();
|
||||
|
||||
if (Ty->isVariablyModifiedType())
|
||||
CGF.EmitVariablyModifiedType(Ty);
|
||||
|
||||
llvm::Value *ArgValue = CGF.EmitVAListRef(VE->getSubExpr());
|
||||
llvm::Value *ArgPtr = CGF.EmitVAArg(ArgValue, VE->getType());
|
||||
llvm::Type *ArgTy = ConvertType(VE->getType());
|
||||
|
||||
// If EmitVAArg fails, we fall back to the LLVM instruction.
|
||||
if (!ArgPtr)
|
||||
return Builder.CreateVAArg(ArgValue, ConvertType(VE->getType()));
|
||||
return Builder.CreateVAArg(ArgValue, ArgTy);
|
||||
|
||||
// FIXME Volatility.
|
||||
return Builder.CreateLoad(ArgPtr);
|
||||
llvm::Value *Val = Builder.CreateLoad(ArgPtr);
|
||||
|
||||
// If EmitVAArg promoted the type, we must truncate it.
|
||||
if (ArgTy != Val->getType())
|
||||
Val = Builder.CreateTrunc(Val, ArgTy);
|
||||
|
||||
return Val;
|
||||
}
|
||||
|
||||
Value *ScalarExprEmitter::VisitBlockExpr(const BlockExpr *block) {
|
||||
|
@ -5446,15 +5446,19 @@ MipsABIInfo::classifyArgumentType(QualType Ty, uint64_t &Offset) const {
|
||||
// If we have reached here, aggregates are passed directly by coercing to
|
||||
// another structure type. Padding is inserted if the offset of the
|
||||
// aggregate is unaligned.
|
||||
return ABIArgInfo::getDirect(HandleAggregates(Ty, TySize), 0,
|
||||
getPaddingType(OrigOffset, CurrOffset));
|
||||
ABIArgInfo ArgInfo =
|
||||
ABIArgInfo::getDirect(HandleAggregates(Ty, TySize), 0,
|
||||
getPaddingType(OrigOffset, CurrOffset));
|
||||
ArgInfo.setInReg(true);
|
||||
return ArgInfo;
|
||||
}
|
||||
|
||||
// Treat an enum type as its underlying type.
|
||||
if (const EnumType *EnumTy = Ty->getAs<EnumType>())
|
||||
Ty = EnumTy->getDecl()->getIntegerType();
|
||||
|
||||
if (Ty->isPromotableIntegerType())
|
||||
// All integral types are promoted to the GPR width.
|
||||
if (Ty->isIntegralOrEnumerationType())
|
||||
return ABIArgInfo::getExtend();
|
||||
|
||||
return ABIArgInfo::getDirect(
|
||||
@ -5506,7 +5510,12 @@ MipsABIInfo::returnAggregateInRegs(QualType RetTy, uint64_t Size) const {
|
||||
ABIArgInfo MipsABIInfo::classifyReturnType(QualType RetTy) const {
|
||||
uint64_t Size = getContext().getTypeSize(RetTy);
|
||||
|
||||
if (RetTy->isVoidType() || Size == 0)
|
||||
if (RetTy->isVoidType())
|
||||
return ABIArgInfo::getIgnore();
|
||||
|
||||
// O32 doesn't treat zero-sized structs differently from other structs.
|
||||
// However, N32/N64 ignores zero sized return values.
|
||||
if (!IsO32 && Size == 0)
|
||||
return ABIArgInfo::getIgnore();
|
||||
|
||||
if (isAggregateTypeForABI(RetTy) || RetTy->isVectorType()) {
|
||||
@ -5514,12 +5523,15 @@ ABIArgInfo MipsABIInfo::classifyReturnType(QualType RetTy) const {
|
||||
if (RetTy->isAnyComplexType())
|
||||
return ABIArgInfo::getDirect();
|
||||
|
||||
// O32 returns integer vectors in registers.
|
||||
if (IsO32 && RetTy->isVectorType() && !RetTy->hasFloatingRepresentation())
|
||||
return ABIArgInfo::getDirect(returnAggregateInRegs(RetTy, Size));
|
||||
|
||||
if (!IsO32)
|
||||
return ABIArgInfo::getDirect(returnAggregateInRegs(RetTy, Size));
|
||||
// O32 returns integer vectors in registers and N32/N64 returns all small
|
||||
// aggregates in registers..
|
||||
if (!IsO32 ||
|
||||
(RetTy->isVectorType() && !RetTy->hasFloatingRepresentation())) {
|
||||
ABIArgInfo ArgInfo =
|
||||
ABIArgInfo::getDirect(returnAggregateInRegs(RetTy, Size));
|
||||
ArgInfo.setInReg(true);
|
||||
return ArgInfo;
|
||||
}
|
||||
}
|
||||
|
||||
return ABIArgInfo::getIndirect(0);
|
||||
@ -5549,11 +5561,20 @@ llvm::Value* MipsABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
|
||||
CodeGenFunction &CGF) const {
|
||||
llvm::Type *BP = CGF.Int8PtrTy;
|
||||
llvm::Type *BPP = CGF.Int8PtrPtrTy;
|
||||
|
||||
// Integer arguments are promoted 32-bit on O32 and 64-bit on N32/N64.
|
||||
unsigned SlotSizeInBits = IsO32 ? 32 : 64;
|
||||
if (Ty->isIntegerType() &&
|
||||
CGF.getContext().getIntWidth(Ty) < SlotSizeInBits) {
|
||||
Ty = CGF.getContext().getIntTypeForBitwidth(SlotSizeInBits,
|
||||
Ty->isSignedIntegerType());
|
||||
}
|
||||
|
||||
CGBuilderTy &Builder = CGF.Builder;
|
||||
llvm::Value *VAListAddrAsBPP = Builder.CreateBitCast(VAListAddr, BPP, "ap");
|
||||
llvm::Value *Addr = Builder.CreateLoad(VAListAddrAsBPP, "ap.cur");
|
||||
int64_t TypeAlign = getContext().getTypeAlign(Ty) / 8;
|
||||
int64_t TypeAlign =
|
||||
std::min(getContext().getTypeAlign(Ty) / 8, StackAlignInBytes);
|
||||
llvm::Type *PTy = llvm::PointerType::getUnqual(CGF.ConvertType(Ty));
|
||||
llvm::Value *AddrTyped;
|
||||
unsigned PtrWidth = getTarget().getPointerWidth(0);
|
||||
@ -5572,8 +5593,8 @@ llvm::Value* MipsABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty,
|
||||
|
||||
llvm::Value *AlignedAddr = Builder.CreateBitCast(AddrTyped, BP);
|
||||
TypeAlign = std::max((unsigned)TypeAlign, MinABIStackAlignInBytes);
|
||||
uint64_t Offset =
|
||||
llvm::RoundUpToAlignment(CGF.getContext().getTypeSize(Ty) / 8, TypeAlign);
|
||||
unsigned ArgSizeInBits = CGF.getContext().getTypeSize(Ty);
|
||||
uint64_t Offset = llvm::RoundUpToAlignment(ArgSizeInBits / 8, TypeAlign);
|
||||
llvm::Value *NextAddr =
|
||||
Builder.CreateGEP(AlignedAddr, llvm::ConstantInt::get(IntTy, Offset),
|
||||
"ap.next");
|
||||
|
@ -5020,7 +5020,7 @@ static void checkDLLAttributeRedeclaration(Sema &S, NamedDecl *OldDecl,
|
||||
NewDecl = NewTD->getTemplatedDecl();
|
||||
|
||||
if (!OldDecl || !NewDecl)
|
||||
return;
|
||||
return;
|
||||
|
||||
const DLLImportAttr *OldImportAttr = OldDecl->getAttr<DLLImportAttr>();
|
||||
const DLLExportAttr *OldExportAttr = OldDecl->getAttr<DLLExportAttr>();
|
||||
@ -5037,13 +5037,30 @@ static void checkDLLAttributeRedeclaration(Sema &S, NamedDecl *OldDecl,
|
||||
// Implicitly generated declarations are also excluded for now because there
|
||||
// is no other way to switch these to use dllimport or dllexport.
|
||||
bool AddsAttr = !(OldImportAttr || OldExportAttr) && HasNewAttr;
|
||||
|
||||
if (AddsAttr && !IsSpecialization && !OldDecl->isImplicit()) {
|
||||
S.Diag(NewDecl->getLocation(), diag::err_attribute_dll_redeclaration)
|
||||
<< NewDecl
|
||||
<< (NewImportAttr ? (const Attr *)NewImportAttr : NewExportAttr);
|
||||
// If the declaration hasn't been used yet, allow with a warning for
|
||||
// free functions and global variables.
|
||||
bool JustWarn = false;
|
||||
if (!OldDecl->isUsed() && !OldDecl->isCXXClassMember()) {
|
||||
auto *VD = dyn_cast<VarDecl>(OldDecl);
|
||||
if (VD && !VD->getDescribedVarTemplate())
|
||||
JustWarn = true;
|
||||
auto *FD = dyn_cast<FunctionDecl>(OldDecl);
|
||||
if (FD && FD->getTemplatedKind() == FunctionDecl::TK_NonTemplate)
|
||||
JustWarn = true;
|
||||
}
|
||||
|
||||
unsigned DiagID = JustWarn ? diag::warn_attribute_dll_redeclaration
|
||||
: diag::err_attribute_dll_redeclaration;
|
||||
S.Diag(NewDecl->getLocation(), DiagID)
|
||||
<< NewDecl
|
||||
<< (NewImportAttr ? (const Attr *)NewImportAttr : NewExportAttr);
|
||||
S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
|
||||
NewDecl->setInvalidDecl();
|
||||
return;
|
||||
if (!JustWarn) {
|
||||
NewDecl->setInvalidDecl();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// A redeclaration is not allowed to drop a dllimport attribute, the only
|
||||
|
@ -3692,12 +3692,12 @@ bool Sema::CheckTemplateArgumentList(TemplateDecl *Template,
|
||||
ArgumentPack.size(), Converted))
|
||||
return true;
|
||||
|
||||
if (TemplateArgs[ArgIdx].getArgument().isPackExpansion() &&
|
||||
isa<TypeAliasTemplateDecl>(Template) &&
|
||||
!(Param + 1 == ParamEnd && (*Param)->isTemplateParameterPack() &&
|
||||
!getExpandedPackSize(*Param))) {
|
||||
bool PackExpansionIntoNonPack =
|
||||
TemplateArgs[ArgIdx].getArgument().isPackExpansion() &&
|
||||
(!(*Param)->isTemplateParameterPack() || getExpandedPackSize(*Param));
|
||||
if (PackExpansionIntoNonPack && isa<TypeAliasTemplateDecl>(Template)) {
|
||||
// Core issue 1430: we have a pack expansion as an argument to an
|
||||
// alias template, and it's not part of a final parameter pack. This
|
||||
// alias template, and it's not part of a parameter pack. This
|
||||
// can't be canonicalized, so reject it now.
|
||||
Diag(TemplateArgs[ArgIdx].getLocation(),
|
||||
diag::err_alias_template_expansion_into_fixed_list)
|
||||
@ -3720,16 +3720,11 @@ bool Sema::CheckTemplateArgumentList(TemplateDecl *Template,
|
||||
++Param;
|
||||
}
|
||||
|
||||
// If we just saw a pack expansion, then directly convert the remaining
|
||||
// arguments, because we don't know what parameters they'll match up
|
||||
// with.
|
||||
if (TemplateArgs[ArgIdx-1].getArgument().isPackExpansion()) {
|
||||
bool InFinalParameterPack = Param != ParamEnd &&
|
||||
Param + 1 == ParamEnd &&
|
||||
(*Param)->isTemplateParameterPack() &&
|
||||
!getExpandedPackSize(*Param);
|
||||
|
||||
if (!InFinalParameterPack && !ArgumentPack.empty()) {
|
||||
// If we just saw a pack expansion into a non-pack, then directly convert
|
||||
// the remaining arguments, because we don't know what parameters they'll
|
||||
// match up with.
|
||||
if (PackExpansionIntoNonPack) {
|
||||
if (!ArgumentPack.empty()) {
|
||||
// If we were part way through filling in an expanded parameter pack,
|
||||
// fall back to just producing individual arguments.
|
||||
Converted.insert(Converted.end(),
|
||||
@ -3738,22 +3733,10 @@ bool Sema::CheckTemplateArgumentList(TemplateDecl *Template,
|
||||
}
|
||||
|
||||
while (ArgIdx < NumArgs) {
|
||||
if (InFinalParameterPack)
|
||||
ArgumentPack.push_back(TemplateArgs[ArgIdx].getArgument());
|
||||
else
|
||||
Converted.push_back(TemplateArgs[ArgIdx].getArgument());
|
||||
Converted.push_back(TemplateArgs[ArgIdx].getArgument());
|
||||
++ArgIdx;
|
||||
}
|
||||
|
||||
// Push the argument pack onto the list of converted arguments.
|
||||
if (InFinalParameterPack) {
|
||||
Converted.push_back(
|
||||
TemplateArgument::CreatePackCopy(Context,
|
||||
ArgumentPack.data(),
|
||||
ArgumentPack.size()));
|
||||
ArgumentPack.clear();
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -76,8 +76,8 @@ void test1(void) {
|
||||
// MIPS32: store atomic i32 {{.*}}, i32* @i1 seq_cst
|
||||
// MIPS32: call i64 @__atomic_load_8(i8* bitcast (i64* @ll1 to i8*)
|
||||
// MIPS32: call void @__atomic_store_8(i8* bitcast (i64* @ll1 to i8*), i64
|
||||
// MIPS32: call void @__atomic_load(i32 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0)
|
||||
// MIPS32: call void @__atomic_store(i32 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0)
|
||||
// MIPS32: call void @__atomic_load(i32 zeroext 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0)
|
||||
// MIPS32: call void @__atomic_store(i32 zeroext 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0)
|
||||
|
||||
// MIPS64-LABEL: define void @test1
|
||||
// MIPS64: = load atomic i8* @c1 seq_cst
|
||||
@ -88,6 +88,6 @@ void test1(void) {
|
||||
// MIPS64: store atomic i32 {{.*}}, i32* @i1 seq_cst
|
||||
// MIPS64: = load atomic i64* @ll1 seq_cst
|
||||
// MIPS64: store atomic i64 {{.*}}, i64* @ll1 seq_cst
|
||||
// MIPS64: call void @__atomic_load(i64 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0)
|
||||
// MIPS64: call void @__atomic_store(i64 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0)
|
||||
// MIPS64: call void @__atomic_load(i64 zeroext 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0)
|
||||
// MIPS64: call void @__atomic_store(i64 zeroext 100, i8* getelementptr inbounds ([100 x i8]* @a1, i32 0, i32 0), i8* getelementptr inbounds ([100 x i8]* @a2, i32 0, i32 0)
|
||||
}
|
||||
|
@ -7,8 +7,8 @@ typedef struct {
|
||||
|
||||
extern void foo2(S0);
|
||||
|
||||
// O32-LABEL: define void @foo1(i32 %a0.coerce0, i32 %a0.coerce1, i32 %a0.coerce2)
|
||||
// N64-LABEL: define void @foo1(i64 %a0.coerce0, i32 %a0.coerce1)
|
||||
// O32-LABEL: define void @foo1(i32 inreg %a0.coerce0, i32 inreg %a0.coerce1, i32 inreg %a0.coerce2)
|
||||
// N64-LABEL: define void @foo1(i64 inreg %a0.coerce0, i32 inreg %a0.coerce1)
|
||||
|
||||
void foo1(S0 a0) {
|
||||
foo2(a0);
|
||||
|
176
test/CodeGen/mips-varargs.c
Normal file
176
test/CodeGen/mips-varargs.c
Normal file
@ -0,0 +1,176 @@
|
||||
// RUN: %clang_cc1 -triple mips-unknown-linux -o - -O1 -emit-llvm %s | FileCheck %s -check-prefix=ALL -check-prefix=O32
|
||||
// RUN: %clang_cc1 -triple mipsel-unknown-linux -o - -O1 -emit-llvm %s | FileCheck %s -check-prefix=ALL -check-prefix=O32
|
||||
// RUN: %clang_cc1 -triple mips64-unknown-linux -o - -O1 -emit-llvm -target-abi n32 %s | FileCheck %s -check-prefix=ALL -check-prefix=N32 -check-prefix=NEW
|
||||
// RUN: %clang_cc1 -triple mips64-unknown-linux -o - -O1 -emit-llvm -target-abi n32 %s | FileCheck %s -check-prefix=ALL -check-prefix=N32 -check-prefix=NEW
|
||||
// RUN: %clang_cc1 -triple mips64-unknown-linux -o - -O1 -emit-llvm %s | FileCheck %s -check-prefix=ALL -check-prefix=N64 -check-prefix=NEW
|
||||
// RUN: %clang_cc1 -triple mips64el-unknown-linux -o - -O1 -emit-llvm %s | FileCheck %s -check-prefix=ALL -check-prefix=N64 -check-prefix=NEW
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
typedef int v4i32 __attribute__ ((__vector_size__ (16)));
|
||||
|
||||
int test_i32(char *fmt, ...) {
|
||||
va_list va;
|
||||
|
||||
va_start(va, fmt);
|
||||
int v = va_arg(va, int);
|
||||
va_end(va);
|
||||
|
||||
return v;
|
||||
}
|
||||
|
||||
// ALL-LABEL: define i32 @test_i32(i8*{{.*}} %fmt, ...)
|
||||
//
|
||||
// O32: %va = alloca i8*, align [[PTRALIGN:4]]
|
||||
// N32: %va = alloca i8*, align [[PTRALIGN:4]]
|
||||
// N64: %va = alloca i8*, align [[PTRALIGN:8]]
|
||||
//
|
||||
// ALL: [[VA1:%.+]] = bitcast i8** %va to i8*
|
||||
// ALL: call void @llvm.va_start(i8* [[VA1]])
|
||||
//
|
||||
// ALL: [[AP_CUR:%.+]] = load i8** %va, align [[PTRALIGN]]
|
||||
//
|
||||
// O32: [[TMP0:%.+]] = bitcast i8* [[AP_CUR]] to i32*
|
||||
// NEW: [[TMP0:%.+]] = bitcast i8* [[AP_CUR]] to i64*
|
||||
//
|
||||
// O32: [[AP_NEXT:%.+]] = getelementptr i8* [[AP_CUR]], i32 4
|
||||
// NEW: [[AP_NEXT:%.+]] = getelementptr i8* [[AP_CUR]], {{i32|i64}} 8
|
||||
//
|
||||
// ALL: store i8* [[AP_NEXT]], i8** %va, align [[PTRALIGN]]
|
||||
//
|
||||
// O32: [[ARG1:%.+]] = load i32* [[TMP0]], align 4
|
||||
// NEW: [[TMP2:%.+]] = load i64* [[TMP0]], align 8
|
||||
// NEW: [[ARG1:%.+]] = trunc i64 [[TMP2]] to i32
|
||||
//
|
||||
// ALL: call void @llvm.va_end(i8* [[VA1]])
|
||||
// ALL: ret i32 [[ARG1]]
|
||||
// ALL: }
|
||||
|
||||
int test_i32_2args(char *fmt, ...) {
|
||||
va_list va;
|
||||
|
||||
va_start(va, fmt);
|
||||
int v1 = va_arg(va, int);
|
||||
int v2 = va_arg(va, int);
|
||||
va_end(va);
|
||||
|
||||
return v1 + v2;
|
||||
}
|
||||
|
||||
// ALL-LABEL: define i32 @test_i32_2args(i8*{{.*}} %fmt, ...)
|
||||
//
|
||||
// ALL: %va = alloca i8*, align [[PTRALIGN]]
|
||||
// ALL: [[VA1:%.+]] = bitcast i8** %va to i8*
|
||||
// ALL: call void @llvm.va_start(i8* [[VA1]])
|
||||
//
|
||||
// ALL: [[AP_CUR:%.+]] = load i8** %va, align [[PTRALIGN]]
|
||||
//
|
||||
// O32: [[TMP0:%.+]] = bitcast i8* [[AP_CUR]] to i32*
|
||||
// NEW: [[TMP0:%.+]] = bitcast i8* [[AP_CUR]] to i64*
|
||||
//
|
||||
// O32: [[AP_NEXT:%.+]] = getelementptr i8* [[AP_CUR]], i32 4
|
||||
// NEW: [[AP_NEXT:%.+]] = getelementptr i8* [[AP_CUR]], [[INTPTR_T:i32|i64]] 8
|
||||
//
|
||||
// O32: store i8* [[AP_NEXT]], i8** %va, align [[PTRALIGN]]
|
||||
// FIXME: N32 optimised this store out. Why only for this ABI?
|
||||
// N64: store i8* [[AP_NEXT]], i8** %va, align [[PTRALIGN]]
|
||||
//
|
||||
// O32: [[ARG1:%.+]] = load i32* [[TMP0]], align 4
|
||||
// NEW: [[TMP3:%.+]] = load i64* [[TMP0]], align 8
|
||||
// NEW: [[ARG1:%.+]] = trunc i64 [[TMP3]] to i32
|
||||
//
|
||||
// O32: [[TMP1:%.+]] = bitcast i8* [[AP_NEXT]] to i32*
|
||||
// NEW: [[TMP1:%.+]] = bitcast i8* [[AP_NEXT]] to i64*
|
||||
//
|
||||
// O32: [[AP_NEXT3:%.+]] = getelementptr i8* [[AP_CUR]], i32 8
|
||||
// NEW: [[AP_NEXT3:%.+]] = getelementptr i8* [[AP_CUR]], [[INTPTR_T]] 16
|
||||
//
|
||||
// ALL: store i8* [[AP_NEXT3]], i8** %va, align [[PTRALIGN]]
|
||||
//
|
||||
// O32: [[ARG2:%.+]] = load i32* [[TMP1]], align 4
|
||||
// NEW: [[TMP4:%.+]] = load i64* [[TMP1]], align 8
|
||||
// NEW: [[ARG2:%.+]] = trunc i64 [[TMP4]] to i32
|
||||
//
|
||||
// ALL: call void @llvm.va_end(i8* [[VA1]])
|
||||
// ALL: [[ADD:%.+]] = add nsw i32 [[ARG2]], [[ARG1]]
|
||||
// ALL: ret i32 [[ADD]]
|
||||
// ALL: }
|
||||
|
||||
long long test_i64(char *fmt, ...) {
|
||||
va_list va;
|
||||
|
||||
va_start(va, fmt);
|
||||
long long v = va_arg(va, long long);
|
||||
va_end(va);
|
||||
|
||||
return v;
|
||||
}
|
||||
|
||||
// ALL-LABEL: define i64 @test_i64(i8*{{.*}} %fmt, ...)
|
||||
//
|
||||
// ALL: %va = alloca i8*, align [[PTRALIGN]]
|
||||
// ALL: [[VA1:%.+]] = bitcast i8** %va to i8*
|
||||
// ALL: call void @llvm.va_start(i8* [[VA1]])
|
||||
//
|
||||
// ALL: [[AP_CUR:%.+]] = load i8** %va, align [[PTRALIGN]]
|
||||
//
|
||||
// NEW: [[TMP0:%.+]] = bitcast i8* [[AP_CUR]] to i64*
|
||||
//
|
||||
// i64 is 8-byte aligned, while this is within O32's stack alignment there's no
|
||||
// guarantee that the offset is still 8-byte aligned after earlier reads.
|
||||
// O32: [[PTR0:%.+]] = ptrtoint i8* [[AP_CUR]] to [[INTPTR_T:i32]]
|
||||
// O32: [[PTR1:%.+]] = add i32 [[PTR0]], 7
|
||||
// O32: [[PTR2:%.+]] = and i32 [[PTR1]], -8
|
||||
// O32: [[PTR3:%.+]] = inttoptr [[INTPTR_T]] [[PTR2]] to i64*
|
||||
// O32: [[PTR4:%.+]] = inttoptr [[INTPTR_T]] [[PTR2]] to i8*
|
||||
//
|
||||
// O32: [[AP_NEXT:%.+]] = getelementptr i8* [[PTR4]], [[INTPTR_T]] 8
|
||||
// NEW: [[AP_NEXT:%.+]] = getelementptr i8* [[AP_CUR]], [[INTPTR_T]] 8
|
||||
//
|
||||
// ALL: store i8* [[AP_NEXT]], i8** %va, align [[PTRALIGN]]
|
||||
//
|
||||
// O32: [[ARG1:%.+]] = load i64* [[PTR3]], align 8
|
||||
// NEW: [[ARG1:%.+]] = load i64* [[TMP0]], align 8
|
||||
//
|
||||
// ALL: call void @llvm.va_end(i8* [[VA1]])
|
||||
// ALL: ret i64 [[ARG1]]
|
||||
// ALL: }
|
||||
|
||||
int test_v4i32(char *fmt, ...) {
|
||||
va_list va;
|
||||
|
||||
va_start(va, fmt);
|
||||
v4i32 v = va_arg(va, v4i32);
|
||||
va_end(va);
|
||||
|
||||
return v[0];
|
||||
}
|
||||
|
||||
// ALL-LABEL: define i32 @test_v4i32(i8*{{.*}} %fmt, ...)
|
||||
//
|
||||
// ALL: %va = alloca i8*, align [[PTRALIGN]]
|
||||
// ALL: [[VA1:%.+]] = bitcast i8** %va to i8*
|
||||
// ALL: call void @llvm.va_start(i8* [[VA1]])
|
||||
// ALL: [[AP_CUR:%.+]] = load i8** %va, align [[PTRALIGN]]
|
||||
//
|
||||
// O32: [[PTR0:%.+]] = ptrtoint i8* [[AP_CUR]] to [[INTPTR_T:i32]]
|
||||
// N32: [[PTR0:%.+]] = ptrtoint i8* [[AP_CUR]] to [[INTPTR_T:i32]]
|
||||
// N64: [[PTR0:%.+]] = ptrtoint i8* [[AP_CUR]] to [[INTPTR_T:i64]]
|
||||
//
|
||||
// Vectors are 16-byte aligned, however the O32 ABI has a maximum alignment of
|
||||
// 8-bytes since the base of the stack is 8-byte aligned.
|
||||
// O32: [[PTR1:%.+]] = add i32 [[PTR0]], 7
|
||||
// O32: [[PTR2:%.+]] = and i32 [[PTR1]], -8
|
||||
//
|
||||
// NEW: [[PTR1:%.+]] = add [[INTPTR_T]] [[PTR0]], 15
|
||||
// NEW: [[PTR2:%.+]] = and [[INTPTR_T]] [[PTR1]], -16
|
||||
//
|
||||
// ALL: [[PTR3:%.+]] = inttoptr [[INTPTR_T]] [[PTR2]] to <4 x i32>*
|
||||
// ALL: [[PTR4:%.+]] = inttoptr [[INTPTR_T]] [[PTR2]] to i8*
|
||||
// ALL: [[AP_NEXT:%.+]] = getelementptr i8* [[PTR4]], [[INTPTR_T]] 16
|
||||
// ALL: store i8* [[AP_NEXT]], i8** %va, align [[PTRALIGN]]
|
||||
// ALL: [[PTR5:%.+]] = load <4 x i32>* [[PTR3]], align 16
|
||||
// ALL: call void @llvm.va_end(i8* [[VA1]])
|
||||
// ALL: [[VECEXT:%.+]] = extractelement <4 x i32> [[PTR5]], i32 0
|
||||
// ALL: ret i32 [[VECEXT]]
|
||||
// ALL: }
|
@ -8,19 +8,19 @@
|
||||
typedef float v4sf __attribute__ ((__vector_size__ (16)));
|
||||
typedef int v4i32 __attribute__ ((__vector_size__ (16)));
|
||||
|
||||
// O32: define void @test_v4sf(i32 %a1.coerce0, i32 %a1.coerce1, i32 %a1.coerce2, i32 %a1.coerce3, i32 %a2, i32, i32 %a3.coerce0, i32 %a3.coerce1, i32 %a3.coerce2, i32 %a3.coerce3) [[NUW:#[0-9]+]]
|
||||
// O32: declare i32 @test_v4sf_2(i32, i32, i32, i32, i32, i32, i32, i32, i32, i32)
|
||||
// N64: define void @test_v4sf(i64 %a1.coerce0, i64 %a1.coerce1, i32 %a2, i64, i64 %a3.coerce0, i64 %a3.coerce1) [[NUW:#[0-9]+]]
|
||||
// N64: declare i32 @test_v4sf_2(i64, i64, i32, i64, i64, i64)
|
||||
// O32: define void @test_v4sf(i32 inreg %a1.coerce0, i32 inreg %a1.coerce1, i32 inreg %a1.coerce2, i32 inreg %a1.coerce3, i32 signext %a2, i32, i32 inreg %a3.coerce0, i32 inreg %a3.coerce1, i32 inreg %a3.coerce2, i32 inreg %a3.coerce3) [[NUW:#[0-9]+]]
|
||||
// O32: declare i32 @test_v4sf_2(i32 inreg, i32 inreg, i32 inreg, i32 inreg, i32 signext, i32, i32 inreg, i32 inreg, i32 inreg, i32 inreg)
|
||||
// N64: define void @test_v4sf(i64 inreg %a1.coerce0, i64 inreg %a1.coerce1, i32 signext %a2, i64, i64 inreg %a3.coerce0, i64 inreg %a3.coerce1) [[NUW:#[0-9]+]]
|
||||
// N64: declare i32 @test_v4sf_2(i64 inreg, i64 inreg, i32 signext, i64, i64 inreg, i64 inreg)
|
||||
extern test_v4sf_2(v4sf, int, v4sf);
|
||||
void test_v4sf(v4sf a1, int a2, v4sf a3) {
|
||||
test_v4sf_2(a3, a2, a1);
|
||||
}
|
||||
|
||||
// O32: define void @test_v4i32(i32 %a1.coerce0, i32 %a1.coerce1, i32 %a1.coerce2, i32 %a1.coerce3, i32 %a2, i32, i32 %a3.coerce0, i32 %a3.coerce1, i32 %a3.coerce2, i32 %a3.coerce3) [[NUW]]
|
||||
// O32: declare i32 @test_v4i32_2(i32, i32, i32, i32, i32, i32, i32, i32, i32, i32)
|
||||
// N64: define void @test_v4i32(i64 %a1.coerce0, i64 %a1.coerce1, i32 %a2, i64, i64 %a3.coerce0, i64 %a3.coerce1) [[NUW]]
|
||||
// N64: declare i32 @test_v4i32_2(i64, i64, i32, i64, i64, i64)
|
||||
// O32: define void @test_v4i32(i32 inreg %a1.coerce0, i32 inreg %a1.coerce1, i32 inreg %a1.coerce2, i32 inreg %a1.coerce3, i32 signext %a2, i32, i32 inreg %a3.coerce0, i32 inreg %a3.coerce1, i32 inreg %a3.coerce2, i32 inreg %a3.coerce3) [[NUW]]
|
||||
// O32: declare i32 @test_v4i32_2(i32 inreg, i32 inreg, i32 inreg, i32 inreg, i32 signext, i32, i32 inreg, i32 inreg, i32 inreg, i32 inreg)
|
||||
// N64: define void @test_v4i32(i64 inreg %a1.coerce0, i64 inreg %a1.coerce1, i32 signext %a2, i64, i64 inreg %a3.coerce0, i64 inreg %a3.coerce1) [[NUW]]
|
||||
// N64: declare i32 @test_v4i32_2(i64 inreg, i64 inreg, i32 signext, i64, i64 inreg, i64 inreg)
|
||||
extern test_v4i32_2(v4i32, int, v4i32);
|
||||
void test_v4i32(v4i32 a1, int a2, v4i32 a3) {
|
||||
test_v4i32_2(a3, a2, a1);
|
||||
|
@ -9,7 +9,7 @@ typedef double v4df __attribute__ ((__vector_size__ (32)));
|
||||
typedef int v4i32 __attribute__ ((__vector_size__ (16)));
|
||||
|
||||
// O32-LABEL: define void @test_v4sf(<4 x float>* noalias nocapture sret
|
||||
// N64: define { i64, i64 } @test_v4sf
|
||||
// N64: define inreg { i64, i64 } @test_v4sf
|
||||
v4sf test_v4sf(float a) {
|
||||
return (v4sf){0.0f, a, 0.0f, 0.0f};
|
||||
}
|
||||
@ -23,8 +23,8 @@ v4df test_v4df(double a) {
|
||||
// O32 returns integer vectors whose size is equal to or smaller than 16-bytes
|
||||
// in integer registers.
|
||||
//
|
||||
// O32: define { i32, i32, i32, i32 } @test_v4i32
|
||||
// N64: define { i64, i64 } @test_v4i32
|
||||
// O32: define inreg { i32, i32, i32, i32 } @test_v4i32
|
||||
// N64: define inreg { i64, i64 } @test_v4i32
|
||||
v4i32 test_v4i32(int a) {
|
||||
return (v4i32){0, a, 0, 0};
|
||||
}
|
||||
|
16
test/CodeGen/mips-zero-sized-struct.c
Normal file
16
test/CodeGen/mips-zero-sized-struct.c
Normal file
@ -0,0 +1,16 @@
|
||||
// RUN: %clang -target mips-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck -check-prefix=O32 %s
|
||||
// RUN: %clang -target mipsel-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck -check-prefix=O32 %s
|
||||
// RUN: %clang -target mips64-unknown-linux-gnu -S -emit-llvm -o - %s -mabi=n32 | FileCheck -check-prefix=N32 %s
|
||||
// RUN: %clang -target mips64el-unknown-linux-gnu -S -emit-llvm -o - %s -mabi=n32 | FileCheck -check-prefix=N32 %s
|
||||
// RUN: %clang -target mips64-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck -check-prefix=N64 %s
|
||||
// RUN: %clang -target mips64el-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck -check-prefix=N64 %s
|
||||
|
||||
// O32: define void @fn28(%struct.T2* noalias sret %agg.result, i8 signext %arg0)
|
||||
// N32: define void @fn28(i8 signext %arg0)
|
||||
// N64: define void @fn28(i8 signext %arg0)
|
||||
|
||||
typedef struct T2 { } T2;
|
||||
T2 T2_retval;
|
||||
T2 fn28(char arg0) {
|
||||
return T2_retval;
|
||||
}
|
@ -24,22 +24,22 @@ extern D0 gd0;
|
||||
extern D1 gd1;
|
||||
extern D2 gd2;
|
||||
|
||||
// CHECK: define { i64, i64 } @_Z4foo1v()
|
||||
// CHECK: define inreg { i64, i64 } @_Z4foo1v()
|
||||
D0 foo1(void) {
|
||||
return gd0;
|
||||
}
|
||||
|
||||
// CHECK: define { double, float } @_Z4foo2v()
|
||||
// CHECK: define inreg { double, float } @_Z4foo2v()
|
||||
D1 foo2(void) {
|
||||
return gd1;
|
||||
}
|
||||
|
||||
// CHECK-LABEL: define void @_Z4foo32D2(i64 %a0.coerce0, double %a0.coerce1)
|
||||
// CHECK-LABEL: define void @_Z4foo32D2(i64 inreg %a0.coerce0, double inreg %a0.coerce1)
|
||||
void foo3(D2 a0) {
|
||||
gd2 = a0;
|
||||
}
|
||||
|
||||
// CHECK-LABEL: define void @_Z4foo42D0(i64 %a0.coerce0, i64 %a0.coerce1)
|
||||
// CHECK-LABEL: define void @_Z4foo42D0(i64 inreg %a0.coerce0, i64 inreg %a0.coerce1)
|
||||
void foo4(D0 a0) {
|
||||
gd0 = a0;
|
||||
}
|
||||
|
@ -9,9 +9,9 @@ typedef struct {
|
||||
|
||||
// Insert padding to ensure arguments of type S0 are aligned to 16-byte boundaries.
|
||||
|
||||
// N64-LABEL: define void @foo1(i32 %a0, i64, double %a1.coerce0, i64 %a1.coerce1, i64 %a1.coerce2, i64 %a1.coerce3, double %a2.coerce0, i64 %a2.coerce1, i64 %a2.coerce2, i64 %a2.coerce3, i32 %b, i64, double %a3.coerce0, i64 %a3.coerce1, i64 %a3.coerce2, i64 %a3.coerce3)
|
||||
// N64: tail call void @foo2(i32 1, i32 2, i32 %a0, i64 undef, double %a1.coerce0, i64 %a1.coerce1, i64 %a1.coerce2, i64 %a1.coerce3, double %a2.coerce0, i64 %a2.coerce1, i64 %a2.coerce2, i64 %a2.coerce3, i32 3, i64 undef, double %a3.coerce0, i64 %a3.coerce1, i64 %a3.coerce2, i64 %a3.coerce3)
|
||||
// N64: declare void @foo2(i32, i32, i32, i64, double, i64, i64, i64, double, i64, i64, i64, i32, i64, double, i64, i64, i64)
|
||||
// N64-LABEL: define void @foo1(i32 signext %a0, i64, double inreg %a1.coerce0, i64 inreg %a1.coerce1, i64 inreg %a1.coerce2, i64 inreg %a1.coerce3, double inreg %a2.coerce0, i64 inreg %a2.coerce1, i64 inreg %a2.coerce2, i64 inreg %a2.coerce3, i32 signext %b, i64, double inreg %a3.coerce0, i64 inreg %a3.coerce1, i64 inreg %a3.coerce2, i64 inreg %a3.coerce3)
|
||||
// N64: tail call void @foo2(i32 signext 1, i32 signext 2, i32 signext %a0, i64 undef, double inreg %a1.coerce0, i64 inreg %a1.coerce1, i64 inreg %a1.coerce2, i64 inreg %a1.coerce3, double inreg %a2.coerce0, i64 inreg %a2.coerce1, i64 inreg %a2.coerce2, i64 inreg %a2.coerce3, i32 signext 3, i64 undef, double inreg %a3.coerce0, i64 inreg %a3.coerce1, i64 inreg %a3.coerce2, i64 inreg %a3.coerce3)
|
||||
// N64: declare void @foo2(i32 signext, i32 signext, i32 signext, i64, double inreg, i64 inreg, i64 inreg, i64 inreg, double inreg, i64 inreg, i64 inreg, i64 inreg, i32 signext, i64, double inreg, i64 inreg, i64 inreg, i64 inreg)
|
||||
|
||||
extern void foo2(int, int, int, S0, S0, int, S0);
|
||||
|
||||
@ -21,9 +21,9 @@ void foo1(int a0, S0 a1, S0 a2, int b, S0 a3) {
|
||||
|
||||
// Insert padding before long double argument.
|
||||
//
|
||||
// N64-LABEL: define void @foo3(i32 %a0, i64, fp128 %a1)
|
||||
// N64: tail call void @foo4(i32 1, i32 2, i32 %a0, i64 undef, fp128 %a1)
|
||||
// N64: declare void @foo4(i32, i32, i32, i64, fp128)
|
||||
// N64-LABEL: define void @foo3(i32 signext %a0, i64, fp128 %a1)
|
||||
// N64: tail call void @foo4(i32 signext 1, i32 signext 2, i32 signext %a0, i64 undef, fp128 %a1)
|
||||
// N64: declare void @foo4(i32 signext, i32 signext, i32 signext, i64, fp128)
|
||||
|
||||
extern void foo4(int, int, int, long double);
|
||||
|
||||
@ -34,8 +34,8 @@ void foo3(int a0, long double a1) {
|
||||
// Insert padding after hidden argument.
|
||||
//
|
||||
// N64-LABEL: define void @foo5(%struct.S0* noalias sret %agg.result, i64, fp128 %a0)
|
||||
// N64: call void @foo6(%struct.S0* sret %agg.result, i32 1, i32 2, i64 undef, fp128 %a0)
|
||||
// N64: declare void @foo6(%struct.S0* sret, i32, i32, i64, fp128)
|
||||
// N64: call void @foo6(%struct.S0* sret %agg.result, i32 signext 1, i32 signext 2, i64 undef, fp128 %a0)
|
||||
// N64: declare void @foo6(%struct.S0* sret, i32 signext, i32 signext, i64, fp128)
|
||||
|
||||
extern S0 foo6(int, int, long double);
|
||||
|
||||
@ -55,7 +55,7 @@ void foo7(float a0, double a1) {
|
||||
}
|
||||
|
||||
// O32-LABEL: define void @foo9()
|
||||
// O32: declare void @foo10(i32, i32
|
||||
// O32: declare void @foo10(i32 signext, i32
|
||||
|
||||
typedef struct __attribute__((aligned(16))) {
|
||||
int a;
|
||||
|
@ -10,13 +10,13 @@ long *alloc_long() {
|
||||
return rv;
|
||||
}
|
||||
// O32-LABEL: define i32* @_Z10alloc_longv()
|
||||
// O32: call noalias i8* @_Znwj(i32 4)
|
||||
// O32: call noalias i8* @_Znwj(i32 zeroext 4)
|
||||
|
||||
// N32-LABEL: define i32* @_Z10alloc_longv()
|
||||
// N32: call noalias i8* @_Znwj(i32 4)
|
||||
// N32: call noalias i8* @_Znwj(i32 zeroext 4)
|
||||
|
||||
// N64-LABEL: define i64* @_Z10alloc_longv()
|
||||
// N64: call noalias i8* @_Znwm(i64 8)
|
||||
// N64: call noalias i8* @_Znwm(i64 zeroext 8)
|
||||
|
||||
long *alloc_long_array() {
|
||||
long *rv = new long[2];
|
||||
@ -24,13 +24,13 @@ long *alloc_long_array() {
|
||||
}
|
||||
|
||||
// O32-LABEL: define i32* @_Z16alloc_long_arrayv()
|
||||
// O32: call noalias i8* @_Znaj(i32 8)
|
||||
// O32: call noalias i8* @_Znaj(i32 zeroext 8)
|
||||
|
||||
// N32-LABEL: define i32* @_Z16alloc_long_arrayv()
|
||||
// N32: call noalias i8* @_Znaj(i32 8)
|
||||
// N32: call noalias i8* @_Znaj(i32 zeroext 8)
|
||||
|
||||
// N64-LABEL: define i64* @_Z16alloc_long_arrayv()
|
||||
// N64: call noalias i8* @_Znam(i64 16)
|
||||
// N64: call noalias i8* @_Znam(i64 zeroext 16)
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
|
@ -9,73 +9,73 @@
|
||||
// MFLAGS-NOT: argument unused during compilation
|
||||
|
||||
// -arch:IA32 is no-op.
|
||||
// RUN: %clang_cl -m32 -arch:IA32 -### -- 2>&1 %s | FileCheck -check-prefix=IA32 %s
|
||||
// RUN: %clang_cl -m32 -arch:IA32 --target=i386 -### -- 2>&1 %s | FileCheck -check-prefix=IA32 %s
|
||||
// IA32-NOT: argument unused during compilation
|
||||
// IA32-NOT: -target-feature
|
||||
|
||||
// RUN: %clang_cl -m32 -arch:ia32 -### -- 2>&1 %s | FileCheck -check-prefix=ia32 %s
|
||||
// RUN: %clang_cl -m32 -arch:ia32 --target=i386 -### -- 2>&1 %s | FileCheck -check-prefix=ia32 %s
|
||||
// ia32: argument unused during compilation
|
||||
// ia32-NOT: -target-feature
|
||||
|
||||
// RUN: %clang_cl -m64 -arch:IA32 -### -- 2>&1 %s | FileCheck -check-prefix=IA3264 %s
|
||||
// RUN: %clang_cl -m64 -arch:IA32 --target=x86_64 -### -- 2>&1 %s | FileCheck -check-prefix=IA3264 %s
|
||||
// IA3264: argument unused during compilation
|
||||
// IA3264-NOT: -target-feature
|
||||
|
||||
// RUN: %clang_cl -m32 -arch:SSE -### -- 2>&1 %s | FileCheck -check-prefix=SSE %s
|
||||
// RUN: %clang_cl -m32 -arch:SSE --target=i386 -### -- 2>&1 %s | FileCheck -check-prefix=SSE %s
|
||||
// SSE: -target-feature
|
||||
// SSE: +sse
|
||||
// SSE-NOT: argument unused during compilation
|
||||
|
||||
// RUN: %clang_cl -m32 -arch:sse -### -- 2>&1 %s | FileCheck -check-prefix=sse %s
|
||||
// RUN: %clang_cl -m32 -arch:sse --target=i386 -### -- 2>&1 %s | FileCheck -check-prefix=sse %s
|
||||
// sse: argument unused during compilation
|
||||
// sse-NOT: -target-feature
|
||||
|
||||
// RUN: %clang_cl -m32 -arch:SSE2 -### -- 2>&1 %s | FileCheck -check-prefix=SSE2 %s
|
||||
// RUN: %clang_cl -m32 -arch:SSE2 --target=i386 -### -- 2>&1 %s | FileCheck -check-prefix=SSE2 %s
|
||||
// SSE2: -target-feature
|
||||
// SSE2: +sse2
|
||||
// SSE2-NOT: argument unused during compilation
|
||||
|
||||
// RUN: %clang_cl -m32 -arch:sse2 -### -- 2>&1 %s | FileCheck -check-prefix=sse %s
|
||||
// RUN: %clang_cl -m32 -arch:sse2 --target=i386 -### -- 2>&1 %s | FileCheck -check-prefix=sse %s
|
||||
// sse2: argument unused during compilation
|
||||
// sse2-NOT: -target-feature
|
||||
|
||||
// RUN: %clang_cl -m64 -arch:SSE -### -- 2>&1 %s | FileCheck -check-prefix=SSE64 %s
|
||||
// RUN: %clang_cl -m64 -arch:SSE --target=x86_64 -### -- 2>&1 %s | FileCheck -check-prefix=SSE64 %s
|
||||
// SSE64: argument unused during compilation
|
||||
// SSE64-NOT: -target-feature
|
||||
|
||||
// RUN: %clang_cl -m64 -arch:SSE2 -### -- 2>&1 %s | FileCheck -check-prefix=SSE264 %s
|
||||
// RUN: %clang_cl -m64 -arch:SSE2 --target=x86_64 -### -- 2>&1 %s | FileCheck -check-prefix=SSE264 %s
|
||||
// SSE264: argument unused during compilation
|
||||
// SSE264-NOT: -target-feature
|
||||
|
||||
// RUN: %clang_cl -m32 -arch:AVX -### -- 2>&1 %s | FileCheck -check-prefix=AVX %s
|
||||
// RUN: %clang_cl -m32 -arch:AVX --target=i386 -### -- 2>&1 %s | FileCheck -check-prefix=AVX %s
|
||||
// AVX: -target-feature
|
||||
// AVX: +avx
|
||||
|
||||
// RUN: %clang_cl -m32 -arch:avx -### -- 2>&1 %s | FileCheck -check-prefix=avx %s
|
||||
// RUN: %clang_cl -m32 -arch:avx --target=i386 -### -- 2>&1 %s | FileCheck -check-prefix=avx %s
|
||||
// avx: argument unused during compilation
|
||||
// avx-NOT: -target-feature
|
||||
|
||||
// RUN: %clang_cl -m32 -arch:AVX2 -### -- 2>&1 %s | FileCheck -check-prefix=AVX2 %s
|
||||
// RUN: %clang_cl -m32 -arch:AVX2 --target=i386 -### -- 2>&1 %s | FileCheck -check-prefix=AVX2 %s
|
||||
// AVX2: -target-feature
|
||||
// AVX2: +avx2
|
||||
|
||||
// RUN: %clang_cl -m32 -arch:avx2 -### -- 2>&1 %s | FileCheck -check-prefix=avx2 %s
|
||||
// RUN: %clang_cl -m32 -arch:avx2 --target=i386 -### -- 2>&1 %s | FileCheck -check-prefix=avx2 %s
|
||||
// avx2: argument unused during compilation
|
||||
// avx2-NOT: -target-feature
|
||||
|
||||
// RUN: %clang_cl -m64 -arch:AVX -### -- 2>&1 %s | FileCheck -check-prefix=AVX64 %s
|
||||
// RUN: %clang_cl -m64 -arch:AVX --target=x86_64 -### -- 2>&1 %s | FileCheck -check-prefix=AVX64 %s
|
||||
// AVX64: -target-feature
|
||||
// AVX64: +avx
|
||||
|
||||
// RUN: %clang_cl -m64 -arch:avx -### -- 2>&1 %s | FileCheck -check-prefix=avx64 %s
|
||||
// RUN: %clang_cl -m64 -arch:avx --target=x86_64 -### -- 2>&1 %s | FileCheck -check-prefix=avx64 %s
|
||||
// avx64: argument unused during compilation
|
||||
// avx64-NOT: -target-feature
|
||||
|
||||
// RUN: %clang_cl -m64 -arch:AVX2 -### -- 2>&1 %s | FileCheck -check-prefix=AVX264 %s
|
||||
// RUN: %clang_cl -m64 -arch:AVX2 --target=x86_64 -### -- 2>&1 %s | FileCheck -check-prefix=AVX264 %s
|
||||
// AVX264: -target-feature
|
||||
// AVX264: +avx2
|
||||
|
||||
// RUN: %clang_cl -m64 -arch:avx2 -### -- 2>&1 %s | FileCheck -check-prefix=avx264 %s
|
||||
// RUN: %clang_cl -m64 -arch:avx2 --target=x86_64 -### -- 2>&1 %s | FileCheck -check-prefix=avx264 %s
|
||||
// avx264: argument unused during compilation
|
||||
// avx264-NOT: -target-feature
|
||||
|
||||
|
@ -17,6 +17,7 @@
|
||||
// CHECK-BE-HF-32: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-BE-HF-32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF-32: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc"
|
||||
// CHECK-BE-HF-32: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-HF-32: "[[TC]]/../../../../mips-linux-gnu/libc/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF-32: "[[TC]]/../../../../mips-linux-gnu/libc/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF-32: "[[TC]]{{/|\\\\}}crtbegin.o"
|
||||
@ -44,6 +45,7 @@
|
||||
// CHECK-BE-HF-16: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-BE-HF-16: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF-16: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/mips16"
|
||||
// CHECK-BE-HF-16: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-HF-16: "[[TC]]/../../../../mips-linux-gnu/libc/mips16/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF-16: "[[TC]]/../../../../mips-linux-gnu/libc/mips16/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF-16: "[[TC]]/mips16{{/|\\\\}}crtbegin.o"
|
||||
@ -72,6 +74,7 @@
|
||||
// CHECK-BE-HF-MICRO: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-BE-HF-MICRO: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF-MICRO: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/micromips"
|
||||
// CHECK-BE-HF-MICRO: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-HF-MICRO: "[[TC]]/../../../../mips-linux-gnu/libc/micromips/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF-MICRO: "[[TC]]/../../../../mips-linux-gnu/libc/micromips/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF-MICRO: "[[TC]]/micromips{{/|\\\\}}crtbegin.o"
|
||||
@ -100,6 +103,7 @@
|
||||
// CHECK-BE-HF-NAN: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-BE-HF-NAN: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF-NAN: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/nan2008"
|
||||
// CHECK-BE-HF-NAN: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-HF-NAN: "[[TC]]/../../../../mips-linux-gnu/libc/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF-NAN: "[[TC]]/../../../../mips-linux-gnu/libc/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF-NAN: "[[TC]]/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -128,6 +132,7 @@
|
||||
// CHECK-BE-SF-32: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-BE-SF-32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-SF-32: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/soft-float"
|
||||
// CHECK-BE-SF-32: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-SF-32: "[[TC]]/../../../../mips-linux-gnu/libc/soft-float/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-SF-32: "[[TC]]/../../../../mips-linux-gnu/libc/soft-float/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-SF-32: "[[TC]]/soft-float{{/|\\\\}}crtbegin.o"
|
||||
@ -156,6 +161,7 @@
|
||||
// CHECK-BE-SF-16: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-BE-SF-16: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-SF-16: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/mips16/soft-float"
|
||||
// CHECK-BE-SF-16: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-SF-16: "[[TC]]/../../../../mips-linux-gnu/libc/mips16/soft-float/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-SF-16: "[[TC]]/../../../../mips-linux-gnu/libc/mips16/soft-float/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-SF-16: "[[TC]]/mips16/soft-float{{/|\\\\}}crtbegin.o"
|
||||
@ -184,6 +190,7 @@
|
||||
// CHECK-BE-SF-MICRO: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-BE-SF-MICRO: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-SF-MICRO: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/micromips/soft-float"
|
||||
// CHECK-BE-SF-MICRO: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-SF-MICRO: "[[TC]]/../../../../mips-linux-gnu/libc/micromips/soft-float/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-SF-MICRO: "[[TC]]/../../../../mips-linux-gnu/libc/micromips/soft-float/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-SF-MICRO: "[[TC]]/micromips/soft-float{{/|\\\\}}crtbegin.o"
|
||||
@ -212,6 +219,7 @@
|
||||
// CHECK-BE-HF-64: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-BE-HF-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF-64: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc"
|
||||
// CHECK-BE-HF-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-BE-HF-64: "[[TC]]/../../../../mips-linux-gnu/libc/usr/lib/../lib64{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF-64: "[[TC]]/../../../../mips-linux-gnu/libc/usr/lib/../lib64{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF-64: "[[TC]]/64{{/|\\\\}}crtbegin.o"
|
||||
@ -240,6 +248,7 @@
|
||||
// CHECK-BE-SF-64: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-BE-SF-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-SF-64: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/soft-float"
|
||||
// CHECK-BE-SF-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-BE-SF-64: "[[TC]]/../../../../mips-linux-gnu/libc/soft-float/usr/lib/../lib64{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-SF-64: "[[TC]]/../../../../mips-linux-gnu/libc/soft-float/usr/lib/../lib64{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-SF-64: "[[TC]]/soft-float/64{{/|\\\\}}crtbegin.o"
|
||||
@ -268,6 +277,7 @@
|
||||
// CHECK-EL-HF-32: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-EL-HF-32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF-32: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/el"
|
||||
// CHECK-EL-HF-32: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-HF-32: "[[TC]]/../../../../mips-linux-gnu/libc/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF-32: "[[TC]]/../../../../mips-linux-gnu/libc/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF-32: "[[TC]]/el{{/|\\\\}}crtbegin.o"
|
||||
@ -296,6 +306,7 @@
|
||||
// CHECK-EL-HF-16: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-EL-HF-16: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF-16: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/mips16/el"
|
||||
// CHECK-EL-HF-16: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-HF-16: "[[TC]]/../../../../mips-linux-gnu/libc/mips16/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF-16: "[[TC]]/../../../../mips-linux-gnu/libc/mips16/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF-16: "[[TC]]/mips16/el{{/|\\\\}}crtbegin.o"
|
||||
@ -324,6 +335,7 @@
|
||||
// CHECK-EL-HF-MICRO: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-EL-HF-MICRO: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF-MICRO: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/micromips/el"
|
||||
// CHECK-EL-HF-MICRO: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-HF-MICRO: "[[TC]]/../../../../mips-linux-gnu/libc/micromips/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF-MICRO: "[[TC]]/../../../../mips-linux-gnu/libc/micromips/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF-MICRO: "[[TC]]/micromips/el{{/|\\\\}}crtbegin.o"
|
||||
@ -352,6 +364,7 @@
|
||||
// CHECK-EL-HF-NAN: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-EL-HF-NAN: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF-NAN: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/nan2008/el"
|
||||
// CHECK-EL-HF-NAN: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-HF-NAN: "[[TC]]/../../../../mips-linux-gnu/libc/nan2008/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF-NAN: "[[TC]]/../../../../mips-linux-gnu/libc/nan2008/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF-NAN: "[[TC]]/nan2008/el{{/|\\\\}}crtbegin.o"
|
||||
@ -380,6 +393,7 @@
|
||||
// CHECK-EL-SF-32: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-EL-SF-32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-SF-32: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/soft-float/el"
|
||||
// CHECK-EL-SF-32: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-SF-32: "[[TC]]/../../../../mips-linux-gnu/libc/soft-float/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-SF-32: "[[TC]]/../../../../mips-linux-gnu/libc/soft-float/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-SF-32: "[[TC]]/soft-float/el{{/|\\\\}}crtbegin.o"
|
||||
@ -408,6 +422,7 @@
|
||||
// CHECK-EL-SF-16: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-EL-SF-16: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-SF-16: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/mips16/soft-float/el"
|
||||
// CHECK-EL-SF-16: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-SF-16: "[[TC]]/../../../../mips-linux-gnu/libc/mips16/soft-float/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-SF-16: "[[TC]]/../../../../mips-linux-gnu/libc/mips16/soft-float/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-SF-16: "[[TC]]/mips16/soft-float/el{{/|\\\\}}crtbegin.o"
|
||||
@ -436,6 +451,7 @@
|
||||
// CHECK-EL-SF-MICRO: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-EL-SF-MICRO: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-SF-MICRO: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/micromips/soft-float/el"
|
||||
// CHECK-EL-SF-MICRO: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-SF-MICRO: "[[TC]]/../../../../mips-linux-gnu/libc/micromips/soft-float/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-SF-MICRO: "[[TC]]/../../../../mips-linux-gnu/libc/micromips/soft-float/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-SF-MICRO: "[[TC]]/micromips/soft-float/el{{/|\\\\}}crtbegin.o"
|
||||
@ -464,6 +480,7 @@
|
||||
// CHECK-EL-HF-64: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-EL-HF-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF-64: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/el"
|
||||
// CHECK-EL-HF-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-EL-HF-64: "[[TC]]/../../../../mips-linux-gnu/libc/el/usr/lib/../lib64{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF-64: "[[TC]]/../../../../mips-linux-gnu/libc/el/usr/lib/../lib64{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF-64: "[[TC]]/el/64{{/|\\\\}}crtbegin.o"
|
||||
@ -492,6 +509,7 @@
|
||||
// CHECK-EL-SF-64: "[[TC]]/../../../../mips-linux-gnu/libc/usr/include"
|
||||
// CHECK-EL-SF-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-SF-64: "--sysroot=[[TC]]/../../../../mips-linux-gnu/libc/soft-float/el"
|
||||
// CHECK-EL-SF-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-EL-SF-64: "[[TC]]/../../../../mips-linux-gnu/libc/soft-float/el/usr/lib/../lib64{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-SF-64: "[[TC]]/../../../../mips-linux-gnu/libc/soft-float/el/usr/lib/../lib64{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-SF-64: "[[TC]]/soft-float/el/64{{/|\\\\}}crtbegin.o"
|
||||
|
@ -17,6 +17,7 @@
|
||||
// CHECK-BE-HF-32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF-32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF-32: "--sysroot=[[TC]]/../../../../sysroot/mips32"
|
||||
// CHECK-BE-HF-32: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-HF-32: "[[TC]]/../../../../sysroot/mips32/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF-32: "[[TC]]/../../../../sysroot/mips32/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF-32: "[[TC]]/mips32{{/|\\\\}}crtbegin.o"
|
||||
@ -43,6 +44,7 @@
|
||||
// CHECK-BE-HF64-32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF64-32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF64-32: "--sysroot=[[TC]]/../../../../sysroot/mips32"
|
||||
// CHECK-BE-HF64-32: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-HF64-32: "[[TC]]/../../../../sysroot/mips32/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF64-32: "[[TC]]/../../../../sysroot/mips32/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF64-32: "[[TC]]/mips32{{/|\\\\}}crtbegin.o"
|
||||
@ -69,6 +71,7 @@
|
||||
// CHECK-BE-SF-32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-SF-32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-SF-32: "--sysroot=[[TC]]/../../../../sysroot/mips32/sof"
|
||||
// CHECK-BE-SF-32: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-SF-32: "[[TC]]/../../../../sysroot/mips32/sof/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-SF-32: "[[TC]]/../../../../sysroot/mips32/sof/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-SF-32: "[[TC]]/mips32/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -95,6 +98,7 @@
|
||||
// CHECK-BE-HF-16: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF-16: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF-16: "--sysroot=[[TC]]/../../../../sysroot/mips32/mips16"
|
||||
// CHECK-BE-HF-16: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-HF-16: "[[TC]]/../../../../sysroot/mips32/mips16/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF-16: "[[TC]]/../../../../sysroot/mips32/mips16/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF-16: "[[TC]]/mips32/mips16{{/|\\\\}}crtbegin.o"
|
||||
@ -121,6 +125,7 @@
|
||||
// CHECK-BE-HF64-16: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF64-16: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF64-16: "--sysroot=[[TC]]/../../../../sysroot/mips32/mips16"
|
||||
// CHECK-BE-HF64-16: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-HF64-16: "[[TC]]/../../../../sysroot/mips32/mips16/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF64-16: "[[TC]]/../../../../sysroot/mips32/mips16/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF64-16: "[[TC]]/mips32/mips16{{/|\\\\}}crtbegin.o"
|
||||
@ -147,6 +152,7 @@
|
||||
// CHECK-BE-SF-16: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-SF-16: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-SF-16: "--sysroot=[[TC]]/../../../../sysroot/mips32/mips16/sof"
|
||||
// CHECK-BE-SF-16: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-SF-16: "[[TC]]/../../../../sysroot/mips32/mips16/sof/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-SF-16: "[[TC]]/../../../../sysroot/mips32/mips16/sof/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-SF-16: "[[TC]]/mips32/mips16/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -173,6 +179,7 @@
|
||||
// CHECK-BE-NAN-16: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN-16: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN-16: "--sysroot=[[TC]]/../../../../sysroot/mips32/mips16/nan2008"
|
||||
// CHECK-BE-NAN-16: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN-16: "[[TC]]/../../../../sysroot/mips32/mips16/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN-16: "[[TC]]/../../../../sysroot/mips32/mips16/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN-16: "[[TC]]/mips32/mips16/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -199,6 +206,7 @@
|
||||
// CHECK-BE-NAN64-16: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN64-16: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN64-16: "--sysroot=[[TC]]/../../../../sysroot/mips32/mips16/nan2008"
|
||||
// CHECK-BE-NAN64-16: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN64-16: "[[TC]]/../../../../sysroot/mips32/mips16/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN64-16: "[[TC]]/../../../../sysroot/mips32/mips16/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN64-16: "[[TC]]/mips32/mips16/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -225,6 +233,7 @@
|
||||
// CHECK-BE-NAN-32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN-32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN-32: "--sysroot=[[TC]]/../../../../sysroot/mips32/nan2008"
|
||||
// CHECK-BE-NAN-32: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN-32: "[[TC]]/../../../../sysroot/mips32/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN-32: "[[TC]]/../../../../sysroot/mips32/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN-32: "[[TC]]/mips32/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -251,6 +260,7 @@
|
||||
// CHECK-BE-NAN64-32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN64-32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN64-32: "--sysroot=[[TC]]/../../../../sysroot/mips32/nan2008"
|
||||
// CHECK-BE-NAN64-32: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN64-32: "[[TC]]/../../../../sysroot/mips32/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN64-32: "[[TC]]/../../../../sysroot/mips32/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN64-32: "[[TC]]/mips32/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -277,6 +287,7 @@
|
||||
// CHECK-BE-HF-32R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF-32R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF-32R2: "--sysroot=[[TC]]/../../../../sysroot"
|
||||
// CHECK-BE-HF-32R2: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-HF-32R2: "[[TC]]/../../../../sysroot/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF-32R2: "[[TC]]/../../../../sysroot/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF-32R2: "[[TC]]{{/|\\\\}}crtbegin.o"
|
||||
@ -303,6 +314,7 @@
|
||||
// CHECK-BE-HF64-32R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF64-32R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF64-32R2: "--sysroot=[[TC]]/../../../../sysroot"
|
||||
// CHECK-BE-HF64-32R2: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-HF64-32R2: "[[TC]]/../../../../sysroot/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF64-32R2: "[[TC]]/../../../../sysroot/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF64-32R2: "[[TC]]{{/|\\\\}}crtbegin.o"
|
||||
@ -329,6 +341,7 @@
|
||||
// CHECK-BE-SF-32R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-SF-32R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-SF-32R2: "--sysroot=[[TC]]/../../../../sysroot/sof"
|
||||
// CHECK-BE-SF-32R2: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-SF-32R2: "[[TC]]/../../../../sysroot/sof/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-SF-32R2: "[[TC]]/../../../../sysroot/sof/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-SF-32R2: "[[TC]]/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -355,6 +368,7 @@
|
||||
// CHECK-BE-HF-16R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF-16R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF-16R2: "--sysroot=[[TC]]/../../../../sysroot/mips16"
|
||||
// CHECK-BE-HF-16R2: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-HF-16R2: "[[TC]]/../../../../sysroot/mips16/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF-16R2: "[[TC]]/../../../../sysroot/mips16/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF-16R2: "[[TC]]/mips16{{/|\\\\}}crtbegin.o"
|
||||
@ -381,6 +395,7 @@
|
||||
// CHECK-BE-HF64-16R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF64-16R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF64-16R2: "--sysroot=[[TC]]/../../../../sysroot/mips16"
|
||||
// CHECK-BE-HF64-16R2: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-HF64-16R2: "[[TC]]/../../../../sysroot/mips16/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF64-16R2: "[[TC]]/../../../../sysroot/mips16/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF64-16R2: "[[TC]]/mips16{{/|\\\\}}crtbegin.o"
|
||||
@ -407,6 +422,7 @@
|
||||
// CHECK-BE-SF-16R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-SF-16R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-SF-16R2: "--sysroot=[[TC]]/../../../../sysroot/mips16/sof"
|
||||
// CHECK-BE-SF-16R2: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-SF-16R2: "[[TC]]/../../../../sysroot/mips16/sof/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-SF-16R2: "[[TC]]/../../../../sysroot/mips16/sof/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-SF-16R2: "[[TC]]/mips16/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -433,6 +449,7 @@
|
||||
// CHECK-BE-NAN-16R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN-16R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN-16R2: "--sysroot=[[TC]]/../../../../sysroot/mips16/nan2008"
|
||||
// CHECK-BE-NAN-16R2: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN-16R2: "[[TC]]/../../../../sysroot/mips16/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN-16R2: "[[TC]]/../../../../sysroot/mips16/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN-16R2: "[[TC]]/mips16/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -459,6 +476,7 @@
|
||||
// CHECK-BE-NAN64-16R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN64-16R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN64-16R2: "--sysroot=[[TC]]/../../../../sysroot/mips16/nan2008"
|
||||
// CHECK-BE-NAN64-16R2: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN64-16R2: "[[TC]]/../../../../sysroot/mips16/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN64-16R2: "[[TC]]/../../../../sysroot/mips16/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN64-16R2: "[[TC]]/mips16/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -485,6 +503,7 @@
|
||||
// CHECK-BE-NAN-32R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN-32R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN-32R2: "--sysroot=[[TC]]/../../../../sysroot/nan2008"
|
||||
// CHECK-BE-NAN-32R2: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN-32R2: "[[TC]]/../../../../sysroot/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN-32R2: "[[TC]]/../../../../sysroot/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN-32R2: "[[TC]]/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -511,6 +530,7 @@
|
||||
// CHECK-BE-NAN64-32R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN64-32R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN64-32R2: "--sysroot=[[TC]]/../../../../sysroot/nan2008"
|
||||
// CHECK-BE-NAN64-32R2: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN64-32R2: "[[TC]]/../../../../sysroot/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN64-32R2: "[[TC]]/../../../../sysroot/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN64-32R2: "[[TC]]/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -537,6 +557,7 @@
|
||||
// CHECK-BE-NAN64-32R2-DEF: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN64-32R2-DEF: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN64-32R2-DEF: "--sysroot=[[TC]]/../../../../sysroot/nan2008"
|
||||
// CHECK-BE-NAN64-32R2-DEF: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN64-32R2-DEF: "[[TC]]/../../../../sysroot/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN64-32R2-DEF: "[[TC]]/../../../../sysroot/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN64-32R2-DEF: "[[TC]]/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -563,6 +584,7 @@
|
||||
// CHECK-BE-HF-MM: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF-MM: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF-MM: "--sysroot=[[TC]]/../../../../sysroot/micromips"
|
||||
// CHECK-BE-HF-MM: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-HF-MM: "[[TC]]/../../../../sysroot/micromips/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF-MM: "[[TC]]/../../../../sysroot/micromips/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF-MM: "[[TC]]/micromips{{/|\\\\}}crtbegin.o"
|
||||
@ -589,6 +611,7 @@
|
||||
// CHECK-BE-HF64-MM: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF64-MM: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF64-MM: "--sysroot=[[TC]]/../../../../sysroot/micromips"
|
||||
// CHECK-BE-HF64-MM: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-HF64-MM: "[[TC]]/../../../../sysroot/micromips/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF64-MM: "[[TC]]/../../../../sysroot/micromips/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF64-MM: "[[TC]]/micromips{{/|\\\\}}crtbegin.o"
|
||||
@ -615,6 +638,7 @@
|
||||
// CHECK-BE-SF-MM: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-SF-MM: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-SF-MM: "--sysroot=[[TC]]/../../../../sysroot/micromips/sof"
|
||||
// CHECK-BE-SF-MM: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-BE-SF-MM: "[[TC]]/../../../../sysroot/micromips/sof/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-SF-MM: "[[TC]]/../../../../sysroot/micromips/sof/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-SF-MM: "[[TC]]/micromips/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -641,6 +665,7 @@
|
||||
// CHECK-BE-NAN-MM: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN-MM: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN-MM: "--sysroot=[[TC]]/../../../../sysroot/micromips/nan2008"
|
||||
// CHECK-BE-NAN-MM: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN-MM: "[[TC]]/../../../../sysroot/micromips/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN-MM: "[[TC]]/../../../../sysroot/micromips/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN-MM: "[[TC]]/micromips/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -667,6 +692,7 @@
|
||||
// CHECK-BE-NAN64-MM: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN64-MM: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN64-MM: "--sysroot=[[TC]]/../../../../sysroot/micromips/nan2008"
|
||||
// CHECK-BE-NAN64-MM: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN64-MM: "[[TC]]/../../../../sysroot/micromips/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN64-MM: "[[TC]]/../../../../sysroot/micromips/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN64-MM: "[[TC]]/micromips/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -693,6 +719,7 @@
|
||||
// CHECK-BE-HF-64-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF-64-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF-64-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64"
|
||||
// CHECK-BE-HF-64-N32: "-dynamic-linker" "/lib32/ld.so.1"
|
||||
// CHECK-BE-HF-64-N32: "[[TC]]/../../../../sysroot/mips64/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF-64-N32: "[[TC]]/../../../../sysroot/mips64/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF-64-N32: "[[TC]]/mips64{{/|\\\\}}crtbegin.o"
|
||||
@ -719,6 +746,7 @@
|
||||
// CHECK-BE-HF64-64-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF64-64-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF64-64-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64"
|
||||
// CHECK-BE-HF64-64-N32: "-dynamic-linker" "/lib32/ld.so.1"
|
||||
// CHECK-BE-HF64-64-N32: "[[TC]]/../../../../sysroot/mips64/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF64-64-N32: "[[TC]]/../../../../sysroot/mips64/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF64-64-N32: "[[TC]]/mips64{{/|\\\\}}crtbegin.o"
|
||||
@ -745,6 +773,7 @@
|
||||
// CHECK-BE-SF-64-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-SF-64-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-SF-64-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64/sof"
|
||||
// CHECK-BE-SF-64-N32: "-dynamic-linker" "/lib32/ld.so.1"
|
||||
// CHECK-BE-SF-64-N32: "[[TC]]/../../../../sysroot/mips64/sof/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-SF-64-N32: "[[TC]]/../../../../sysroot/mips64/sof/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-SF-64-N32: "[[TC]]/mips64/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -771,6 +800,7 @@
|
||||
// CHECK-BE-NAN-64-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN-64-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN-64-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64/nan2008"
|
||||
// CHECK-BE-NAN-64-N32: "-dynamic-linker" "/lib32/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN-64-N32: "[[TC]]/../../../../sysroot/mips64/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN-64-N32: "[[TC]]/../../../../sysroot/mips64/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN-64-N32: "[[TC]]/mips64/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -797,6 +827,7 @@
|
||||
// CHECK-BE-NAN64-64-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN64-64-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN64-64-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64/nan2008"
|
||||
// CHECK-BE-NAN64-64-N32: "-dynamic-linker" "/lib32/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN64-64-N32: "[[TC]]/../../../../sysroot/mips64/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN64-64-N32: "[[TC]]/../../../../sysroot/mips64/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN64-64-N32: "[[TC]]/mips64/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -823,6 +854,7 @@
|
||||
// CHECK-BE-HF-64-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF-64-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF-64-64: "--sysroot=[[TC]]/../../../../sysroot/mips64/64"
|
||||
// CHECK-BE-HF-64-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-BE-HF-64-64: "[[TC]]/../../../../sysroot/mips64/64/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF-64-64: "[[TC]]/../../../../sysroot/mips64/64/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF-64-64: "[[TC]]/mips64/64{{/|\\\\}}crtbegin.o"
|
||||
@ -849,6 +881,7 @@
|
||||
// CHECK-BE-HF64-64-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF64-64-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF64-64-64: "--sysroot=[[TC]]/../../../../sysroot/mips64/64"
|
||||
// CHECK-BE-HF64-64-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-BE-HF64-64-64: "[[TC]]/../../../../sysroot/mips64/64/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF64-64-64: "[[TC]]/../../../../sysroot/mips64/64/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF64-64-64: "[[TC]]/mips64/64{{/|\\\\}}crtbegin.o"
|
||||
@ -875,6 +908,7 @@
|
||||
// CHECK-BE-SF-64-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-SF-64-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-SF-64-64: "--sysroot=[[TC]]/../../../../sysroot/mips64/64/sof"
|
||||
// CHECK-BE-SF-64-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-BE-SF-64-64: "[[TC]]/../../../../sysroot/mips64/64/sof/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-SF-64-64: "[[TC]]/../../../../sysroot/mips64/64/sof/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-SF-64-64: "[[TC]]/mips64/64/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -901,6 +935,7 @@
|
||||
// CHECK-BE-NAN-64-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN-64-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN-64-64: "--sysroot=[[TC]]/../../../../sysroot/mips64/64/nan2008"
|
||||
// CHECK-BE-NAN-64-64: "-dynamic-linker" "/lib64/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN-64-64: "[[TC]]/../../../../sysroot/mips64/64/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN-64-64: "[[TC]]/../../../../sysroot/mips64/64/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN-64-64: "[[TC]]/mips64/64/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -927,6 +962,7 @@
|
||||
// CHECK-BE-NAN64-64-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN64-64-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN64-64-64: "--sysroot=[[TC]]/../../../../sysroot/mips64/64/nan2008"
|
||||
// CHECK-BE-NAN64-64-64: "-dynamic-linker" "/lib64/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN64-64-64: "[[TC]]/../../../../sysroot/mips64/64/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN64-64-64: "[[TC]]/../../../../sysroot/mips64/64/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN64-64-64: "[[TC]]/mips64/64/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -953,6 +989,7 @@
|
||||
// CHECK-BE-HF-64R2-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF-64R2-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF-64R2-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64r2"
|
||||
// CHECK-BE-HF-64R2-N32: "-dynamic-linker" "/lib32/ld.so.1"
|
||||
// CHECK-BE-HF-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF-64R2-N32: "[[TC]]/mips64r2{{/|\\\\}}crtbegin.o"
|
||||
@ -979,6 +1016,7 @@
|
||||
// CHECK-BE-HF64-64R2-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF64-64R2-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF64-64R2-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64r2"
|
||||
// CHECK-BE-HF64-64R2-N32: "-dynamic-linker" "/lib32/ld.so.1"
|
||||
// CHECK-BE-HF64-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF64-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF64-64R2-N32: "[[TC]]/mips64r2{{/|\\\\}}crtbegin.o"
|
||||
@ -1005,6 +1043,7 @@
|
||||
// CHECK-BE-SF-64R2-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-SF-64R2-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-SF-64R2-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/sof"
|
||||
// CHECK-BE-SF-64R2-N32: "-dynamic-linker" "/lib32/ld.so.1"
|
||||
// CHECK-BE-SF-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/sof/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-SF-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/sof/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-SF-64R2-N32: "[[TC]]/mips64r2/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -1031,6 +1070,7 @@
|
||||
// CHECK-BE-NAN-64R2-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN-64R2-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN-64R2-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/nan2008"
|
||||
// CHECK-BE-NAN-64R2-N32: "-dynamic-linker" "/lib32/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN-64R2-N32: "[[TC]]/mips64r2/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1057,6 +1097,7 @@
|
||||
// CHECK-BE-NAN64-64R2-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN64-64R2-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN64-64R2-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/nan2008"
|
||||
// CHECK-BE-NAN64-64R2-N32: "-dynamic-linker" "/lib32/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN64-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN64-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN64-64R2-N32: "[[TC]]/mips64r2/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1083,6 +1124,7 @@
|
||||
// CHECK-BE-HF-64R2-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF-64R2-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF-64R2-64: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/64"
|
||||
// CHECK-BE-HF-64R2-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-BE-HF-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF-64R2-64: "[[TC]]/mips64r2/64{{/|\\\\}}crtbegin.o"
|
||||
@ -1109,6 +1151,7 @@
|
||||
// CHECK-BE-HF64-64R2-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-HF64-64R2-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-HF64-64R2-64: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/64"
|
||||
// CHECK-BE-HF64-64R2-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-BE-HF64-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-HF64-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-HF64-64R2-64: "[[TC]]/mips64r2/64{{/|\\\\}}crtbegin.o"
|
||||
@ -1135,6 +1178,7 @@
|
||||
// CHECK-BE-SF-64R2-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-SF-64R2-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-SF-64R2-64: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/64/sof"
|
||||
// CHECK-BE-SF-64R2-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-BE-SF-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/sof/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-SF-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/sof/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-SF-64R2-64: "[[TC]]/mips64r2/64/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -1161,6 +1205,7 @@
|
||||
// CHECK-BE-NAN-64R2-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN-64R2-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN-64R2-64: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/64/nan2008"
|
||||
// CHECK-BE-NAN-64R2-64: "-dynamic-linker" "/lib64/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN-64R2-64: "[[TC]]/mips64r2/64/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1187,6 +1232,7 @@
|
||||
// CHECK-BE-NAN64-64R2-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN64-64R2-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN64-64R2-64: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/64/nan2008"
|
||||
// CHECK-BE-NAN64-64R2-64: "-dynamic-linker" "/lib64/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN64-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN64-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN64-64R2-64: "[[TC]]/mips64r2/64/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1213,6 +1259,7 @@
|
||||
// CHECK-BE-NAN64-64R2-64-DEF: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-BE-NAN64-64R2-64-DEF: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-BE-NAN64-64R2-64-DEF: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/64/nan2008"
|
||||
// CHECK-BE-NAN64-64R2-64-DEF: "-dynamic-linker" "/lib64/ld-linux-mipsn8.so.1"
|
||||
// CHECK-BE-NAN64-64R2-64-DEF: "[[TC]]/../../../../sysroot/mips64r2/64/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-BE-NAN64-64R2-64-DEF: "[[TC]]/../../../../sysroot/mips64r2/64/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-BE-NAN64-64R2-64-DEF: "[[TC]]/mips64r2/64/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1239,6 +1286,7 @@
|
||||
// CHECK-EL-HF-32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF-32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF-32: "--sysroot=[[TC]]/../../../../sysroot/mips32/el"
|
||||
// CHECK-EL-HF-32: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-HF-32: "[[TC]]/../../../../sysroot/mips32/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF-32: "[[TC]]/../../../../sysroot/mips32/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF-32: "[[TC]]/mips32/el{{/|\\\\}}crtbegin.o"
|
||||
@ -1265,6 +1313,7 @@
|
||||
// CHECK-EL-HF64-32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF64-32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF64-32: "--sysroot=[[TC]]/../../../../sysroot/mips32/el"
|
||||
// CHECK-EL-HF64-32: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-HF64-32: "[[TC]]/../../../../sysroot/mips32/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF64-32: "[[TC]]/../../../../sysroot/mips32/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF64-32: "[[TC]]/mips32/el{{/|\\\\}}crtbegin.o"
|
||||
@ -1291,6 +1340,7 @@
|
||||
// CHECK-EL-SF-32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-SF-32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-SF-32: "--sysroot=[[TC]]/../../../../sysroot/mips32/el/sof"
|
||||
// CHECK-EL-SF-32: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-SF-32: "[[TC]]/../../../../sysroot/mips32/el/sof/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-SF-32: "[[TC]]/../../../../sysroot/mips32/el/sof/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-SF-32: "[[TC]]/mips32/el/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -1317,6 +1367,7 @@
|
||||
// CHECK-EL-HF-16: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF-16: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF-16: "--sysroot=[[TC]]/../../../../sysroot/mips32/mips16/el"
|
||||
// CHECK-EL-HF-16: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-HF-16: "[[TC]]/../../../../sysroot/mips32/mips16/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF-16: "[[TC]]/../../../../sysroot/mips32/mips16/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF-16: "[[TC]]/mips32/mips16/el{{/|\\\\}}crtbegin.o"
|
||||
@ -1343,6 +1394,7 @@
|
||||
// CHECK-EL-HF64-16: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF64-16: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF64-16: "--sysroot=[[TC]]/../../../../sysroot/mips32/mips16/el"
|
||||
// CHECK-EL-HF64-16: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-HF64-16: "[[TC]]/../../../../sysroot/mips32/mips16/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF64-16: "[[TC]]/../../../../sysroot/mips32/mips16/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF64-16: "[[TC]]/mips32/mips16/el{{/|\\\\}}crtbegin.o"
|
||||
@ -1369,6 +1421,7 @@
|
||||
// CHECK-EL-SF-16: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-SF-16: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-SF-16: "--sysroot=[[TC]]/../../../../sysroot/mips32/mips16/el/sof"
|
||||
// CHECK-EL-SF-16: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-SF-16: "[[TC]]/../../../../sysroot/mips32/mips16/el/sof/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-SF-16: "[[TC]]/../../../../sysroot/mips32/mips16/el/sof/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-SF-16: "[[TC]]/mips32/mips16/el/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -1395,6 +1448,7 @@
|
||||
// CHECK-EL-NAN-16: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN-16: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN-16: "--sysroot=[[TC]]/../../../../sysroot/mips32/mips16/el/nan2008"
|
||||
// CHECK-EL-NAN-16: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN-16: "[[TC]]/../../../../sysroot/mips32/mips16/el/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN-16: "[[TC]]/../../../../sysroot/mips32/mips16/el/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN-16: "[[TC]]/mips32/mips16/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1421,6 +1475,7 @@
|
||||
// CHECK-EL-NAN64-16: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN64-16: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN64-16: "--sysroot=[[TC]]/../../../../sysroot/mips32/mips16/el/nan2008"
|
||||
// CHECK-EL-NAN64-16: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN64-16: "[[TC]]/../../../../sysroot/mips32/mips16/el/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN64-16: "[[TC]]/../../../../sysroot/mips32/mips16/el/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN64-16: "[[TC]]/mips32/mips16/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1447,6 +1502,7 @@
|
||||
// CHECK-EL-NAN-32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN-32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN-32: "--sysroot=[[TC]]/../../../../sysroot/mips32/el/nan2008"
|
||||
// CHECK-EL-NAN-32: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN-32: "[[TC]]/../../../../sysroot/mips32/el/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN-32: "[[TC]]/../../../../sysroot/mips32/el/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN-32: "[[TC]]/mips32/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1473,6 +1529,7 @@
|
||||
// CHECK-EL-NAN64-32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN64-32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN64-32: "--sysroot=[[TC]]/../../../../sysroot/mips32/el/nan2008"
|
||||
// CHECK-EL-NAN64-32: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN64-32: "[[TC]]/../../../../sysroot/mips32/el/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN64-32: "[[TC]]/../../../../sysroot/mips32/el/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN64-32: "[[TC]]/mips32/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1499,6 +1556,7 @@
|
||||
// CHECK-EL-HF-32R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF-32R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF-32R2: "--sysroot=[[TC]]/../../../../sysroot/el"
|
||||
// CHECK-EL-HF-32R2: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-HF-32R2: "[[TC]]/../../../../sysroot/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF-32R2: "[[TC]]/../../../../sysroot/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF-32R2: "[[TC]]/el{{/|\\\\}}crtbegin.o"
|
||||
@ -1525,6 +1583,7 @@
|
||||
// CHECK-EL-HF64-32R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF64-32R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF64-32R2: "--sysroot=[[TC]]/../../../../sysroot/el"
|
||||
// CHECK-EL-HF64-32R2: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-HF64-32R2: "[[TC]]/../../../../sysroot/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF64-32R2: "[[TC]]/../../../../sysroot/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF64-32R2: "[[TC]]/el{{/|\\\\}}crtbegin.o"
|
||||
@ -1551,6 +1610,7 @@
|
||||
// CHECK-EL-SF-32R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-SF-32R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-SF-32R2: "--sysroot=[[TC]]/../../../../sysroot/el/sof"
|
||||
// CHECK-EL-SF-32R2: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-SF-32R2: "[[TC]]/../../../../sysroot/el/sof/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-SF-32R2: "[[TC]]/../../../../sysroot/el/sof/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-SF-32R2: "[[TC]]/el/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -1577,6 +1637,7 @@
|
||||
// CHECK-EL-HF-16R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF-16R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF-16R2: "--sysroot=[[TC]]/../../../../sysroot/mips16/el"
|
||||
// CHECK-EL-HF-16R2: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-HF-16R2: "[[TC]]/../../../../sysroot/mips16/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF-16R2: "[[TC]]/../../../../sysroot/mips16/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF-16R2: "[[TC]]/mips16/el{{/|\\\\}}crtbegin.o"
|
||||
@ -1603,6 +1664,7 @@
|
||||
// CHECK-EL-HF64-16R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF64-16R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF64-16R2: "--sysroot=[[TC]]/../../../../sysroot/mips16/el"
|
||||
// CHECK-EL-HF64-16R2: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-HF64-16R2: "[[TC]]/../../../../sysroot/mips16/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF64-16R2: "[[TC]]/../../../../sysroot/mips16/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF64-16R2: "[[TC]]/mips16/el{{/|\\\\}}crtbegin.o"
|
||||
@ -1629,6 +1691,7 @@
|
||||
// CHECK-EL-SF-16R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-SF-16R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-SF-16R2: "--sysroot=[[TC]]/../../../../sysroot/mips16/el/sof"
|
||||
// CHECK-EL-SF-16R2: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-SF-16R2: "[[TC]]/../../../../sysroot/mips16/el/sof/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-SF-16R2: "[[TC]]/../../../../sysroot/mips16/el/sof/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-SF-16R2: "[[TC]]/mips16/el/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -1655,6 +1718,7 @@
|
||||
// CHECK-EL-NAN-16R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN-16R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN-16R2: "--sysroot=[[TC]]/../../../../sysroot/mips16/el/nan2008"
|
||||
// CHECK-EL-NAN-16R2: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN-16R2: "[[TC]]/../../../../sysroot/mips16/el/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN-16R2: "[[TC]]/../../../../sysroot/mips16/el/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN-16R2: "[[TC]]/mips16/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1681,6 +1745,7 @@
|
||||
// CHECK-EL-NAN64-16R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN64-16R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN64-16R2: "--sysroot=[[TC]]/../../../../sysroot/mips16/el/nan2008"
|
||||
// CHECK-EL-NAN64-16R2: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN64-16R2: "[[TC]]/../../../../sysroot/mips16/el/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN64-16R2: "[[TC]]/../../../../sysroot/mips16/el/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN64-16R2: "[[TC]]/mips16/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1707,6 +1772,7 @@
|
||||
// CHECK-EL-NAN-32R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN-32R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN-32R2: "--sysroot=[[TC]]/../../../../sysroot/el/nan2008"
|
||||
// CHECK-EL-NAN-32R2: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN-32R2: "[[TC]]/../../../../sysroot/el/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN-32R2: "[[TC]]/../../../../sysroot/el/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN-32R2: "[[TC]]/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1733,6 +1799,7 @@
|
||||
// CHECK-EL-NAN64-32R2: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN64-32R2: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN64-32R2: "--sysroot=[[TC]]/../../../../sysroot/el/nan2008"
|
||||
// CHECK-EL-NAN64-32R2: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN64-32R2: "[[TC]]/../../../../sysroot/el/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN64-32R2: "[[TC]]/../../../../sysroot/el/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN64-32R2: "[[TC]]/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1759,6 +1826,7 @@
|
||||
// CHECK-EL-NAN64-32R2-DEF: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN64-32R2-DEF: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN64-32R2-DEF: "--sysroot=[[TC]]/../../../../sysroot/el/nan2008"
|
||||
// CHECK-EL-NAN64-32R2-DEF: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN64-32R2-DEF: "[[TC]]/../../../../sysroot/el/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN64-32R2-DEF: "[[TC]]/../../../../sysroot/el/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN64-32R2-DEF: "[[TC]]/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1785,6 +1853,7 @@
|
||||
// CHECK-EL-HF-MM: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF-MM: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF-MM: "--sysroot=[[TC]]/../../../../sysroot/micromips/el"
|
||||
// CHECK-EL-HF-MM: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-HF-MM: "[[TC]]/../../../../sysroot/micromips/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF-MM: "[[TC]]/../../../../sysroot/micromips/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF-MM: "[[TC]]/micromips/el{{/|\\\\}}crtbegin.o"
|
||||
@ -1811,6 +1880,7 @@
|
||||
// CHECK-EL-HF64-MM: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF64-MM: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF64-MM: "--sysroot=[[TC]]/../../../../sysroot/micromips/el"
|
||||
// CHECK-EL-HF64-MM: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-HF64-MM: "[[TC]]/../../../../sysroot/micromips/el/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF64-MM: "[[TC]]/../../../../sysroot/micromips/el/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF64-MM: "[[TC]]/micromips/el{{/|\\\\}}crtbegin.o"
|
||||
@ -1837,6 +1907,7 @@
|
||||
// CHECK-EL-SF-MM: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-SF-MM: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-SF-MM: "--sysroot=[[TC]]/../../../../sysroot/micromips/el/sof"
|
||||
// CHECK-EL-SF-MM: "-dynamic-linker" "/lib/ld.so.1"
|
||||
// CHECK-EL-SF-MM: "[[TC]]/../../../../sysroot/micromips/el/sof/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-SF-MM: "[[TC]]/../../../../sysroot/micromips/el/sof/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-SF-MM: "[[TC]]/micromips/el/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -1863,6 +1934,7 @@
|
||||
// CHECK-EL-NAN-MM: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN-MM: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN-MM: "--sysroot=[[TC]]/../../../../sysroot/micromips/el/nan2008"
|
||||
// CHECK-EL-NAN-MM: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN-MM: "[[TC]]/../../../../sysroot/micromips/el/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN-MM: "[[TC]]/../../../../sysroot/micromips/el/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN-MM: "[[TC]]/micromips/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1889,6 +1961,7 @@
|
||||
// CHECK-EL-NAN64-MM: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN64-MM: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN64-MM: "--sysroot=[[TC]]/../../../../sysroot/micromips/el/nan2008"
|
||||
// CHECK-EL-NAN64-MM: "-dynamic-linker" "/lib/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN64-MM: "[[TC]]/../../../../sysroot/micromips/el/nan2008/usr/lib/../lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN64-MM: "[[TC]]/../../../../sysroot/micromips/el/nan2008/usr/lib/../lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN64-MM: "[[TC]]/micromips/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -1915,6 +1988,7 @@
|
||||
// CHECK-EL-HF-64-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF-64-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF-64-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64/el"
|
||||
// CHECK-EL-HF-64-N32: "-dynamic-linker" "/lib32/ld.so.1"
|
||||
// CHECK-EL-HF-64-N32: "[[TC]]/../../../../sysroot/mips64/el/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF-64-N32: "[[TC]]/../../../../sysroot/mips64/el/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF-64-N32: "[[TC]]/mips64/el{{/|\\\\}}crtbegin.o"
|
||||
@ -1941,6 +2015,7 @@
|
||||
// CHECK-EL-HF64-64-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF64-64-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF64-64-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64/el"
|
||||
// CHECK-EL-HF64-64-N32: "-dynamic-linker" "/lib32/ld.so.1"
|
||||
// CHECK-EL-HF64-64-N32: "[[TC]]/../../../../sysroot/mips64/el/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF64-64-N32: "[[TC]]/../../../../sysroot/mips64/el/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF64-64-N32: "[[TC]]/mips64/el{{/|\\\\}}crtbegin.o"
|
||||
@ -1967,6 +2042,7 @@
|
||||
// CHECK-EL-SF-64-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-SF-64-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-SF-64-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64/el/sof"
|
||||
// CHECK-EL-SF-64-N32: "-dynamic-linker" "/lib32/ld.so.1"
|
||||
// CHECK-EL-SF-64-N32: "[[TC]]/../../../../sysroot/mips64/el/sof/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-SF-64-N32: "[[TC]]/../../../../sysroot/mips64/el/sof/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-SF-64-N32: "[[TC]]/mips64/el/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -1993,6 +2069,7 @@
|
||||
// CHECK-EL-NAN-64-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN-64-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN-64-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64/el/nan2008"
|
||||
// CHECK-EL-NAN-64-N32: "-dynamic-linker" "/lib32/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN-64-N32: "[[TC]]/../../../../sysroot/mips64/el/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN-64-N32: "[[TC]]/../../../../sysroot/mips64/el/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN-64-N32: "[[TC]]/mips64/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -2019,6 +2096,7 @@
|
||||
// CHECK-EL-NAN64-64-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN64-64-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN64-64-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64/el/nan2008"
|
||||
// CHECK-EL-NAN64-64-N32: "-dynamic-linker" "/lib32/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN64-64-N32: "[[TC]]/../../../../sysroot/mips64/el/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN64-64-N32: "[[TC]]/../../../../sysroot/mips64/el/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN64-64-N32: "[[TC]]/mips64/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -2045,6 +2123,7 @@
|
||||
// CHECK-EL-HF-64-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF-64-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF-64-64: "--sysroot=[[TC]]/../../../../sysroot/mips64/64/el"
|
||||
// CHECK-EL-HF-64-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-EL-HF-64-64: "[[TC]]/../../../../sysroot/mips64/64/el/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF-64-64: "[[TC]]/../../../../sysroot/mips64/64/el/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF-64-64: "[[TC]]/mips64/64/el{{/|\\\\}}crtbegin.o"
|
||||
@ -2071,6 +2150,7 @@
|
||||
// CHECK-EL-HF64-64-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF64-64-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF64-64-64: "--sysroot=[[TC]]/../../../../sysroot/mips64/64/el"
|
||||
// CHECK-EL-HF64-64-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-EL-HF64-64-64: "[[TC]]/../../../../sysroot/mips64/64/el/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF64-64-64: "[[TC]]/../../../../sysroot/mips64/64/el/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF64-64-64: "[[TC]]/mips64/64/el{{/|\\\\}}crtbegin.o"
|
||||
@ -2097,6 +2177,7 @@
|
||||
// CHECK-EL-SF-64-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-SF-64-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-SF-64-64: "--sysroot=[[TC]]/../../../../sysroot/mips64/64/el/sof"
|
||||
// CHECK-EL-SF-64-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-EL-SF-64-64: "[[TC]]/../../../../sysroot/mips64/64/el/sof/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-SF-64-64: "[[TC]]/../../../../sysroot/mips64/64/el/sof/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-SF-64-64: "[[TC]]/mips64/64/el/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -2123,6 +2204,7 @@
|
||||
// CHECK-EL-NAN-64-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN-64-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN-64-64: "--sysroot=[[TC]]/../../../../sysroot/mips64/64/el/nan2008"
|
||||
// CHECK-EL-NAN-64-64: "-dynamic-linker" "/lib64/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN-64-64: "[[TC]]/../../../../sysroot/mips64/64/el/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN-64-64: "[[TC]]/../../../../sysroot/mips64/64/el/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN-64-64: "[[TC]]/mips64/64/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -2149,6 +2231,7 @@
|
||||
// CHECK-EL-NAN64-64-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN64-64-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN64-64-64: "--sysroot=[[TC]]/../../../../sysroot/mips64/64/el/nan2008"
|
||||
// CHECK-EL-NAN64-64-64: "-dynamic-linker" "/lib64/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN64-64-64: "[[TC]]/../../../../sysroot/mips64/64/el/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN64-64-64: "[[TC]]/../../../../sysroot/mips64/64/el/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN64-64-64: "[[TC]]/mips64/64/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -2175,6 +2258,7 @@
|
||||
// CHECK-EL-HF-64R2-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF-64R2-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF-64R2-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/el"
|
||||
// CHECK-EL-HF-64R2-N32: "-dynamic-linker" "/lib32/ld.so.1"
|
||||
// CHECK-EL-HF-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/el/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/el/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF-64R2-N32: "[[TC]]/mips64r2/el{{/|\\\\}}crtbegin.o"
|
||||
@ -2201,6 +2285,7 @@
|
||||
// CHECK-EL-HF64-64R2-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF64-64R2-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF64-64R2-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/el"
|
||||
// CHECK-EL-HF64-64R2-N32: "-dynamic-linker" "/lib32/ld.so.1"
|
||||
// CHECK-EL-HF64-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/el/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF64-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/el/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF64-64R2-N32: "[[TC]]/mips64r2/el{{/|\\\\}}crtbegin.o"
|
||||
@ -2227,6 +2312,7 @@
|
||||
// CHECK-EL-SF-64R2-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-SF-64R2-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-SF-64R2-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/el/sof"
|
||||
// CHECK-EL-SF-64R2-N32: "-dynamic-linker" "/lib32/ld.so.1"
|
||||
// CHECK-EL-SF-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/el/sof/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-SF-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/el/sof/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-SF-64R2-N32: "[[TC]]/mips64r2/el/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -2253,6 +2339,7 @@
|
||||
// CHECK-EL-NAN-64R2-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN-64R2-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN-64R2-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/el/nan2008"
|
||||
// CHECK-EL-NAN-64R2-N32: "-dynamic-linker" "/lib32/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/el/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/el/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN-64R2-N32: "[[TC]]/mips64r2/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -2279,6 +2366,7 @@
|
||||
// CHECK-EL-NAN64-64R2-N32: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN64-64R2-N32: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN64-64R2-N32: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/el/nan2008"
|
||||
// CHECK-EL-NAN64-64R2-N32: "-dynamic-linker" "/lib32/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN64-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/el/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN64-64R2-N32: "[[TC]]/../../../../sysroot/mips64r2/el/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN64-64R2-N32: "[[TC]]/mips64r2/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -2305,6 +2393,7 @@
|
||||
// CHECK-EL-HF-64R2-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF-64R2-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF-64R2-64: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/64/el"
|
||||
// CHECK-EL-HF-64R2-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-EL-HF-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/el/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/el/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF-64R2-64: "[[TC]]/mips64r2/64/el{{/|\\\\}}crtbegin.o"
|
||||
@ -2331,6 +2420,7 @@
|
||||
// CHECK-EL-HF64-64R2-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-HF64-64R2-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-HF64-64R2-64: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/64/el"
|
||||
// CHECK-EL-HF64-64R2-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-EL-HF64-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/el/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-HF64-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/el/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-HF64-64R2-64: "[[TC]]/mips64r2/64/el{{/|\\\\}}crtbegin.o"
|
||||
@ -2357,6 +2447,7 @@
|
||||
// CHECK-EL-SF-64R2-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-SF-64R2-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-SF-64R2-64: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/64/el/sof"
|
||||
// CHECK-EL-SF-64R2-64: "-dynamic-linker" "/lib64/ld.so.1"
|
||||
// CHECK-EL-SF-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/el/sof/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-SF-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/el/sof/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-SF-64R2-64: "[[TC]]/mips64r2/64/el/sof{{/|\\\\}}crtbegin.o"
|
||||
@ -2383,6 +2474,7 @@
|
||||
// CHECK-EL-NAN-64R2-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN-64R2-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN-64R2-64: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/64/el/nan2008"
|
||||
// CHECK-EL-NAN-64R2-64: "-dynamic-linker" "/lib64/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/el/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/el/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN-64R2-64: "[[TC]]/mips64r2/64/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -2409,6 +2501,7 @@
|
||||
// CHECK-EL-NAN64-64R2-64: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN64-64R2-64: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN64-64R2-64: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/64/el/nan2008"
|
||||
// CHECK-EL-NAN64-64R2-64: "-dynamic-linker" "/lib64/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN64-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/el/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN64-64R2-64: "[[TC]]/../../../../sysroot/mips64r2/64/el/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN64-64R2-64: "[[TC]]/mips64r2/64/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
@ -2435,6 +2528,7 @@
|
||||
// CHECK-EL-NAN64-64R2-64-DEF: "[[TC]]/../../../../sysroot/usr/include"
|
||||
// CHECK-EL-NAN64-64R2-64-DEF: "{{.*}}ld{{(.exe)?}}"
|
||||
// CHECK-EL-NAN64-64R2-64-DEF: "--sysroot=[[TC]]/../../../../sysroot/mips64r2/64/el/nan2008"
|
||||
// CHECK-EL-NAN64-64R2-64-DEF: "-dynamic-linker" "/lib64/ld-linux-mipsn8.so.1"
|
||||
// CHECK-EL-NAN64-64R2-64-DEF: "[[TC]]/../../../../sysroot/mips64r2/64/el/nan2008/usr/lib{{/|\\\\}}crt1.o"
|
||||
// CHECK-EL-NAN64-64R2-64-DEF: "[[TC]]/../../../../sysroot/mips64r2/64/el/nan2008/usr/lib{{/|\\\\}}crti.o"
|
||||
// CHECK-EL-NAN64-64R2-64-DEF: "[[TC]]/mips64r2/64/el/nan2008{{/|\\\\}}crtbegin.o"
|
||||
|
@ -46,6 +46,7 @@ lit.site.cfg: FORCE
|
||||
@$(ECHOPATH) s=@CLANG_BINARY_DIR@=$(PROJ_OBJ_DIR)/..=g >> lit.tmp
|
||||
@$(ECHOPATH) s=@CLANG_TOOLS_DIR@=$(ToolDir)=g >> lit.tmp
|
||||
@$(ECHOPATH) s=@TARGET_TRIPLE@=$(TARGET_TRIPLE)=g >> lit.tmp
|
||||
@$(ECHOPATH) s=@LLVM_HOST_TRIPLE@=$(HOST_TRIPLE)=g >> lit.tmp
|
||||
@$(ECHOPATH) s=@ENABLE_CLANG_ARCMT@=$(ENABLE_CLANG_ARCMT)=g >> lit.tmp
|
||||
@$(ECHOPATH) s=@ENABLE_CLANG_STATIC_ANALYZER@=$(ENABLE_CLANG_STATIC_ANALYZER)=g >> lit.tmp
|
||||
@$(ECHOPATH) s=@ENABLE_CLANG_EXAMPLES@=$(ENABLE_CLANG_EXAMPLES)=g >> lit.tmp
|
||||
|
@ -6,8 +6,8 @@
|
||||
|
||||
void test_switch(int *A, int *B, int Length) {
|
||||
#pragma clang loop vectorize(enable) unroll(disable)
|
||||
for (int i = 0; i < Length; i++) {
|
||||
/* expected-warning {{loop not vectorized: failed explicitly specified loop vectorization}} */ switch (A[i]) {
|
||||
/* expected-warning {{loop not vectorized: failed explicitly specified loop vectorization}} */ for (int i = 0; i < Length; i++) {
|
||||
switch (A[i]) {
|
||||
case 0:
|
||||
B[i] = 1;
|
||||
break;
|
||||
|
@ -39,8 +39,13 @@ __declspec(dllexport) extern int GlobalRedecl2;
|
||||
int GlobalRedecl2;
|
||||
|
||||
extern int GlobalRedecl3; // expected-note{{previous declaration is here}}
|
||||
int useGlobalRedecl3() { return GlobalRedecl3; }
|
||||
__declspec(dllexport) extern int GlobalRedecl3; // expected-error{{redeclaration of 'GlobalRedecl3' cannot add 'dllexport' attribute}}
|
||||
|
||||
extern int GlobalRedecl4; // expected-note{{previous declaration is here}}
|
||||
__declspec(dllexport) extern int GlobalRedecl4; // expected-warning{{redeclaration of 'GlobalRedecl4' should not add 'dllexport' attribute}}
|
||||
|
||||
|
||||
// External linkage is required.
|
||||
__declspec(dllexport) static int StaticGlobal; // expected-error{{'StaticGlobal' must have external linkage when declared 'dllexport'}}
|
||||
|
||||
@ -86,11 +91,18 @@ __declspec(dllexport) void redecl3();
|
||||
void redecl3() {}
|
||||
|
||||
void redecl4(); // expected-note{{previous declaration is here}}
|
||||
void useRedecl4() { redecl4(); }
|
||||
__declspec(dllexport) void redecl4(); // expected-error{{redeclaration of 'redecl4' cannot add 'dllexport' attribute}}
|
||||
|
||||
void redecl5(); // expected-note{{previous declaration is here}}
|
||||
void useRedecl5() { redecl5(); }
|
||||
__declspec(dllexport) inline void redecl5() {} // expected-error{{redeclaration of 'redecl5' cannot add 'dllexport' attribute}}
|
||||
|
||||
// Allow with a warning if the decl hasn't been used yet.
|
||||
void redecl6(); // expected-note{{previous declaration is here}}
|
||||
__declspec(dllexport) void redecl6(); // expected-warning{{redeclaration of 'redecl6' should not add 'dllexport' attribute}}
|
||||
|
||||
|
||||
// External linkage is required.
|
||||
__declspec(dllexport) static int staticFunc(); // expected-error{{'staticFunc' must have external linkage when declared 'dllexport'}}
|
||||
|
||||
|
@ -64,9 +64,16 @@ int GlobalRedecl2c __attribute__((dllimport));
|
||||
__declspec(dllimport) extern int GlobalRedecl3; // expected-note{{previous declaration is here}} expected-note{{previous attribute is here}}
|
||||
extern int GlobalRedecl3; // expected-warning{{'GlobalRedecl3' redeclared without 'dllimport' attribute: previous 'dllimport' ignored}}
|
||||
|
||||
// Adding an attribute on redeclaration.
|
||||
extern int GlobalRedecl4; // expected-note{{previous declaration is here}}
|
||||
int useGlobalRedecl4() { return GlobalRedecl4; }
|
||||
__declspec(dllimport) extern int GlobalRedecl4; // expected-error{{redeclaration of 'GlobalRedecl4' cannot add 'dllimport' attribute}}
|
||||
|
||||
// Allow with a warning if the decl hasn't been used yet.
|
||||
extern int GlobalRedecl5; // expected-note{{previous declaration is here}}
|
||||
__declspec(dllimport) extern int GlobalRedecl5; // expected-warning{{redeclaration of 'GlobalRedecl5' should not add 'dllimport' attribute}}
|
||||
|
||||
|
||||
// External linkage is required.
|
||||
__declspec(dllimport) static int StaticGlobal; // expected-error{{'StaticGlobal' must have external linkage when declared 'dllimport'}}
|
||||
|
||||
@ -124,14 +131,20 @@ __declspec(dllimport) void redecl3(); // expected-note{{previous declaration is
|
||||
void redecl3() {} // expected-warning{{'redecl3' redeclared without 'dllimport' attribute: previous 'dllimport' ignored}}
|
||||
|
||||
void redecl4(); // expected-note{{previous declaration is here}}
|
||||
void useRedecl4() { redecl4(); }
|
||||
__declspec(dllimport) void redecl4(); // expected-error{{redeclaration of 'redecl4' cannot add 'dllimport' attribute}}
|
||||
|
||||
// Inline redeclarations are fine.
|
||||
__declspec(dllimport) void redecl5();
|
||||
inline void redecl5() {}
|
||||
// Allow with a warning if the decl hasn't been used yet.
|
||||
void redecl5(); // expected-note{{previous declaration is here}}
|
||||
__declspec(dllimport) void redecl5(); // expected-warning{{redeclaration of 'redecl5' should not add 'dllimport' attribute}}
|
||||
|
||||
void redecl6(); // expected-note{{previous declaration is here}}
|
||||
__declspec(dllimport) inline void redecl6() {} // expected-error{{redeclaration of 'redecl6' cannot add 'dllimport' attribute}}
|
||||
|
||||
// Inline redeclarations are fine.
|
||||
__declspec(dllimport) void redecl6();
|
||||
inline void redecl6() {}
|
||||
|
||||
void redecl7(); // expected-note{{previous declaration is here}}
|
||||
__declspec(dllimport) inline void redecl7() {} // expected-warning{{redeclaration of 'redecl7' should not add 'dllimport' attribute}}
|
||||
|
||||
// External linkage is required.
|
||||
__declspec(dllimport) static int staticFunc(); // expected-error{{'staticFunc' must have external linkage when declared 'dllimport'}}
|
||||
|
@ -1,4 +1,5 @@
|
||||
// RUN: %clang_cc1 %s -pedantic -verify -triple=x86_64-apple-darwin9
|
||||
// RUN: %clang_cc1 %s -pedantic -verify -triple=mips64-linux-gnu
|
||||
|
||||
// rdar://6097662
|
||||
typedef int (*T)[2];
|
||||
|
@ -53,7 +53,12 @@ __declspec(dllexport) extern int GlobalRedecl2;
|
||||
int GlobalRedecl2;
|
||||
|
||||
extern int GlobalRedecl3; // expected-note{{previous declaration is here}}
|
||||
__declspec(dllexport) extern int GlobalRedecl3; // expected-error{{redeclaration of 'GlobalRedecl3' cannot add 'dllexport' attribute}}
|
||||
__declspec(dllexport) extern int GlobalRedecl3; // expected-warning{{redeclaration of 'GlobalRedecl3' should not add 'dllexport' attribute}}
|
||||
|
||||
extern "C" {
|
||||
extern int GlobalRedecl4; // expected-note{{previous declaration is here}}
|
||||
__declspec(dllexport) extern int GlobalRedecl4; // expected-warning{{redeclaration of 'GlobalRedecl4' should not add 'dllexport' attribute}}
|
||||
}
|
||||
|
||||
// External linkage is required.
|
||||
__declspec(dllexport) static int StaticGlobal; // expected-error{{'StaticGlobal' must have external linkage when declared 'dllexport'}}
|
||||
@ -186,10 +191,15 @@ __declspec(dllexport) void redecl2();
|
||||
void redecl2() {}
|
||||
|
||||
void redecl3(); // expected-note{{previous declaration is here}}
|
||||
__declspec(dllexport) void redecl3(); // expected-error{{redeclaration of 'redecl3' cannot add 'dllexport' attribute}}
|
||||
__declspec(dllexport) void redecl3(); // expected-warning{{redeclaration of 'redecl3' should not add 'dllexport' attribute}}
|
||||
|
||||
extern "C" {
|
||||
void redecl4(); // expected-note{{previous declaration is here}}
|
||||
__declspec(dllexport) inline void redecl4() {} // expected-error{{redeclaration of 'redecl4' cannot add 'dllexport' attribute}}
|
||||
__declspec(dllexport) void redecl4(); // expected-warning{{redeclaration of 'redecl4' should not add 'dllexport' attribute}}
|
||||
}
|
||||
|
||||
void redecl5(); // expected-note{{previous declaration is here}}
|
||||
__declspec(dllexport) inline void redecl5() {} // expected-warning{{redeclaration of 'redecl5' should not add 'dllexport' attribute}}
|
||||
|
||||
// Friend functions
|
||||
struct FuncFriend {
|
||||
@ -200,8 +210,8 @@ struct FuncFriend {
|
||||
};
|
||||
__declspec(dllexport) void friend1() {}
|
||||
void friend2() {}
|
||||
__declspec(dllexport) void friend3() {} // expected-error{{redeclaration of 'friend3' cannot add 'dllexport' attribute}}
|
||||
__declspec(dllexport) inline void friend4() {} // expected-error{{redeclaration of 'friend4' cannot add 'dllexport' attribute}}
|
||||
__declspec(dllexport) void friend3() {} // expected-warning{{redeclaration of 'friend3' should not add 'dllexport' attribute}}
|
||||
__declspec(dllexport) inline void friend4() {} // expected-warning{{redeclaration of 'friend4' should not add 'dllexport' attribute}}
|
||||
|
||||
// Implicit declarations can be redeclared with dllexport.
|
||||
__declspec(dllexport) void* operator new(__SIZE_TYPE__ n);
|
||||
|
@ -75,7 +75,12 @@ __declspec(dllimport) extern int GlobalRedecl3; // expected-note{{previous decla
|
||||
extern int GlobalRedecl3; // expected-warning{{'GlobalRedecl3' redeclared without 'dllimport' attribute: previous 'dllimport' ignored}}
|
||||
|
||||
extern int GlobalRedecl4; // expected-note{{previous declaration is here}}
|
||||
__declspec(dllimport) extern int GlobalRedecl4; // expected-error{{redeclaration of 'GlobalRedecl4' cannot add 'dllimport' attribute}}
|
||||
__declspec(dllimport) extern int GlobalRedecl4; // expected-warning{{redeclaration of 'GlobalRedecl4' should not add 'dllimport' attribute}}
|
||||
|
||||
extern "C" {
|
||||
extern int GlobalRedecl5; // expected-note{{previous declaration is here}}
|
||||
__declspec(dllimport) extern int GlobalRedecl5; // expected-warning{{redeclaration of 'GlobalRedecl5' should not add 'dllimport' attribute}}
|
||||
}
|
||||
|
||||
// External linkage is required.
|
||||
__declspec(dllimport) static int StaticGlobal; // expected-error{{'StaticGlobal' must have external linkage when declared 'dllimport'}}
|
||||
@ -224,10 +229,15 @@ __declspec(dllimport) void redecl3(); // expected-note{{previous declaration is
|
||||
void redecl3() {} // expected-warning{{'redecl3' redeclared without 'dllimport' attribute: previous 'dllimport' ignored}}
|
||||
|
||||
void redecl4(); // expected-note{{previous declaration is here}}
|
||||
__declspec(dllimport) void redecl4(); // expected-error{{redeclaration of 'redecl4' cannot add 'dllimport' attribute}}
|
||||
__declspec(dllimport) void redecl4(); // expected-warning{{redeclaration of 'redecl4' should not add 'dllimport' attribute}}
|
||||
|
||||
extern "C" {
|
||||
void redecl5(); // expected-note{{previous declaration is here}}
|
||||
__declspec(dllimport) inline void redecl5() {} // expected-error{{redeclaration of 'redecl5' cannot add 'dllimport' attribute}}
|
||||
__declspec(dllimport) void redecl5(); // expected-warning{{redeclaration of 'redecl5' should not add 'dllimport' attribute}}
|
||||
}
|
||||
|
||||
void redecl6(); // expected-note{{previous declaration is here}}
|
||||
__declspec(dllimport) inline void redecl6() {} // expected-warning{{redeclaration of 'redecl6' should not add 'dllimport' attribute}}
|
||||
|
||||
// Friend functions
|
||||
struct FuncFriend {
|
||||
@ -240,8 +250,8 @@ struct FuncFriend {
|
||||
__declspec(dllimport) void friend1();
|
||||
void friend2(); // expected-warning{{'friend2' redeclared without 'dllimport' attribute: previous 'dllimport' ignored}}
|
||||
void friend3() {} // expected-warning{{'friend3' redeclared without 'dllimport' attribute: previous 'dllimport' ignored}}
|
||||
__declspec(dllimport) void friend4(); // expected-error{{redeclaration of 'friend4' cannot add 'dllimport' attribute}}
|
||||
__declspec(dllimport) inline void friend5() {} // expected-error{{redeclaration of 'friend5' cannot add 'dllimport' attribute}}
|
||||
__declspec(dllimport) void friend4(); // expected-warning{{redeclaration of 'friend4' should not add 'dllimport' attribute}}
|
||||
__declspec(dllimport) inline void friend5() {} // expected-warning{{redeclaration of 'friend5' should not add 'dllimport' attribute}}
|
||||
|
||||
// Implicit declarations can be redeclared with dllimport.
|
||||
__declspec(dllimport) void* operator new(__SIZE_TYPE__ n);
|
||||
|
@ -1,4 +1,4 @@
|
||||
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
||||
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
|
||||
|
||||
// Template argument deduction with template template parameters.
|
||||
template<typename T, template<T> class A>
|
||||
@ -162,3 +162,33 @@ namespace test14 {
|
||||
foo(a);
|
||||
}
|
||||
}
|
||||
|
||||
namespace PR21536 {
|
||||
template<typename ...T> struct X;
|
||||
template<typename A, typename ...B> struct S {
|
||||
static_assert(sizeof...(B) == 1, "");
|
||||
void f() {
|
||||
using T = A;
|
||||
using T = int;
|
||||
|
||||
using U = X<B...>;
|
||||
using U = X<int>;
|
||||
}
|
||||
};
|
||||
template<typename ...T> void f(S<T...>);
|
||||
void g() { f(S<int, int>()); }
|
||||
}
|
||||
|
||||
namespace PR19372 {
|
||||
template <template<typename...> class C, typename ...Us> struct BindBack {
|
||||
template <typename ...Ts> using apply = C<Ts..., Us...>;
|
||||
};
|
||||
template <typename, typename...> struct Y;
|
||||
template <typename ...Ts> using Z = Y<Ts...>;
|
||||
|
||||
using T = BindBack<Z, int>::apply<>;
|
||||
using T = Z<int>;
|
||||
|
||||
using U = BindBack<Z, int, int>::apply<char>;
|
||||
using U = Z<char, int, int>;
|
||||
}
|
||||
|
@ -272,6 +272,13 @@ config.substitutions.append( ('%test_debuginfo', ' ' + config.llvm_src_root + '/
|
||||
config.substitutions.append( ('%itanium_abi_triple', makeItaniumABITriple(config.target_triple)) )
|
||||
config.substitutions.append( ('%ms_abi_triple', makeMSABITriple(config.target_triple)) )
|
||||
|
||||
# The host triple might not be set, at least if we're compiling clang from
|
||||
# an already installed llvm.
|
||||
if config.host_triple and config.host_triple != '@LLVM_HOST_TRIPLE@':
|
||||
config.substitutions.append( ('%target_itanium_abi_host_triple', '--target=%s' % makeItaniumABITriple(config.host_triple)) )
|
||||
else:
|
||||
config.substitutions.append( ('%target_itanium_abi_host_triple', '') )
|
||||
|
||||
# FIXME: Find nicer way to prohibit this.
|
||||
config.substitutions.append(
|
||||
(' clang ', """*** Do not use 'clang' in tests, use '%clang'. ***""") )
|
||||
|
Loading…
Reference in New Issue
Block a user