[llvm-branch-commits] [llvm-branch] r259064 - Merging r258471:
Author: hans Date: Thu Jan 28 12:16:55 2016 New Revision: 259064 URL: http://llvm.org/viewvc/llvm-project?rev=259064&view=rev Log: Merging r258471: r258471 | pirama | 2016-01-21 17:16:57 -0800 (Thu, 21 Jan 2016) | 14 lines Do not lower VSETCC if operand is an f16 vector Summary: SETCC with f16 vectors has OperationAction set to Expand but still gets lowered to FCM* intrinsics based on its result type. This patch skips lowering of VSETCC if the operand is an f16 vector. v4 and v8 tests included. Reviewers: ab, jmolloy Subscribers: srhines, llvm-commits Differential Revision: http://reviews.llvm.org/D15361 Modified: llvm/branches/release_38/ (props changed) llvm/branches/release_38/lib/Target/AArch64/AArch64ISelLowering.cpp llvm/branches/release_38/test/CodeGen/AArch64/fp16-v4-instructions.ll llvm/branches/release_38/test/CodeGen/AArch64/fp16-v8-instructions.ll Propchange: llvm/branches/release_38/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Thu Jan 28 12:16:55 2016 @@ -1,3 +1,3 @@ /llvm/branches/Apple/Pertwee:110850,110961 /llvm/branches/type-system-rewrite:133420-134817 -/llvm/trunk:155241,257645,257648,257730,257775,257791,257875,257886,257902,257905,257925,257929-257930,257940,257942,257977,257979,257997,258168,258184,258207,258221,258273,258325,258406,258416,258428,258436,258690,258729,258891 +/llvm/trunk:155241,257645,257648,257730,257775,257791,257875,257886,257902,257905,257925,257929-257930,257940,257942,257977,257979,257997,258168,258184,258207,258221,258273,258325,258406,258416,258428,258436,258471,258690,258729,258891 Modified: llvm/branches/release_38/lib/Target/AArch64/AArch64ISelLowering.cpp URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_38/lib/Target/AArch64/AArch64ISelLowering.cpp?rev=259064&r1=259063&r2=259064&view=diff == --- llvm/branches/release_38/lib/Target/AArch64/AArch64ISelLowering.cpp (original) +++ llvm/branches/release_38/lib/Target/AArch64/AArch64ISelLowering.cpp Thu Jan 28 12:16:55 2016 @@ -6689,6 +6689,9 @@ SDValue AArch64TargetLowering::LowerVSET return DAG.getSExtOrTrunc(Cmp, dl, Op.getValueType()); } + if (LHS.getValueType().getVectorElementType() == MVT::f16) +return SDValue(); + assert(LHS.getValueType().getVectorElementType() == MVT::f32 || LHS.getValueType().getVectorElementType() == MVT::f64); Modified: llvm/branches/release_38/test/CodeGen/AArch64/fp16-v4-instructions.ll URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_38/test/CodeGen/AArch64/fp16-v4-instructions.ll?rev=259064&r1=259063&r2=259064&view=diff == --- llvm/branches/release_38/test/CodeGen/AArch64/fp16-v4-instructions.ll (original) +++ llvm/branches/release_38/test/CodeGen/AArch64/fp16-v4-instructions.ll Thu Jan 28 12:16:55 2016 @@ -267,4 +267,278 @@ define <4 x i16> @fptoui_i16(<4 x half> ret <4 x i16> %1 } +; Function Attrs: nounwind readnone +; CHECK-LABEL: test_fcmp_une: +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: csel {{.*}}, wzr, ne +; CHECK-DAG: csel {{.*}}, wzr, ne +; CHECK-DAG: csel {{.*}}, wzr, ne +; CHECK-DAG: csel {{.*}}, wzr, ne +define <4 x i1> @test_fcmp_une(<4 x half> %a, <4 x half> %b) #0 { + %1 = fcmp une <4 x half> %a, %b + ret <4 x i1> %1 +} + +; Function Attrs: nounwind readnone +; CHECK-LABEL: test_fcmp_ueq: +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: csel {{.*}}, wzr, eq +; CHECK-DAG: csel {{.*}}, wzr, eq +; CHECK-DAG: csel {{.*}}, wzr, eq +; CHECK-DAG: csel {{.*}}, wzr, eq +; CHECK-DAG: csel {{.*}}, vs +; CHECK-DAG: csel {{.*}}, vs +; CHECK-DAG: csel {{.*}}, vs +; CHECK-DAG: csel {{.*}}, vs +define <4 x i1> @test_fcmp_ueq(<4 x half> %a, <4 x half> %b) #0 { + %1 = fcmp ueq <4 x half> %a, %b + ret <4 x i1> %1 +} + +; Function Attrs: nounwind readnone +; CHECK-LABEL: test_fcmp_ugt: +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: csel {{.*}}, wzr, hi +; CHECK-DAG: csel {{.*}}, wzr, hi +; CHECK-DAG: csel {{.*}}, wzr, hi +; CHECK-DAG: csel {{.*}}, wzr, hi +define <4 x i1> @test_fcmp_ugt(<4 x half> %a, <4 x half> %b) #0 { + %1 = fcmp ugt <4 x half> %a, %b + ret <4 x i1> %1 +} + +; Function Attrs: nounwind readnone +; CHECK-LABEL: test_fcmp_uge: +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcvt +; CHECK-DAG: fcv
[llvm-branch-commits] [llvm-branch] r259066 - Merging r258971:
Author: hans Date: Thu Jan 28 12:23:25 2016 New Revision: 259066 URL: http://llvm.org/viewvc/llvm-project?rev=259066&view=rev Log: Merging r258971: r258971 | spatel | 2016-01-27 11:22:45 -0800 (Wed, 27 Jan 2016) | 26 lines [SimplifyCFG] limit recursion depth when speculating instructions (PR26308) This is a fix for: https://llvm.org/bugs/show_bug.cgi?id=26308 With the switch to using the TTI cost model in: http://reviews.llvm.org/rL228826 ...it became possible to hit a zero-cost cycle of instructions (gep -> phi -> gep...), so we need a cap for the recursion in DominatesMergePoint(). A recursion depth parameter was already added for a different reason in: http://reviews.llvm.org/rL255660 ...so we can just set a limit for it. I pulled "10" out of the air and made it an independent parameter that we can play with. It might be higher than it needs to be given the currently low default value of PHINodeFoldingThreshold (2). That's the starting cost value that we enter the recursion with, and most instructions have cost set to TCC_Basic (1), so I don't think we're going to speculate more than 2 instructions with the current parameters. As noted in the review and the TODO comment, we can do better than just limiting recursion depth. Differential Revision: http://reviews.llvm.org/D16637 Modified: llvm/branches/release_38/ (props changed) llvm/branches/release_38/lib/Transforms/Utils/SimplifyCFG.cpp llvm/branches/release_38/test/Transforms/SimplifyCFG/X86/switch_to_lookup_table.ll Propchange: llvm/branches/release_38/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Thu Jan 28 12:23:25 2016 @@ -1,3 +1,3 @@ /llvm/branches/Apple/Pertwee:110850,110961 /llvm/branches/type-system-rewrite:133420-134817 -/llvm/trunk:155241,257645,257648,257730,257775,257791,257875,257886,257902,257905,257925,257929-257930,257940,257942,257977,257979,257997,258168,258184,258207,258221,258273,258325,258406,258416,258428,258436,258471,258690,258729,258891 +/llvm/trunk:155241,257645,257648,257730,257775,257791,257875,257886,257902,257905,257925,257929-257930,257940,257942,257977,257979,257997,258168,258184,258207,258221,258273,258325,258406,258416,258428,258436,258471,258690,258729,258891,258971 Modified: llvm/branches/release_38/lib/Transforms/Utils/SimplifyCFG.cpp URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_38/lib/Transforms/Utils/SimplifyCFG.cpp?rev=259066&r1=259065&r2=259066&view=diff == --- llvm/branches/release_38/lib/Transforms/Utils/SimplifyCFG.cpp (original) +++ llvm/branches/release_38/lib/Transforms/Utils/SimplifyCFG.cpp Thu Jan 28 12:23:25 2016 @@ -90,6 +90,11 @@ static cl::opt SpeculateOneExpensi cl::desc("Allow exactly one expensive instruction to be speculatively " "executed")); +static cl::opt MaxSpeculationDepth( +"max-speculation-depth", cl::Hidden, cl::init(10), +cl::desc("Limit maximum recursion depth when calculating costs of " + "speculatively executed instructions")); + STATISTIC(NumBitMaps, "Number of switch instructions turned into bitmaps"); STATISTIC(NumLinearMaps, "Number of switch instructions turned into linear mapping"); STATISTIC(NumLookupTables, "Number of switch instructions turned into lookup tables"); @@ -269,6 +274,13 @@ static bool DominatesMergePoint(Value *V unsigned &CostRemaining, const TargetTransformInfo &TTI, unsigned Depth = 0) { + // It is possible to hit a zero-cost cycle (phi/gep instructions for example), + // so limit the recursion depth. + // TODO: While this recursion limit does prevent pathological behavior, it + // would be better to track visited instructions to avoid cycles. + if (Depth == MaxSpeculationDepth) +return false; + Instruction *I = dyn_cast(V); if (!I) { // Non-instructions all dominate instructions, but not all constantexprs Modified: llvm/branches/release_38/test/Transforms/SimplifyCFG/X86/switch_to_lookup_table.ll URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_38/test/Transforms/SimplifyCFG/X86/switch_to_lookup_table.ll?rev=259066&r1=259065&r2=259066&view=diff == --- llvm/branches/release_38/test/Transforms/SimplifyCFG/X86/switch_to_lookup_table.ll (original) +++ llvm/branches/release_38/test/Transforms/SimplifyCFG/X86/switch_to_lookup_table.ll Thu Jan 28 12:23:25 2016 @@ -1302,3 +1302,35 @@ l6: ; CHECK: entry ; CHECK-NEXT: switch } + +; Speculation depth must be limited to avoid a zero-cost instruction cycle. + +; CHECK-LABEL: @PR26308( +; CHECK: clean
[llvm-branch-commits] [lldb] r259081 - Fix Makefile build
Author: hans Date: Thu Jan 28 13:32:20 2016 New Revision: 259081 URL: http://llvm.org/viewvc/llvm-project?rev=259081&view=rev Log: Fix Makefile build - `source/Plugins/Platform/MacOSX/PlatformiOSSimulatorCoreSimulatorSupport.mm` was not matched by the default target, causing link errors. Update Makefile to match r252205. - `test/Makefile` no longer exists for LLDB, since r251532. Differential Revision: http://reviews.llvm.org/D16284 Patch by Isaiah! (Committing directly to 3.8 since the Makefiles were recently removed from trunk.) Modified: lldb/branches/release_38/Makefile lldb/branches/release_38/source/Plugins/Platform/MacOSX/Makefile Modified: lldb/branches/release_38/Makefile URL: http://llvm.org/viewvc/llvm-project/lldb/branches/release_38/Makefile?rev=259081&r1=259080&r2=259081&view=diff == --- lldb/branches/release_38/Makefile (original) +++ lldb/branches/release_38/Makefile Thu Jan 28 13:32:20 2016 @@ -88,14 +88,6 @@ EXTRA_OPTIONS += -Wno-sign-compare ifeq ($(IS_TOP_LEVEL),1) -ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT)) -$(RecursiveTargets):: - $(Verb) if [ ! -f test/Makefile ]; then \ - $(MKDIR) test; \ - $(CP) $(PROJ_SRC_DIR)/test/Makefile test/Makefile; \ - fi -endif - test:: @ $(MAKE) -C test Modified: lldb/branches/release_38/source/Plugins/Platform/MacOSX/Makefile URL: http://llvm.org/viewvc/llvm-project/lldb/branches/release_38/source/Plugins/Platform/MacOSX/Makefile?rev=259081&r1=259080&r2=259081&view=diff == --- lldb/branches/release_38/source/Plugins/Platform/MacOSX/Makefile (original) +++ lldb/branches/release_38/source/Plugins/Platform/MacOSX/Makefile Thu Jan 28 13:32:20 2016 @@ -8,6 +8,25 @@ ##===--===## LLDB_LEVEL := ../../../.. +LEVEL := $(LLDB_LEVEL)/../.. + +include $(LEVEL)/Makefile.config + +SOURCES += PlatformDarwin.cpp \ + PlatformDarwinKernel.cpp \ + PlatformMacOSX.cpp \ + PlatformRemoteiOS.cpp \ + PlatformRemoteAppleTV.cpp \ + PlatformRemoteAppleWatch.cpp + +ifeq ($(HOST_OS),Darwin) +SOURCES += PlatformAppleSimulator.cpp \ + PlatformiOSSimulator.cpp \ + PlatformiOSSimulatorCoreSimulatorSupport.mm \ + PlatformAppleTVSimulator.cpp \ + PlatformAppleWatchSimulator.cpp +endif + LIBRARYNAME := lldbPluginPlatformMacOSX BUILD_ARCHIVE = 1 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [llvm-branch] r259093 - Bring back the test-suite export in test-release without bringing back the build failures.
Author: dsanders Date: Thu Jan 28 15:05:40 2016 New Revision: 259093 URL: http://llvm.org/viewvc/llvm-project?rev=259093&view=rev Log: Bring back the test-suite export in test-release without bringing back the build failures. Summary: r257791 disabled the test-suite export since the addition of CMakeLists.txt was causing build failures. This patch exports the test-suite again but does so outside the source tree so that it isn't included in the Phase[123] builds. Reviewers: hans Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D16679 Modified: llvm/branches/release_38/utils/release/test-release.sh Modified: llvm/branches/release_38/utils/release/test-release.sh URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_38/utils/release/test-release.sh?rev=259093&r1=259092&r2=259093&view=diff == --- llvm/branches/release_38/utils/release/test-release.sh (original) +++ llvm/branches/release_38/utils/release/test-release.sh Thu Jan 28 15:05:40 2016 @@ -155,9 +155,12 @@ while [ $# -gt 0 ]; do done if [ "$use_autoconf" = "no" ]; then - # See llvm.org/PR26146. - echo Skipping test-suite when using CMake. - do_test_suite="no" + if [ "$do_test_suite" = "yes" ]; then +# See llvm.org/PR26146. +echo Skipping test-suite build when using CMake. +echo It will still be exported. +do_test_suite="export-only" + fi fi # Check required arguments. @@ -202,9 +205,11 @@ if [ $do_libs = "yes" ]; then projects="$projects libunwind" fi fi -if [ $do_test_suite = "yes" ]; then - projects="$projects test-suite" -fi +case $do_test_suite in + yes|export-only) +projects="$projects test-suite" +;; +esac if [ $do_openmp = "yes" ]; then projects="$projects openmp" fi @@ -277,9 +282,16 @@ function export_sources() { clang-tools-extra) projsrc=llvm.src/tools/clang/tools/extra ;; -compiler-rt|libcxx|libcxxabi|libunwind|openmp|test-suite) +compiler-rt|libcxx|libcxxabi|libunwind|openmp) projsrc=llvm.src/projects/$proj ;; +test-suite) +if [ $do_test_suite = 'yes' ]; then + projsrc=llvm.src/projects/$proj +else + projsrc=$proj.src +fi +;; *) echo "error: unknown project $proj" exit 1 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [compiler-rt-branch] r259163 - Cleaning up testing branch
Author: echristo Date: Fri Jan 29 01:13:56 2016 New Revision: 259163 URL: http://llvm.org/viewvc/llvm-project?rev=259163&view=rev Log: Cleaning up testing branch Removed: compiler-rt/branches/google/testing/ ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [clang-tools-extra-branch] r259163 - Cleaning up testing branch
Author: echristo Date: Fri Jan 29 01:13:56 2016 New Revision: 259163 URL: http://llvm.org/viewvc/llvm-project?rev=259163&view=rev Log: Cleaning up testing branch Removed: clang-tools-extra/branches/google/testing/ ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [cfe-branch] r259163 - Cleaning up testing branch
Author: echristo Date: Fri Jan 29 01:13:56 2016 New Revision: 259163 URL: http://llvm.org/viewvc/llvm-project?rev=259163&view=rev Log: Cleaning up testing branch Removed: cfe/branches/google/testing/ ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [polly] r259163 - Cleaning up testing branch
Author: echristo Date: Fri Jan 29 01:13:56 2016 New Revision: 259163 URL: http://llvm.org/viewvc/llvm-project?rev=259163&view=rev Log: Cleaning up testing branch Removed: polly/branches/google/testing/ ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [llvm-branch] r259163 - Cleaning up testing branch
Author: echristo Date: Fri Jan 29 01:13:56 2016 New Revision: 259163 URL: http://llvm.org/viewvc/llvm-project?rev=259163&view=rev Log: Cleaning up testing branch Removed: llvm/branches/google/testing/ ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [cfe-tag] r259164 - Creating tags/google/testing/2016-01-28 from r257934
Author: echristo Date: Fri Jan 29 01:13:59 2016 New Revision: 259164 URL: http://llvm.org/viewvc/llvm-project?rev=259164&view=rev Log: Creating tags/google/testing/2016-01-28 from r257934 Added: cfe/tags/google/testing/2016-01-28/ (props changed) - copied from r257934, cfe/trunk/ Propchange: cfe/tags/google/testing/2016-01-28/ -- --- svn:ignore (added) +++ svn:ignore Fri Jan 29 01:13:59 2016 @@ -0,0 +1,3 @@ +configure.out +cscope.files +cscope.out Propchange: cfe/tags/google/testing/2016-01-28/ -- --- svn:mergeinfo (added) +++ svn:mergeinfo Fri Jan 29 01:13:59 2016 @@ -0,0 +1,3 @@ +/cfe/branches/type-system-rewrite:134693-134817 +/cfe/trunk/test:170344 +/cfe/trunk/test/SemaTemplate:126920 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [lldb] r259163 - Cleaning up testing branch
Author: echristo Date: Fri Jan 29 01:13:56 2016 New Revision: 259163 URL: http://llvm.org/viewvc/llvm-project?rev=259163&view=rev Log: Cleaning up testing branch Removed: lldb/branches/google/testing/ ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [clang-tools-extra-tag] r259168 - Creating tags/google/testing/2016-01-28 from r257934
Author: echristo Date: Fri Jan 29 01:14:06 2016 New Revision: 259168 URL: http://llvm.org/viewvc/llvm-project?rev=259168&view=rev Log: Creating tags/google/testing/2016-01-28 from r257934 Added: clang-tools-extra/tags/google/testing/2016-01-28/ - copied from r257934, clang-tools-extra/trunk/ ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [lldb] r259173 - Updating branches/google/testing to r257934
Author: echristo Date: Fri Jan 29 01:14:15 2016 New Revision: 259173 URL: http://llvm.org/viewvc/llvm-project?rev=259173&view=rev Log: Updating branches/google/testing to r257934 Added: lldb/branches/google/testing/ (props changed) - copied from r257934, lldb/trunk/ Propchange: lldb/branches/google/testing/ -- --- svn:ignore (added) +++ svn:ignore Fri Jan 29 01:14:15 2016 @@ -0,0 +1,4 @@ +build +intermediates +llvm +llvm-build Propchange: lldb/branches/google/testing/ -- --- svn:mergeinfo (added) +++ svn:mergeinfo Fri Jan 29 01:14:15 2016 @@ -0,0 +1,2 @@ +/lldb/branches/apple/python-GIL:156467-162159 +/lldb/branches/iohandler:198360-200250 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [llvm-branch] r259175 - Updating branches/google/testing to r257934
Author: echristo Date: Fri Jan 29 01:14:19 2016 New Revision: 259175 URL: http://llvm.org/viewvc/llvm-project?rev=259175&view=rev Log: Updating branches/google/testing to r257934 Added: llvm/branches/google/testing/ (props changed) - copied from r257934, llvm/trunk/ Propchange: llvm/branches/google/testing/ -- --- svn:ignore (added) +++ svn:ignore Fri Jan 29 01:14:19 2016 @@ -0,0 +1,25 @@ +Debug +Release +Release-Asserts +mklib +Makefile.config +config.log +config.status +cvs.out +autom4te.cache +configure.out +LLVM-* +_distcheckdir +llvm.spec +svn-commit.* +*.patch +*.patch.raw +cscope.* +Debug+Coverage-Asserts +Release+Coverage-Asserts +Debug+Coverage +Release+Coverage +Debug+Checks +Debug+Asserts +Release+Asserts +build Propchange: llvm/branches/google/testing/ -- --- svn:mergeinfo (added) +++ svn:mergeinfo Fri Jan 29 01:14:19 2016 @@ -0,0 +1,3 @@ +/llvm/branches/Apple/Pertwee:110850,110961 +/llvm/branches/type-system-rewrite:133420-134817 +/llvm/trunk:155241 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [lldb] r259172 - Creating tags/google/testing/2016-01-28 from r257934
Author: echristo Date: Fri Jan 29 01:14:13 2016 New Revision: 259172 URL: http://llvm.org/viewvc/llvm-project?rev=259172&view=rev Log: Creating tags/google/testing/2016-01-28 from r257934 Added: lldb/tags/google/testing/2016-01-28/ (props changed) - copied from r257934, lldb/trunk/ Propchange: lldb/tags/google/testing/2016-01-28/ -- --- svn:ignore (added) +++ svn:ignore Fri Jan 29 01:14:13 2016 @@ -0,0 +1,4 @@ +build +intermediates +llvm +llvm-build Propchange: lldb/tags/google/testing/2016-01-28/ -- --- svn:mergeinfo (added) +++ svn:mergeinfo Fri Jan 29 01:14:13 2016 @@ -0,0 +1,2 @@ +/lldb/branches/apple/python-GIL:156467-162159 +/lldb/branches/iohandler:198360-200250 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [compiler-rt-tag] r259166 - Creating tags/google/testing/2016-01-28 from r257934
Author: echristo Date: Fri Jan 29 01:14:02 2016 New Revision: 259166 URL: http://llvm.org/viewvc/llvm-project?rev=259166&view=rev Log: Creating tags/google/testing/2016-01-28 from r257934 Added: compiler-rt/tags/google/testing/2016-01-28/ - copied from r257934, compiler-rt/trunk/ ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [compiler-rt-branch] r259167 - Updating branches/google/testing to r257934
Author: echristo Date: Fri Jan 29 01:14:04 2016 New Revision: 259167 URL: http://llvm.org/viewvc/llvm-project?rev=259167&view=rev Log: Updating branches/google/testing to r257934 Added: compiler-rt/branches/google/testing/ - copied from r257934, compiler-rt/trunk/ ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [clang-tools-extra-branch] r259169 - Updating branches/google/testing to r257934
Author: echristo Date: Fri Jan 29 01:14:08 2016 New Revision: 259169 URL: http://llvm.org/viewvc/llvm-project?rev=259169&view=rev Log: Updating branches/google/testing to r257934 Added: clang-tools-extra/branches/google/testing/ - copied from r257934, clang-tools-extra/trunk/ ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [cfe-branch] r259165 - Updating branches/google/testing to r257934
Author: echristo Date: Fri Jan 29 01:14:00 2016 New Revision: 259165 URL: http://llvm.org/viewvc/llvm-project?rev=259165&view=rev Log: Updating branches/google/testing to r257934 Added: cfe/branches/google/testing/ (props changed) - copied from r257934, cfe/trunk/ Propchange: cfe/branches/google/testing/ -- --- svn:ignore (added) +++ svn:ignore Fri Jan 29 01:14:00 2016 @@ -0,0 +1,3 @@ +configure.out +cscope.files +cscope.out Propchange: cfe/branches/google/testing/ -- --- svn:mergeinfo (added) +++ svn:mergeinfo Fri Jan 29 01:14:00 2016 @@ -0,0 +1,3 @@ +/cfe/branches/type-system-rewrite:134693-134817 +/cfe/trunk/test:170344 +/cfe/trunk/test/SemaTemplate:126920 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [polly] r259170 - Creating tags/google/testing/2016-01-28 from r257934
Author: echristo Date: Fri Jan 29 01:14:10 2016 New Revision: 259170 URL: http://llvm.org/viewvc/llvm-project?rev=259170&view=rev Log: Creating tags/google/testing/2016-01-28 from r257934 Added: polly/tags/google/testing/2016-01-28/ - copied from r257934, polly/trunk/ ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [llvm-tag] r259174 - Creating tags/google/testing/2016-01-28 from r257934
Author: echristo Date: Fri Jan 29 01:14:17 2016 New Revision: 259174 URL: http://llvm.org/viewvc/llvm-project?rev=259174&view=rev Log: Creating tags/google/testing/2016-01-28 from r257934 Added: llvm/tags/google/testing/2016-01-28/ (props changed) - copied from r257934, llvm/trunk/ Propchange: llvm/tags/google/testing/2016-01-28/ -- --- svn:ignore (added) +++ svn:ignore Fri Jan 29 01:14:17 2016 @@ -0,0 +1,25 @@ +Debug +Release +Release-Asserts +mklib +Makefile.config +config.log +config.status +cvs.out +autom4te.cache +configure.out +LLVM-* +_distcheckdir +llvm.spec +svn-commit.* +*.patch +*.patch.raw +cscope.* +Debug+Coverage-Asserts +Release+Coverage-Asserts +Debug+Coverage +Release+Coverage +Debug+Checks +Debug+Asserts +Release+Asserts +build Propchange: llvm/tags/google/testing/2016-01-28/ -- --- svn:mergeinfo (added) +++ svn:mergeinfo Fri Jan 29 01:14:17 2016 @@ -0,0 +1,3 @@ +/llvm/branches/Apple/Pertwee:110850,110961 +/llvm/branches/type-system-rewrite:133420-134817 +/llvm/trunk:155241 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [polly] r259171 - Updating branches/google/testing to r257934
Author: echristo Date: Fri Jan 29 01:14:12 2016 New Revision: 259171 URL: http://llvm.org/viewvc/llvm-project?rev=259171&view=rev Log: Updating branches/google/testing to r257934 Added: polly/branches/google/testing/ - copied from r257934, polly/trunk/ ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits