llvm-6502/test/FrontendC
Chris Lattner 1afcace3a3 Land the long talked about "type system rewrite" patch. This
patch brings numerous advantages to LLVM.  One way to look at it
is through diffstat:
 109 files changed, 3005 insertions(+), 5906 deletions(-)

Removing almost 3K lines of code is a good thing.  Other advantages
include:

1. Value::getType() is a simple load that can be CSE'd, not a mutating
   union-find operation.
2. Types a uniqued and never move once created, defining away PATypeHolder.
3. Structs can be "named" now, and their name is part of the identity that
   uniques them.  This means that the compiler doesn't merge them structurally
   which makes the IR much less confusing.
4. Now that there is no way to get a cycle in a type graph without a named
   struct type, "upreferences" go away.
5. Type refinement is completely gone, which should make LTO much MUCH faster
   in some common cases with C++ code.
6. Types are now generally immutable, so we can use "Type *" instead 
   "const Type *" everywhere.

Downsides of this patch are that it removes some functions from the C API,
so people using those will have to upgrade to (not yet added) new API.  
"LLVM 3.0" is the right time to do this.

There are still some cleanups pending after this, this patch is large enough
as-is.




git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134829 91177308-0d34-0410-b5e6-96231b3b80d8
2011-07-09 17:41:24 +00:00
..
ARM Fix this test to actually check something and be able to be compiled. 2011-06-27 22:30:14 +00:00
2002-01-23-LoadQISIReloadFailure.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-01-24-ComplexSpaceInType.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-01-24-HandleCallInsnSEGV.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-02-13-ConditionalInCall.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-02-13-ReloadProblem.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-02-13-TypeVarNameCollision.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-02-13-UnnamedLocal.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-02-14-EntryNodePreds.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-02-16-RenamingTest.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-02-17-ArgumentAddress.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-02-18-64bitConstant.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-02-18-StaticData.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-03-11-LargeCharInString.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-03-12-ArrayInitialization.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-03-12-StructInitialize.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-03-12-StructInitializer.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-03-14-BrokenPHINode.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-03-14-BrokenSSA.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-03-14-QuotesInStrConst.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-04-07-SwitchStmt.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-04-08-LocalArray.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-04-09-StructRetVal.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-04-10-StructParameters.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-05-23-StaticValues.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-05-23-TypeNameCollision.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-05-24-Alloca.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-06-25-FWriteInterfaceFailure.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-07-14-MiscListTests.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-07-14-MiscTests2.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-07-14-MiscTests3.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-07-14-MiscTests.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-07-16-HardStringInit.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-07-17-StringConstant.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-07-29-Casts.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-07-30-SubregSetAssertion.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-07-30-UnionTest.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-07-30-VarArgsCallFailure.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-07-31-BadAssert.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-07-31-SubregFailure.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-08-02-UnionTest.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-08-19-RecursiveLocals.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-09-08-PointerShifts.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-09-18-UnionProblem.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-09-19-StarInLabel.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-10-12-TooManyArguments.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-12-15-GlobalBoolTest.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-12-15-GlobalConstantTest.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-12-15-GlobalRedefinition.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2002-12-15-StructParameters.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-01-30-UnionInit.c
2003-03-03-DeferredType.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-06-22-UnionCrash.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-06-23-GCC-fold-infinite-recursion.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-06-26-CFECrash.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-06-29-MultipleFunctionDefinition.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-07-22-ArrayAccessTypeSafety.c
2003-08-06-BuiltinSetjmpLongjmp.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2003-08-17-DeadCodeShortCircuit.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2003-08-18-SigSetJmp.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-08-18-StructAsValue.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-08-20-BadBitfieldRef.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-08-20-PrototypeMismatch.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-08-20-vfork-bug.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-08-21-BinOp-Type-Mismatch.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-08-21-StmtExpr.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-08-21-WideString.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-08-23-LocalUnionTest.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-08-29-BitFieldStruct.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-08-29-HugeCharConst.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-08-29-StructLayoutBug.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-08-30-AggregateInitializer.c
2003-08-30-LargeIntegerBitfieldMember.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-09-18-BitfieldTests.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-09-30-StructLayout.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-10-02-UnionLValueError.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-10-06-NegateExprType.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-10-09-UnionInitializerBug.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-10-28-ident.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-10-29-AsmRename.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-01-C99-CompoundLiteral.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-01-EmptyStructCrash.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-01-GlobalUnionInit.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-03-AddrArrayElement.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2003-11-04-EmptyStruct.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-04-OutOfMemory.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-08-PointerSubNotGetelementptr.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2003-11-12-VoidString.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-13-TypeSafety.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2003-11-16-StaticArrayInit.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-18-CondExprLValue.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-19-AddressOfRegister.c
2003-11-19-BitFieldArray.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-20-Bitfields.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-20-ComplexDivision.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-20-UnionBitfield.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-26-PointerShift.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-27-ConstructorCast.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-11-27-UnionCtorInitialization.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2003-12-14-ExternInlineSupport.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2004-01-01-UnknownInitSize.c
2004-01-08-ExternInlineRedefine.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2004-02-12-LargeAggregateCopy.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2004-02-13-BuiltinFrameReturnAddress.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2004-02-13-IllegalVararg.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2004-02-13-Memset.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2004-02-14-ZeroInitializer.c
2004-02-20-Builtins.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2004-03-07-ComplexDivEquals.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2004-03-07-ExternalConstant.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2004-03-09-LargeArrayInitializers.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2004-03-15-SimpleIndirectGoto.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2004-03-16-AsmRegisterCrash.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2004-05-07-VarArrays.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2004-05-21-IncompleteEnum.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2004-06-08-OpaqueStructArg.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2004-06-17-UnorderedBuiltins.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2004-06-17-UnorderedCompares.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2004-06-18-VariableLengthArrayOfStructures.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2004-07-06-FunctionCast.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2004-08-06-LargeStructTest.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2004-11-25-UnnamedBitfieldPadding.c
2004-11-27-InvalidConstantExpr.c
2004-11-27-StaticFunctionRedeclare.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2004-11-27-VariableSizeInStructure.c
2005-01-02-ConstantInits.c
2005-01-02-PointerDifference.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2005-01-02-VAArgError-ICE.c
2005-02-20-AggregateSAVEEXPR.c
2005-02-27-MarkGlobalConstant.c Update llvm-gcc's tests. 2011-01-14 17:01:20 +00:00
2005-03-05-OffsetOfHack.c
2005-03-06-OffsetOfStructCrash.c
2005-03-11-Prefetch.c
2005-04-09-ComplexOps.c
2005-05-06-CountBuiltins.c
2005-05-10-GlobalUnionInit.c
2005-06-15-ExpandGotoInternalProblem.c Remove now-redundant llvm-as invocations. 2009-12-05 00:02:37 +00:00
2005-07-20-SqrtNoErrno.c Reenable sqrt IR generation test. 2009-09-24 23:37:40 +00:00
2005-07-26-UnionInitCrash.c
2005-07-28-IncorrectWeakGlobal.c
2005-09-20-ComplexConstants.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2005-09-24-AsmUserPrefix.c Remove now-redundant llvm-as invocations. 2009-12-05 00:02:37 +00:00
2005-09-24-BitFieldCrash.c
2005-10-18-VariableSizedElementCrash.c Fix some llvm-gcc warnings in testcases, mostly by adding includes or adding 2008-06-10 14:37:44 +00:00
2005-12-04-AttributeUsed.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2005-12-04-DeclarationLineNumbers.c XFAIL these tests for now. 2009-10-13 01:51:29 +00:00
2006-01-13-Includes.c Optimizer may remove debug info. This test checks debug info for include headers. 2009-10-13 20:56:38 +00:00
2006-01-13-StackSave.c Remove now-redundant llvm-as invocations. 2009-12-05 00:02:37 +00:00
2006-01-16-BitCountIntrinsicsUnsigned.c Fix test to account for no more whitespace and that one of the matches is the 2008-09-16 06:40:04 +00:00
2006-01-23-FileScopeAsm.c Remove now-redundant llvm-as invocations. 2009-12-05 00:02:37 +00:00
2006-03-03-MissingInitializer.c Update llvm-gcc's tests. 2011-01-14 17:01:20 +00:00
2006-03-16-VectorCtor.c
2006-03-17-KnRMismatch.c
2006-05-01-AppleAlignmentPragma.c Fix a ton of comment typos found by codespell. Patch by 2011-04-15 05:18:47 +00:00
2006-05-19-SingleEltReturn.c
2006-07-31-PR854.c Add -w to inhibit gcc warnings, which causes the 2008-06-10 18:00:09 +00:00
2006-09-11-BitfieldRefCrash.c
2006-09-18-fwrite-cast-crash.c Fix PR numbers, I accidentally switched two digits. 2008-06-16 09:38:23 +00:00
2006-09-21-IncompleteElementType.c
2006-09-25-DebugFilename.c
2006-09-25-DebugFilename.h
2006-09-28-SimpleAsm.c
2006-10-30-ArrayCrash.c
2006-12-14-ordered_expr.c
2007-01-06-KNR-Proto.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-01-20-VectorICE.c
2007-01-24-InlineAsmCModifier.c Remove now-redundant llvm-as invocations. 2009-12-05 00:02:37 +00:00
2007-02-04-AddrLValue-2.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-02-04-AddrLValue.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-02-04-EmptyStruct.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-02-04-WITH_SIZE_EXPR.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-02-05-nested.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-02-07-AddrLabel.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-02-16-VariableSizeStructArg.c Add -w to inhibit gcc warnings, which causes the 2008-06-10 18:00:09 +00:00
2007-02-16-VoidPtrDiff.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-02-16-WritableStrings.c Update llvm-gcc's tests. 2011-01-14 17:01:20 +00:00
2007-02-25-C-DotDotDot.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-03-01-VarSizeArrayIdx.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-03-05-DataLayout.c
2007-03-06-VarSizeInStruct1.c Add -w to inhibit gcc warnings, which causes the 2008-06-10 18:00:09 +00:00
2007-03-06-VarSizeInStruct2.c
2007-03-26-BitfieldAfterZeroWidth.c
2007-03-26-ZeroWidthBitfield.c
2007-03-27-ArrayCompatible.c
2007-03-27-VarLengthArray.c llvm-gcc now emits inbounds for this getelementptr. 2009-08-12 00:35:55 +00:00
2007-04-05-PackedBitFields-2.c
2007-04-05-PackedBitFields.c
2007-04-05-PackedStruct.c
2007-04-05-PadBeforeZeroLengthField.c
2007-04-05-UnPackedStruct.c
2007-04-11-InlineAsmStruct.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-04-11-InlineAsmUnion.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-04-11-InlineStorageClassC89.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-04-11-InlineStorageClassC99.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-04-11-PR1321.c
2007-04-13-InlineAsmStruct2.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-04-13-InlineAsmUnion2.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-04-14-FNoBuiltin.c
2007-04-17-ZeroSizeBitFields.c
2007-04-24-bit-not-expr.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-04-24-str-const.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-04-24-VolatileStructCopy.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-05-07-NestedStructReturn.c
2007-05-07-PaddingElements.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-05-08-PCH.c
2007-05-11-str-const.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-05-15-PaddingElement.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-05-16-EmptyStruct.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-05-29-UnionCopy.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-06-05-NoInlineAttribute.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-06-15-AnnotateAttribute.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-06-18-SextAttrAggregate.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-07-29-RestrictPtrArg.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-08-01-LoadStoreAlign.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-08-21-ComplexCst.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-08-22-CTTZ.c
2007-09-05-ConstCtor.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-09-12-PragmaPack.c
2007-09-14-NegatePointer.c
2007-09-17-WeakRef.c Eliminate llvmgcc_version testing variable. 2010-02-23 07:56:28 +00:00
2007-09-20-GcrootAttribute.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-09-26-Alignment.c
2007-09-27-ComplexIntCompare.c Fix some llvm-gcc warnings in testcases, mostly by adding includes or adding 2008-06-10 14:37:44 +00:00
2007-09-28-PackedUnionMember.c fix a warning. 2008-06-20 05:28:56 +00:00
2007-10-01-BuildArrayRef.c Typo. Thanks to BillW for pointing it out! 2010-09-07 20:39:07 +00:00
2007-10-02-VolatileArray.c
2007-10-15-VoidPtr.c
2007-10-30-Volatile.c
2007-11-07-AlignedMemcpy.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-11-07-CopyAggregateAlign.c
2007-11-07-ZeroAggregateAlign.c
2007-11-27-SExtZExt.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2007-11-28-GlobalInitializer.c
2007-12-16-AsmNoUnwind.c
2007-12-VarArrayDebug.c Remove now-redundant llvm-as invocations. 2009-12-05 00:02:37 +00:00
2008-01-04-WideBitfield.c
2008-01-07-UnusualIntSize.c This is now done using a real i33, rather than 2009-02-10 20:44:15 +00:00
2008-01-11-ChainConsistency.c
2008-01-21-PackedBitFields.c
2008-01-21-PackedStructField.c
2008-01-24-StructAlignAndBitFields.c
2008-01-25-ByValReadNone.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2008-01-25-ZeroSizedAggregate.c
2008-01-28-PragmaMark.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2008-01-28-UnionSize.c
2008-02-11-AnnotateBuiltin.c
2008-03-03-CtorAttrType.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2008-03-05-syncPtr.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2008-03-24-BitField-And-Alloca.c no really, fix the test. 2010-08-27 23:05:54 +00:00
2008-03-26-PackedBitFields.c
2008-04-08-NoExceptions.c
2008-05-06-CFECrash.c
2008-05-12-TempUsedBeforeDef.c Add -w to inhibit gcc warnings, which causes the 2008-06-10 18:00:09 +00:00
2008-05-19-AlwaysInline.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2008-07-08-FAbsAttributes.c Testcase for PR2520. 2008-07-08 10:11:36 +00:00
2008-08-07-AlignPadding1.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2008-08-07-AlignPadding2.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2008-08-07-GEPIntToPtr.c Testcase for r54520. 2008-08-08 07:00:26 +00:00
2008-09-03-WeakAlias.c Testcase for PR1678. 2008-09-03 07:52:01 +00:00
2008-10-13-FrontendCrash.c new testcase for PR2797 2008-10-14 06:56:04 +00:00
2008-10-30-ZeroPlacement.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2008-11-02-WeakAlias.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2008-11-08-InstCombineSelect.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2008-11-11-AnnotateStructFieldAttribute.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2008-12-23-AsmIntPointerTie.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2009-01-05-BlockInlining.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2009-01-20-k8.c Add -o /dev/null to some tests which don't care about their output. 2010-04-30 17:42:30 +00:00
2009-01-21-InvalidIterator.c Add -o /dev/null to some tests which don't care about their output. 2010-04-30 17:42:30 +00:00
2009-02-13-zerosize-union-field-ppc.c The correct values here (as defined by gcc-4.2) are 2009-06-23 18:42:26 +00:00
2009-02-13-zerosize-union-field.c The correct values here (as defined by gcc-4.2) are 2009-06-23 18:42:26 +00:00
2009-02-17-BitField-dbg.c Pass -disable-cfi to llc. 2011-05-06 18:01:58 +00:00
2009-03-01-MallocNoAlias.c Functions marked malloc are noalias return. 2009-03-01 16:19:31 +00:00
2009-03-08-ZeroEltStructCrash.c testcase for PR3744 2009-03-09 05:44:59 +00:00
2009-03-09-WeakDeclarations-1.c Avoid Tcl substitution, introduced %llvmgcc_only for this one little test 2009-09-07 19:25:54 +00:00
2009-03-13-dbg.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2009-04-22-UnknownSize.c Add -o /dev/null to some tests which don't care about their output. 2010-04-30 17:42:30 +00:00
2009-04-28-UnionArrayCrash.c testcase for PR4082 2009-04-29 06:46:27 +00:00
2009-05-04-EnumInreg.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2009-05-17-AlwaysInline.c Commands beginning with '--' are converted to '-f' by gcc. Blech! 2009-05-18 18:09:36 +00:00
2009-06-14-HighlyAligned.c Add -o /dev/null to some tests which don't care about their output. 2010-04-30 17:42:30 +00:00
2009-06-18-StaticInitTailPadPack.c new testcase for rdar://6983634 2009-06-18 22:53:26 +00:00
2009-07-14-VoidPtr.c Testcase for PR4556 2009-07-14 18:42:24 +00:00
2009-07-15-pad-wchar_t-array.c Remove obsolete -f flags. 2009-08-25 15:38:29 +00:00
2009-07-17-VoidParameter.c Testcase for PR4214. 2009-07-17 11:44:20 +00:00
2009-07-22-StructLayout.c testcase for PR4590 2009-07-23 06:07:59 +00:00
2009-08-11-AsmBlocksComplexJumpTarget.c Mark test as passing on all x86, which it should, 2009-08-31 17:49:20 +00:00
2009-09-24-SqrtErrno.c Reenable sqrt IR generation test. 2009-09-24 23:37:40 +00:00
2009-12-07-BitFieldAlignment.c Let that which does not matter truly slide. 2010-04-06 23:44:44 +00:00
2010-01-05-LinkageName.c Pass -disable-cfi. 2011-05-06 17:44:58 +00:00
2010-01-13-MemBarrier.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2010-01-14-FnType-DebugInfo.c new test case for r93485. 2010-01-15 00:34:26 +00:00
2010-01-14-StaticVariable.c Pass -disable-cfi to llc. 2011-05-06 18:01:58 +00:00
2010-01-18-Inlined-Debug.c While mapping llvm.dbg.declare intrinsic manually map its operand, if possible, 2010-01-18 19:52:14 +00:00
2010-02-10-PointerName.c test case for r95842. 2010-02-11 01:31:01 +00:00
2010-02-15-DbgStaticVar.c New testcase. 2010-02-16 21:16:08 +00:00
2010-02-16-DbgVarScope.c Pass -disable-cfi to llc. 2011-05-06 18:01:58 +00:00
2010-02-18-Dbg-VectorType.c Test case for r96656. 2010-02-19 02:58:33 +00:00
2010-03-5-LexicalScope.c Revert 104841, 104842, 104876 due to buildbot failures. Radar 7424645. 2010-05-28 16:41:07 +00:00
2010-03-10-arm-asmreg.c Testcase for pr6552. I changed the code to use "ip" instead of "fp" because 2010-03-10 17:54:11 +00:00
2010-05-14-Optimized-VarType.c Test case for r103800. 2010-05-14 21:04:45 +00:00
2010-05-18-asmsched.c Fix test to be less sensitive to coalescing. 2011-05-05 16:48:00 +00:00
2010-05-18-palignr.c Once more, with feeling. 2010-05-20 00:07:13 +00:00
2010-05-26-AsmSideEffect.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2010-05-31-palignr.c Add a test for the llvm-gcc commit in r90200. 2010-05-31 20:39:10 +00:00
2010-06-11-SaveExpr.c Test case for Radar 8004649. 2010-06-14 18:37:04 +00:00
2010-06-17-asmcrash.c In asm's, output operands with matching input constraints 2010-06-28 22:09:45 +00:00
2010-06-28-DbgLocalVar.c Preserve deleted function's local variables' debug info. 2010-06-28 18:25:03 +00:00
2010-06-28-nowarn.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2010-07-08-DeclDebugLineNo.c Test case for r107843. Radar 8152866. 2010-07-08 20:31:05 +00:00
2010-07-14-overconservative-align.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
2010-07-14-ref-off-end.c update one more test 2010-09-02 23:32:55 +00:00
2010-07-27-MinNoFoldConst.c Fix a ton of comment typos found by codespell. Patch by 2011-04-15 05:18:47 +00:00
2010-08-12-asm-aggr-arg.c Add a test for llvm-gcc svn 110632. 2010-08-12 17:31:41 +00:00
2010-11-16-asmblock.c Test for llvm-gcc patch 119392. 2010-11-16 21:57:15 +00:00
2010-12-01-CommonGlobal.c Test case for r120740. Radar 8712503. 2010-12-02 21:25:55 +00:00
2011-02-21-DATA-common.c Test case for r126127. Radar 9012638. 2011-02-21 18:08:40 +00:00
2011-03-02-UnionInitializer.c Test cases for r127309. <rdar://problem/9055247> 2011-03-09 03:59:52 +00:00
2011-03-08-ZeroFieldUnionInitializer.c Add a RUN line to the test case to make it functional. <rdar://problem/9055247> 2011-03-09 04:02:40 +00:00
2011-03-31-ArrayRefFolding.c Testcase for r128619 (PR9571). 2011-03-31 08:13:57 +00:00
alignstack.c Adjust testcases for msasm -> alignstack. 2009-10-21 23:29:12 +00:00
always-inline.c Add a always_inline test case. 2009-01-29 09:31:54 +00:00
arrayderef.c Testcase for llvm-gcc 118368. 8629268. 2010-11-07 04:58:48 +00:00
asm-reg-var-local.c On i386, llvm-gcc cannot be assumed to support -m64. Since these 2010-09-09 12:43:44 +00:00
Atomics-no64bit.c Use ',' separation in XFAILs, lit doesn't evaluate them as regexs (easy to add, 2009-11-09 16:38:15 +00:00
Atomics.c Use ',' separation in XFAILs, lit doesn't evaluate them as regexs (easy to add, 2009-11-09 16:38:15 +00:00
attribute_constructor.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
BasicInstrs.c Remove now-redundant llvm-as invocations. 2009-12-05 00:02:37 +00:00
block-copy.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
crash-invalid-array.c testcase for PR6913 2010-04-25 05:51:14 +00:00
dg.exp
exact-div-expr.c
extern-weak.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
fp-logical.c Test fp not. 2008-09-24 00:50:16 +00:00
func-aligned.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
funccall.c
hidden-visibility.c Update llvm-gcc's tests. 2011-01-14 17:01:20 +00:00
implicit-arg.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
inline-asm-function.c Fix comment. 2010-04-28 22:23:46 +00:00
inline-asm-mrv.c
libcalls-d.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
libcalls-ld.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
libcalls.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
misaligned-param.c Apparently only Darwin passes long double misaligned. Compensate. 2010-09-01 21:57:20 +00:00
mmx-inline-asm.c Land the long talked about "type system rewrite" patch. This 2011-07-09 17:41:24 +00:00
nested-functions.c
pr2394.c Test case for pr2394 and r102979. 2010-05-05 22:49:33 +00:00
pr3518.c Update llvm-gcc's tests. 2011-01-14 17:01:20 +00:00
pr4349.c Update for r132493 change. 2011-06-02 22:11:49 +00:00
pr5406.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
ptr-rotate.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
redef-ext-inline.c Add a test case for r81431. 2009-09-10 05:08:51 +00:00
sret2.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
sret.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
struct-matching-constraint.c Add a testcase, enabled only on arm, for llvm-gcc r132366. 2011-06-01 18:23:56 +00:00
unaligned-memcpy.c Remove explicit uses of -emit-llvm, the test infrastructure adds it 2010-11-25 21:24:35 +00:00
union-align.c Add a test case for Chris lvalue alignment fixes. 2009-01-29 08:59:46 +00:00
vla-1.c PPC doesn't supported VLA with large alignment. This was 2010-07-30 21:09:48 +00:00
vla-2.c Update this to use a "valid" alignment. 2010-07-21 04:51:24 +00:00
vla-3.c Testcase for llvm-gcc commit r128230. 2011-03-24 21:59:03 +00:00
wchar-const.c Use wchar.h to get wchar_t, not ctype.h. 2009-08-11 19:59:21 +00:00
weak_constant.c Don't load values out of global constants with weak 2009-03-20 21:53:29 +00:00