/llvm-project/mlir/lib/Conversion/ComplexToStandard/ |
H A D | ComplexToStandard.cpp | 35 Value one = b.create<arith::ConstantOp>(real.getType(), in computeAbs() 38 Value absReal = b.create<math::AbsFOp>(real, fmf); in computeAbs() 39 Value absImag = b.create<math::AbsFOp>(imag, fmf); in computeAbs() 41 Value max = b.create<arith::MaximumFOp>(absReal, absImag, fmf); in computeAbs() 42 Value min = b.create<arith::MinimumFOp>(absReal, absImag, fmf); in computeAbs() 47 Value ratio = b.create<arith::DivFOp>(min, max, fmfWithNaNInf); in computeAbs() 48 Value ratioSq = b.create<arith::MulFOp>(ratio, ratio, fmfWithNaNInf); in computeAbs() 49 Value ratioSqPlusOne = b.create<arith::AddFOp>(ratioSq, one, fmfWithNaNInf); in computeAbs() 53 ratioSqPlusOne = b.create<math::RsqrtOp>(ratioSqPlusOne, fmfWithNaNInf); in computeAbs() 54 min = b.create<mat in computeAbs() [all...] |
/llvm-project/lldb/unittests/Core/ |
H A D | SourceLocationSpecTest.cpp | 70 static SourceLocationSpec Create(bool check_inlines, bool exact_match, in Create() function 86 Equal(Create(false, false, fs, 4), Create(false, false, fs, 4), true)); in TEST() 88 Equal(Create(true, true, fs, 4), Create(true, true, fs, 4), false)); in TEST() 89 EXPECT_FALSE(Equal(Create(false, false, fs, 4), in TEST() 90 Create(false, false, other_fs, 4), true)); in TEST() 92 Equal(Create(true, true, fs, 4), Create(true, true, other_fs, 4), false)); in TEST() 95 EXPECT_TRUE(Equal(Create(false, false, fs, 4, 19), in TEST() 96 Create(false, false, fs, 4, 19), true)); in TEST() 97 EXPECT_TRUE(Equal(Create(true, true, fs, 4, 19), in TEST() 98 Create(true, true, fs, 4, 19), false)); in TEST() [all …]
|
/llvm-project/mlir/lib/Dialect/Math/Transforms/ |
H A D | ExpandPatterns.cpp | 25 /// Create a float constant. 35 return b.create<arith::ConstantOp>(loc, in createFloatConst() 39 return b.create<arith::ConstantOp>(loc, attr); in createFloatConst() 47 /// Create an integer constant. 52 return b.create<arith::ConstantOp>(loc, in createIntConst() 56 return b.create<arith::ConstantOp>(loc, attr); in createIntConst() 64 Value fixedConvert = b.create<arith::FPToSIOp>(i64Ty, operand); in createTruncatedFPValue() 65 Value fpFixedConvert = b.create<arith::SIToFPOp>(opType, fixedConvert); in createTruncatedFPValue() 68 return b.create<math::CopySignOp>(fpFixedConvert, operand); in createTruncatedFPValue() 77 Value exp = b.create<mat in convertSinhOp() [all...] |
H A D | PolynomialApproximation.cpp | 76 return shape ? builder.create<BroadcastOp>(type, value) : value; in broadcast() 134 builder.create<vector::ShapeCastOp>(expandedType, operand); in handleMultidimensionalVectors() 152 builder.create<vector::ExtractOp>(tuple.value(), offsets); in handleMultidimensionalVectors() 160 Value result = builder.create<arith::ConstantOp>( in handleMultidimensionalVectors() 164 result = builder.create<vector::InsertOp>(results[i], result, in handleMultidimensionalVectors() 168 return builder.create<vector::ShapeCastOp>( in handleMultidimensionalVectors() 173 // Helper functions to create constants. in handleMultidimensionalVectors() 180 return builder.create<arith::ConstantOp>( in floatCst() 185 return builder.create<arith::ConstantOp>(builder.getF32FloatAttr(value)); in floatCst() 189 return builder.create<arit in f32Cst() [all...] |
/llvm-project/mlir/lib/Conversion/TosaToArith/ |
H A D | TosaToArith.cpp | 55 return rewriter.create<arith::ConstantOp>( in getConstantValue() 81 Value shift32 = rewriter.create<arith::ExtUIOp>(loc, i32Ty, op.getShift()); in matchAndRewrite() 86 value64 = rewriter.create<arith::ExtSIOp>(loc, i64Ty, value); in matchAndRewrite() 88 rewriter.create<arith::ExtSIOp>(loc, i64Ty, multiplier32); in matchAndRewrite() 90 rewriter.create<arith::MulIOp>(loc, value64, multiplier64); in matchAndRewrite() 93 Value shift64 = rewriter.create<arith::ExtUIOp>(loc, i64Ty, shift32); in matchAndRewrite() 94 Value round = rewriter.create<arith::ShLIOp>(loc, one64, shift64); in matchAndRewrite() 95 round = rewriter.create<arith::ShRUIOp>(loc, round, one64); in matchAndRewrite() 96 multiply64 = rewriter.create<arith::AddIOp>(loc, multiply64, round); in matchAndRewrite() 103 Value positive = rewriter.create<arit in matchAndRewrite() [all...] |
/llvm-project/mlir/lib/Conversion/TosaToLinalg/ |
H A D | TosaToLinalg.cpp | 45 return rewriter.create<arith::ConstantOp>( in createConstFromIntAttribute() 58 return rewriter.create<math::AbsFOp>(loc, resultTypes, args); in createLinalgBodyCalculationForElementwiseOp() 61 auto zero = rewriter.create<arith::ConstantOp>( in createLinalgBodyCalculationForElementwiseOp() 63 auto neg = rewriter.create<arith::SubIOp>(loc, zero, args[0]); in createLinalgBodyCalculationForElementwiseOp() 64 return rewriter.create<arith::MaxSIOp>(loc, args[0], neg); in createLinalgBodyCalculationForElementwiseOp() 69 return rewriter.create<arith::AddFOp>(loc, resultTypes, args); in createLinalgBodyCalculationForElementwiseOp() 72 return rewriter.create<arith::AddIOp>(loc, resultTypes, args); in createLinalgBodyCalculationForElementwiseOp() 76 return rewriter.create<arith::SubFOp>(loc, resultTypes, args); in createLinalgBodyCalculationForElementwiseOp() 79 return rewriter.create<arith::SubIOp>(loc, resultTypes, args); in createLinalgBodyCalculationForElementwiseOp() 83 return rewriter.create<arit in createLinalgBodyCalculationForElementwiseOp() [all...] |
H A D | TosaToLinalgNamed.cpp | 63 Value padValue = rewriter.create<arith::ConstantOp>(loc, padAttr); in applyPad() 65 return rewriter.create<tensor::PadOp>( in applyPad() 76 .create<linalg::GenericOp>( in linalgIntBroadcastExtSIAdd() 83 biasVal = builder.create<arith::ExtSIOp>(loc, resType, biasVal); in linalgIntBroadcastExtSIAdd() 85 Value added = builder.create<arith::AddIOp>(loc, biasVal, args[1]); in linalgIntBroadcastExtSIAdd() 86 builder.create<linalg::YieldOp>(loc, added); in linalgIntBroadcastExtSIAdd() 135 .create<linalg::GenericOp>( in linalgBroadcastAndMaybeExtSI() 142 biasVal = builder.create<arith::ExtSIOp>(loc, resType, biasVal); 144 builder.create<linalg::YieldOp>(loc, biasVal); in reifyConstantDim() 151 return builder.create<arit [all...] |
/llvm-project/flang/unittests/Optimizer/Builder/Runtime/ |
H A D | TransformationalTest.cpp | 19 mlir::Value result = builder.create<fir::UndefOp>(loc, seqTy); in testGenBesselJn() 20 mlir::Value n1 = builder.create<fir::UndefOp>(loc, i32Ty); in testGenBesselJn() 21 mlir::Value n2 = builder.create<fir::UndefOp>(loc, i32Ty); in testGenBesselJn() 22 mlir::Value x = builder.create<fir::UndefOp>(loc, realTy); in testGenBesselJn() 23 mlir::Value bn1 = builder.create<fir::UndefOp>(loc, realTy); in testGenBesselJn() 24 mlir::Value bn2 = builder.create<fir::UndefOp>(loc, realTy); in testGenBesselJn() 42 mlir::Value result = builder.create<fir::UndefOp>(loc, seqTy); in testGenBesselJnX0() 43 mlir::Value n1 = builder.create<fir::UndefOp>(loc, i32Ty); in testGenBesselJnX0() 44 mlir::Value n2 = builder.create<fir::UndefOp>(loc, i32Ty); in testGenBesselJnX0() 62 mlir::Value result = builder.create<fir::UndefOp>(loc, seqTy); in testGenBesselYn() [all …]
|
H A D | CharacterTest.cpp | 18 mlir::Value result = firBuilder->create<fir::UndefOp>(loc, boxTy); in TEST_F() 19 mlir::Value string = firBuilder->create<fir::UndefOp>(loc, boxTy); in TEST_F() 26 mlir::Value result = firBuilder->create<fir::UndefOp>(loc, boxTy); in TEST_F() 27 mlir::Value string = firBuilder->create<fir::UndefOp>(loc, boxTy); in TEST_F() 36 mlir::Value lhsBuff = builder.create<fir::UndefOp>(loc, type); in checkCharCompare1() 37 mlir::Value lhsLen = builder.create<fir::UndefOp>(loc, i32Ty); in checkCharCompare1() 38 mlir::Value rhsBuff = builder.create<fir::UndefOp>(loc, type); in checkCharCompare1() 39 mlir::Value rhsLen = builder.create<fir::UndefOp>(loc, i32Ty); in checkCharCompare1() 75 mlir::Value lhsBuff = builder.create<fir::UndefOp>(loc, boxCharTy); in checkCharCompare2() 76 mlir::Value lhsLen = builder.create<fir::UndefOp>(loc, i32Ty); in checkCharCompare2() [all …]
|
/llvm-project/llvm/unittests/tools/llvm-exegesis/ |
H A D | ClusteringTest.cpp | 34 Points[0].Measurements = {BenchmarkMeasure::Create("x", 0.01, {}), in TEST() 35 BenchmarkMeasure::Create("y", 1.02, {}), in TEST() 36 BenchmarkMeasure::Create("z", 1.98, {})}; in TEST() 37 Points[3].Measurements = {BenchmarkMeasure::Create("x", -0.01, {}), in TEST() 38 BenchmarkMeasure::Create("y", 1.02, {}), in TEST() 39 BenchmarkMeasure::Create("z", 1.98, {})}; in TEST() 41 Points[1].Measurements = {BenchmarkMeasure::Create("x", 1.01, {}), in TEST() 42 BenchmarkMeasure::Create("y", 1.02, {}), in TEST() 43 BenchmarkMeasure::Create("z", 1.98, {})}; in TEST() 44 Points[4].Measurements = {BenchmarkMeasure::Create("x", 0.99, {}), in TEST() [all …]
|
/llvm-project/mlir/test/Dialect/Complex/ |
H A D | canonicalize.mlir | 9 %complex = complex.create %real, %imag : complex<f32> 19 // CHECK-NEXT: %[[COMPLEX:.*]] = complex.create %[[REAL]], %[[IMAG]] : complex<f32> 22 %complex = complex.create %real, %imag : complex<f32> 41 %complex = complex.create %real, %imag : complex<f32> 61 %complex = complex.create %real, %imag : complex<f32> 162 %create = complex.create %arg0, %arg1: complex<f32> 164 %neg = complex.neg %create : complex<f32> 173 %create = complex.create %arg0, %arg1: complex<f32> 175 %neg = complex.neg %create : complex<f32> 184 %create = complex.create %arg0, %arg1: complex<f16> [all …]
|
/llvm-project/mlir/lib/Dialect/Bufferization/Transforms/ |
H A D | LowerDeallocations.cpp | 68 builder.create<memref::DeallocOp>(loc, adaptor.getMemrefs()[0]); in rewriteOneMemrefNoRetainCase() 69 builder.create<scf::YieldOp>(loc); in rewriteOneMemrefNoRetainCase() 112 Value memrefAsIdx = rewriter.create<memref::ExtractAlignedPointerAsIndexOp>( in rewriteOneMemrefMultipleRetainCase() 116 rewriter.create<memref::ExtractAlignedPointerAsIndexOp>(op->getLoc(), in rewriteOneMemrefMultipleRetainCase() 118 Value doesNotAlias = rewriter.create<arith::CmpIOp>( in rewriteOneMemrefMultipleRetainCase() 126 prev = rewriter.create<arith::AndIOp>(op->getLoc(), prev, doesNotAlias); in rewriteOneMemrefMultipleRetainCase() 130 Value shouldDealloc = rewriter.create<arith::AndIOp>( in rewriteOneMemrefMultipleRetainCase() 133 rewriter.create<scf::IfOp>( in rewriteOneMemrefMultipleRetainCase() 135 builder.create<memref::DeallocOp>(loc, adaptor.getMemrefs()[0]); in rewriteOneMemrefMultipleRetainCase() 136 builder.create<sc in rewriteOneMemrefMultipleRetainCase() [all...] |
/llvm-project/mlir/lib/Dialect/SparseTensor/Transforms/ |
H A D | SparseBufferRewriting.cpp | 93 // Create the function. in getMangledSortHelperFunc() 97 func = builder.create<func::FuncOp>( in getMangledSortHelperFunc() 114 Value iOffset = builder.create<arith::MulIOp>(loc, args[0], cstep); in forEachIJPairInXs() 115 Value jOffset = builder.create<arith::MulIOp>(loc, args[1], cstep); in forEachIJPairInXs() 119 Value i = builder.create<arith::AddIOp>(loc, ak, iOffset); in forEachIJPairInXs() 120 Value j = builder.create<arith::AddIOp>(loc, ak, jOffset); in forEachIJPairInXs() 134 // Create code for the first (xPerm + ny) buffers. in forEachIJPairInAllBuffers() 145 // Create code for the remaining buffers. in forEachIJPairInAllBuffers() 168 Value vi = builder.create<memref::LoadOp>(loc, buffer, i); in createSwap() 169 Value vj = builder.create<memre in createSwap() [all...] |
/llvm-project/mlir/lib/Dialect/Async/Transforms/ |
H A D | AsyncParallelFor.cpp | 201 coords[i] = b.create<arith::RemSIOp>(index, tripCounts[i]); in delinearize() 202 index = b.create<arith::DivSIOp>(index, tripCounts[i]); in delinearize() 248 // Create a parallel compute fuction from the parallel operation. in getParallelComputeFunctionType() 261 func::FuncOp func = func::FuncOp::create( in createParallelComputeFunction() 273 // Create function entry block. in createParallelComputeFunction() 286 Value c0 = b.create<arith::ConstantIndexOp>(0); in createParallelComputeFunction() 287 Value c1 = b.create<arith::ConstantIndexOp>(1); in createParallelComputeFunction() 294 return b.create<arith::ConstantOp>(attr); in createParallelComputeFunction() 313 tripCount = b.create<arith::MulIOp>(tripCount, tripCounts[i]); in createParallelComputeFunction() 317 Value blockFirstIndex = b.create<arit in createParallelComputeFunction() [all...] |
/llvm-project/flang/lib/Evaluate/ |
H A D | intrinsics-library.cpp | 46 template <typename... FortranType> static constexpr TypeVector Create() { in Create() 110 TypeVector::Create<host::FortranType<HostTA>...>()}; 189 static constexpr HostRuntimeFunction Create(const std::string_view &name) { in Create() 225 FolderFactory<F, F{std::acos}>::Create("acos"), 226 FolderFactory<F, F{std::acosh}>::Create("acosh"), 227 FolderFactory<F, F{std::asin}>::Create("asin"), 228 FolderFactory<F, F{std::asinh}>::Create("asinh"), 229 FolderFactory<F, F{std::atan}>::Create("atan"), 230 FolderFactory<F2, F2{std::atan2}>::Create("atan2"), 231 FolderFactory<F, F{std::atanh}>::Create("atan 43 template <typename... FortranType> static constexpr TypeVector Create() { Create() function 186 static constexpr HostRuntimeFunction Create(const std::string_view &name) { Create() function in Fortran::evaluate::FolderFactory [all...] |
/llvm-project/mlir/lib/Conversion/ShapeToStandard/ |
H A D | ShapeToStandard.cpp | 85 Value one = lb.create<arith::ConstantIndexOp>(1); in getBroadcastedDim() 90 Value outOfBounds = lb.create<arith::CmpIOp>(arith::CmpIPredicate::ult, in getBroadcastedDim() 94 lb.create<IfOp>( in getBroadcastedDim() 97 b.create<scf::YieldOp>(loc, broadcastedDim); in getBroadcastedDim() 107 Value lesserRankOperandDimension = b.create<arith::SubIOp>( in getBroadcastedDim() 109 Value lesserRankOperandExtent = b.create<tensor::ExtractOp>( in getBroadcastedDim() 113 b.create<arith::CmpIOp>(loc, arith::CmpIPredicate::eq, in getBroadcastedDim() 115 Value dim = b.create<arith::SelectOp>( in getBroadcastedDim() 117 b.create<scf::YieldOp>(loc, dim); in getBroadcastedDim() 136 Value zero = lb.create<arith::ConstantIndexOp>(0); in matchAndRewrite() [all …]
|
/llvm-project/clang/test/Driver/ |
H A D | pch-codegen.cpp | 4 // Create PCH without codegen. 5 …er %S/../Modules/Inputs/codegen-flags/foo.h -### 2>&1 | FileCheck %s -check-prefix=CHECK-PCH-CREATE 6 // CHECK-PCH-CREATE: -emit-pch 7 // CHECK-PCH-CREATE-NOT: -fmodules-codegen 8 // CHECK-PCH-CREATE-NOT: -fmodules-debuginfo 10 // CHECK-PCH-CREATE: "-o" "{{[^"]+.pch}}" 12 // Create PCH with -fpch-codegen. 13 …odegen-flags/foo.h -o %t/foo-cg.pch -### 2>&1 | FileCheck %s -check-prefix=CHECK-PCH-CODEGEN-CREATE 14 // CHECK-PCH-CODEGEN-CREATE: -emit-pch 15 // CHECK-PCH-CODEGEN-CREATE: -fmodules-codegen [all …]
|
/llvm-project/mlir/lib/Dialect/Arith/Utils/ |
H A D | Utils.cpp | 71 b.create<arith::ConstantIndexOp>(loc, indexGroupStaticSizesProductInt); in inferExpandShapeOutputShape() 108 return b.create<arith::ConstantOp>( in getValueOrCreateConstantIntOp() 117 return b.create<arith::ConstantIndexOp>(loc, attr.getValue().getSExtValue()); in getValueOrCreateConstantIndexOp() 128 return b.create<arith::IndexCastOp>(loc, targetType, value); in getValueOrCreateCastToIndexLike() 137 return b.create<arith::ExtSIOp>(loc, targetIntegerType, value); in getValueOrCreateCastToIndexLike() 138 return b.create<arith::TruncIOp>(loc, targetIntegerType, value); in getValueOrCreateCastToIndexLike() 146 return b.create<arith::FPToUIOp>(toType, operand); in convertScalarToIntDtype() 147 return b.create<arith::FPToSIOp>(toType, operand); in convertScalarToIntDtype() 151 return b.create<arith::IndexCastOp>(toType, operand); in convertScalarToIntDtype() 156 return b.create<arit in convertScalarToIntDtype() [all...] |
/llvm-project/clang/test/SemaOpenACC/ |
H A D | compute-construct-create-clause.cpp | 17 #pragma acc parallel create(LocalInt) in uses() 19 #pragma acc serial create(LocalInt) in uses() 21 #pragma acc kernels create(LocalInt) in uses() 25 #pragma acc parallel create(LocalInt, LocalPointer, LocalArray) in uses() 27 #pragma acc parallel create(LocalArray[2:1]) in uses() 31 #pragma acc parallel create(LocalComposite2.ScalarMember, LocalComposite2.ScalarMember) in uses() 35 #pragma acc parallel create(1 + IntParam) in uses() 39 #pragma acc parallel create(+IntParam) in uses() 43 #pragma acc parallel create(PointerParam[2:]) in uses() 47 #pragma acc parallel create(ArrayParam[2:5]) in uses() [all …]
|
H A D | compute-construct-create-clause.c | 16 #pragma acc parallel create(LocalInt) in uses() 18 #pragma acc serial create(LocalInt) in uses() 20 #pragma acc kernels create(LocalInt) in uses() 23 // expected-warning@+1{{OpenACC clause name 'pcreate' is a deprecated clause name and is now an alias for 'create'}} in uses() 27 // expected-warning@+1{{OpenACC clause name 'present_or_create' is a deprecated clause name and is now an alias for 'create'}} in uses() 32 #pragma acc parallel create(LocalInt, LocalPointer, LocalArray) in uses() 34 #pragma acc parallel create(LocalArray[2:1]) in uses() 36 #pragma acc parallel create(zero:LocalArray[2:1]) in uses() 39 #pragma acc parallel create(LocalComposite.ScalarMember, LocalComposite.ScalarMember) in uses() 43 #pragma acc parallel create( in uses() [all...] |
/llvm-project/llvm/unittests/DebugInfo/LogicalView/ |
H A D | LogicalElementsTest.cpp | 26 #define CREATE(VARIABLE, CREATE_FUNCTION) \ macro 104 // Create the logical elements. 106 // Create scope root. in createElements() 112 // Create the logical types. in createElements() 113 CREATE(IntegerType, createType); in createElements() 114 CREATE(UnsignedType, createType); in createElements() 115 CREATE(GlobalType, createType); in createElements() 116 CREATE(LocalType, createType); in createElements() 117 CREATE(NestedType, createType); in createElements() 118 CREATE(EnumeratorOne, createTypeEnumerator); in createElements() [all …]
|
/llvm-project/mlir/lib/Conversion/MathToFuncs/ |
H A D | MathToFuncs.cpp | 124 Value result = rewriter.create<arith::ConstantOp>( in matchAndRewrite() 132 rewriter.create<vector::ExtractOp>(loc, input, positions)); in matchAndRewrite() 134 rewriter.create<Op>(loc, vecType.getElementType(), operands); in matchAndRewrite() 136 rewriter.create<vector::InsertOp>(loc, scalarOp, result, positions); in matchAndRewrite() 154 /// Create linkonce_odr function to implement the power function with 198 auto funcOp = builder.create<func::FuncOp>(funcName, funcType); in createElementIPowIFunc() 211 Value zeroValue = builder.create<arith::ConstantOp>( in createElementIPowIFunc() 213 Value oneValue = builder.create<arith::ConstantOp>( in createElementIPowIFunc() 215 Value minusOneValue = builder.create<arith::ConstantOp>( in createElementIPowIFunc() 224 builder.create<arit in createElementIPowIFunc() [all...] |
/llvm-project/mlir/lib/Dialect/Arith/Transforms/ |
H A D | ExpandOps.cpp | 26 /// Create an integer or index constant. 31 return rewriter.create<arith::ConstantOp>( in createConst() 35 return rewriter.create<arith::ConstantOp>(loc, attr); in createConst() 51 rewriter.create<arith::CmpIOp>(loc, arith::CmpIPredicate::eq, a, zero); in matchAndRewrite() 53 Value minusOne = rewriter.create<arith::SubIOp>(loc, a, one); in matchAndRewrite() 54 Value quotient = rewriter.create<arith::DivUIOp>(loc, minusOne, b); in matchAndRewrite() 55 Value plusOne = rewriter.create<arith::AddIOp>(loc, quotient, one); in matchAndRewrite() 77 rewriter.create<arith::CmpIOp>(loc, arith::CmpIPredicate::sgt, b, zero); in matchAndRewrite() 78 Value x = rewriter.create<arith::SelectOp>(loc, compare, minusOne, plusOne); in matchAndRewrite() 80 Value xPlusA = rewriter.create<arith::AddIOp>(loc, x, a); in matchAndRewrite() [all …]
|
/llvm-project/llvm/unittests/IR/ |
H A D | VerifierTest.cpp | 30 Function *F = Function::Create(FTy, Function::ExternalLinkage, "foo", M); in TEST() 31 BasicBlock *Entry = BasicBlock::Create(C, "entry", F); in TEST() 32 BasicBlock *Exit = BasicBlock::Create(C, "exit", F); in TEST() 33 ReturnInst::Create(C, Exit); in TEST() 35 // To avoid triggering an assertion in BranchInst::Create, we first create in TEST() 39 BranchInst *BI = BranchInst::Create(Exit, Exit, False, Entry); in TEST() 53 Function *F = Function::Create(FTy, Function::ExternalLinkage, "foo", M); in TEST() 54 BasicBlock *Entry = BasicBlock::Create(C, "entry", F); in TEST() 55 ReturnInst *RI = ReturnInst::Create( in TEST() [all...] |
/llvm-project/llvm/test/tools/llvm-ar/ |
H A D | mri-create.test | 1 ## Test the CREATE MRI command. 6 # RUN: llvm-ar -M < create.mri 9 ## Test use of CREATE with no archive name. 17 ## Test use of paths with CREATE. 23 ## Test bad paths with CREATE. 28 ## Test duplicate use of CREATE. 38 #--- create.mri 39 CREATE create.a 47 CREATE 58 CREATE [all …]
|