From ghc-devs at haskell.org Fri Apr 1 03:57:03 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 01 Apr 2016 03:57:03 -0000 Subject: [GHC] #11780: GHC stage-2 build fails with "relocation R_X86_64_PC32 against `exitStaticPtrTable' can not be used when making a shared object" Message-ID: <050.f473e323a42852f79ac16c8258da73cc@haskell.org> #11780: GHC stage-2 build fails with "relocation R_X86_64_PC32 against `exitStaticPtrTable' can not be used when making a shared object" -------------------------------------+------------------------------------- Reporter: zadarnowski | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Linux Architecture: x86_64 | Type of failure: Building GHC (amd64) | failed Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- On very old versions of CentOS (5.x) running GCC 4.1.2, GHC fails to build with the following error: {{{ /usr/bin/ld: rts/dist/build/RtsStartup.dyn_o: relocation R_X86_64_PC32 against `exitStaticPtrTable' can not be used when making a shared object; recompile with -fPIC /usr/bin/ld: final link failed: Bad value }}} This appears to be caused by #pragma GCC visibility push(hidden) in BeginPrivate.h. Removing the HAS_VISIBILITY_HIDDEN macro from mk/config.h results in a successful build. BeginPrivate.h contains a comment which seems to indicate similar problem occurs with GCC 4.2.1 on FreeBSD. I suggest that the #if directive in {Begin,End}Private.h be changed to cover both systems, by enabling visibility pragmas only on GCC versions higher than 4.2 as follows: {{{ #if defined(HAS_VISIBLITY_HIDDEN) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 2) }}} Old versions of CentOS are still prolific in enterprise environments so it would be great for advocacy reasons to get that fix into the next release of GHC. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 1 08:50:51 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 01 Apr 2016 08:50:51 -0000 Subject: [GHC] #11731: Simplifier: Inlining trivial let can lose sharing In-Reply-To: <046.a5918d80f4707137661067c33245f819@haskell.org> References: <046.a5918d80f4707137661067c33245f819@haskell.org> Message-ID: <061.ea327cbb73cafe5070ec1652245c50b9@haskell.org> #11731: Simplifier: Inlining trivial let can lose sharing -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2073 Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): With the late demand analysis, suddenly demand signatures involving free variables turn up in `-ddump-simpl`: {{{ Roman.foo_$s$wgo [Occ=LoopBreaker] :: GHC.Prim.Int# -> GHC.Prim.Int# -> GHC.Prim.Int# -[GblId, Arity=2, Caf=NoCafRefs, Str=] +[GblId, Arity=2, Caf=NoCafRefs, Str=] Roman.foo_$s$wgo = \ (sc :: GHC.Prim.Int#) (sc1 :: GHC.Prim.Int#) -> let { m :: GHC.Prim.Int# - [LclId] + [LclId, Str={s1Yc->}] ... }}} As this contains uniques, this breaks a few test cases. So it seems that previously, this information has been removed somewhere (in the simplifier or so). With DmdAnal running right at the end, this is not happening. So I wondered if `CoreTidy` should remove them, but there it says {{{ -- Note [Tidy IdInfo] -- We need to keep around any interesting strictness and -- demand info because later on we may need to use it when -- converting to A-normal form. -- eg. -- f (g x), where f is strict in its argument, will be converted -- into case (g x) of z -> f z by CorePrep, but only if f still -- has its strictness info. -- -- Similarly for the demand info - on a let binder, this tells -- CorePrep to turn the let into a case. }}} Questions: * At CorePrep time, should there still be a demand environment in the strictness signatures? (Note that the `Binary` instance does _not_ serialize the environment, but discards it). * If not, should I remove the environment in TidyCore? * Where was it removed before? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 1 09:00:18 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 01 Apr 2016 09:00:18 -0000 Subject: [GHC] #11770: Demand analysis: Wrong one-shot annotation due to fixed-point iteration In-Reply-To: <046.967e6cf10d023cf3fe98f3cad192e65a@haskell.org> References: <046.967e6cf10d023cf3fe98f3cad192e65a@haskell.org> Message-ID: <061.440c787627ff40c2257550338ea059b2@haskell.org> #11770: Demand analysis: Wrong one-shot annotation due to fixed-point iteration -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2070 Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): The performance regressions (have not looked at details yet) are very annyoing: My impression was that this change would not make a difference, i.e. the same one-shot annotations would be set, only in a slightly later phase (occurrence analyzer instead of demand analyzer). With the exception, of course, of wrongly set one-shot annotations; this is of course what we want to fix. So if this causes performance regressions, then it must have been the case that GHC was doing something to the code that was not solidly warranted (inlined into a lambda that was not guaranteed to be one-shot) and could have gone wrong, but indeed improved matters (either because the lambda was one-shot after all, or the duplicated work was less than the benefits of inlining). So by fixing a bug, we reduce performance. Reminds me awful lot of trying to make the state hack less aggressive. There is collateral damage. Also, there were some improvements, so in some cases, GHC did make a bold, unwarranted change to the code and it indeed went wrong. So I guess the proper thing to do is to look at all the regressions and decide whether we can improve the compiler in other ways to make this work, before being allowed to push this bug fix. How tedious, especially with performance regressions in the compiler. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 1 09:16:46 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 01 Apr 2016 09:16:46 -0000 Subject: [GHC] #11731: Simplifier: Inlining trivial let can lose sharing In-Reply-To: <046.a5918d80f4707137661067c33245f819@haskell.org> References: <046.a5918d80f4707137661067c33245f819@haskell.org> Message-ID: <061.a6b558365c8a31431f99b7e7d7a50f9c@haskell.org> #11731: Simplifier: Inlining trivial let can lose sharing -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2073 Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Answers via skype talk: * No, should not be there. * Yes * WorkWrap (`tryWW`) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 1 09:44:49 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 01 Apr 2016 09:44:49 -0000 Subject: [GHC] #11770: Demand analysis: Wrong one-shot annotation due to fixed-point iteration In-Reply-To: <046.967e6cf10d023cf3fe98f3cad192e65a@haskell.org> References: <046.967e6cf10d023cf3fe98f3cad192e65a@haskell.org> Message-ID: <061.6ce529e44725ead6c09743ad2b4d00bd@haskell.org> #11770: Demand analysis: Wrong one-shot annotation due to fixed-point iteration -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2070 Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): TODO: Calculate called-once-demend on the wrapper in `splitFun`, and get rid of `oneShot` annotation calculation in `mkWwBodies`. Might fix the performance regressions. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 1 12:12:35 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 01 Apr 2016 12:12:35 -0000 Subject: [GHC] #11529: Show instance of Char should print literals for non-ascii printable charcters In-Reply-To: <045.b2e132b07816c9ef2342eb20bb4deb49@haskell.org> References: <045.b2e132b07816c9ef2342eb20bb4deb49@haskell.org> Message-ID: <060.0c05f324314983f3de01a2ece8166881@haskell.org> #11529: Show instance of Char should print literals for non-ascii printable charcters -------------------------------------+------------------------------------- Reporter: nushio | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by chak): Replying to [comment:16 allbery_b]: > isPrint does not answer the question "can this character be displayed by the current user given their current locale?". That would require it to be in IO, and would limit the ability to use it in other contexts. > > isPrint answers the question "is the Unicode codepoint contained in the given Char considered printable by the version of the Unicode standard to which the runtime conforms?". > > It is not the correct question to ask here. It is, however, what the standard prescribes. IMHO it is also the right thing to do as it leads to less unexpected behaviour than the current implementation. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 1 15:01:47 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 01 Apr 2016 15:01:47 -0000 Subject: [GHC] #11731: Simplifier: Inlining trivial let can lose sharing In-Reply-To: <046.a5918d80f4707137661067c33245f819@haskell.org> References: <046.a5918d80f4707137661067c33245f819@haskell.org> Message-ID: <061.b2c6b36f53a67ddc3a3336af777ba0b3@haskell.org> #11731: Simplifier: Inlining trivial let can lose sharing -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2073 Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Very nice results due to the final demand analyzer: {{{ nofib/allocs/cichelli 80313656 - 22.92% 61907656 bytes nofib/allocs/mandel2 1041544 - 11.40% 922768 bytes nofib/time/cryptarithm1 0.421 - 5.23% 0.399 seconds tests/alloc/T9233 1030551552 + 3.61% 1067738016 bytes tests/alloc/T9675 574886360 + 5.26% 605104208 bytes }}} (I hope they are not too good to be true). The regressions in the two test cases are compiler benchmarks; I think this is the expected cost for another run of the demand analyzer. Left to do for this ticket: Remove the (unused, possibly wrong) `1*` annotations in the Worker/Wrapper-Phase. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 1 15:21:39 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 01 Apr 2016 15:21:39 -0000 Subject: [GHC] #11770: Demand analysis: Wrong one-shot annotation due to fixed-point iteration In-Reply-To: <046.967e6cf10d023cf3fe98f3cad192e65a@haskell.org> References: <046.967e6cf10d023cf3fe98f3cad192e65a@haskell.org> Message-ID: <061.6be7c1946cf83baaf3d8df63dd2d79ab@haskell.org> #11770: Demand analysis: Wrong one-shot annotation due to fixed-point iteration -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2070 Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): I gave it a shot, but the test suite is still unhappy. I?m running out of my time slice for this week (and I?m traveling from tomorrow until Wednesday) but I pushed what I have to `wip/T11770`. If someone wants to review it, or even continue working on it, feel free! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 1 16:05:39 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 01 Apr 2016 16:05:39 -0000 Subject: [GHC] #11731: Simplifier: Inlining trivial let can lose sharing In-Reply-To: <046.a5918d80f4707137661067c33245f819@haskell.org> References: <046.a5918d80f4707137661067c33245f819@haskell.org> Message-ID: <061.0742b54b8bf240af34b0856f20386a91@haskell.org> #11731: Simplifier: Inlining trivial let can lose sharing -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2073 Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Wow, that's quite remarkable. I ''hope'' that the ticky numbers will show why cichelli and mandel2 are improving . Since this is from the "final run" thing, it must presumably be from increasing the number of single entry thunks we find, right? And that should show up in the ticky numbers you gather. It's curious that other compiler benchmarks don't also worsen. Maybe you are right, but I rather doubt that 5% of compile time is the cost of single run of the demand analyser, unless it's a very pathological program with deeply nested letrecs. Again, it'd be good to try this with a ''stage1'' compiler to isolate the effects. But we'd expect this to speed up a stage2 compiler, so the effect would be more pronounced with stage1. In HEAD Ben has added a bit more time-tracking to passes which may help. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 1 16:15:14 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 01 Apr 2016 16:15:14 -0000 Subject: [GHC] #11781: Improve common sub-expression Message-ID: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): Phab:D2074 | Wiki Page: -------------------------------------+------------------------------------- I wrote a patch that refactors and improves the CSE pass. It's in `wip/cse-code-desmelling`, and Phab:D2074 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 1 16:16:19 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 01 Apr 2016 16:16:19 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.6a04be1ea1abc4093959a8a71a3362c1@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): New performance results are in from [https://perf.haskell.org/ghc/#revision/e05b00ef8e05e58e93e0559e4499a830bc51b9f4 GHC speed] {{{ nofib/time/cryptarithm1 0.421 - 4.04% 0.404 seconds tests/alloc/T9020 723162856 + 17.86% 852298336 bytes tests/alloc/T9872b 4754051528 - 3.24% 4600233488 bytes tests/alloc/T9872c 4452756568 - 3.28% 4306667256 bytes Interestingly, `T9020` (long sequence of `return()` commands) was improved by your previous commit. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 1 16:16:44 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 01 Apr 2016 16:16:44 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.0f4ebac1612ec6de686857832c3c02ca@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Well that's remarkable. A 17% change compiler allocation is huge. Oh hang on. Maybe the program being compiled is changing size! Try `-dshow-passes` before and after. Or, to put it another way, does a ''stage1'' compiler show the same difference in allocation? Do you see what I mean? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 1 17:17:41 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 01 Apr 2016 17:17:41 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.cc4e9ee5f72d3c96890f42d5860a1765@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Changes (by nomeata): * cc: nomeata (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 1 21:21:54 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 01 Apr 2016 21:21:54 -0000 Subject: [GHC] #11763: Implement `-f(no-)version-macros` flag for controlling version macro generation In-Reply-To: <042.d49c422577da41f5c4d9261d67e3806a@haskell.org> References: <042.d49c422577da41f5c4d9261d67e3806a@haskell.org> Message-ID: <057.827f21d4da4d0c194eecc4a25254e20a@haskell.org> #11763: Implement `-f(no-)version-macros` flag for controlling version macro generation -------------------------------------+------------------------------------- Reporter: hvr | Owner: ezyang Type: feature request | Status: closed Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 7.11 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #10970 | Differential Rev(s): Phab:D2058 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => closed * resolution: => fixed Comment: Merged to `ghc-8.0` as eb2c0edf950e4c1d8e2ce058eda017e6bd6e398c. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 2 18:22:56 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 02 Apr 2016 18:22:56 -0000 Subject: [GHC] #11782: Teach ghc-pkg to read multiple registrations from command line Message-ID: <045.ebc2c49d6acd2454350338cc0cabaa8a@haskell.org> #11782: Teach ghc-pkg to read multiple registrations from command line -------------------------------------+------------------------------------- Reporter: ezyang | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: ghc-pkg | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- ghc-pkg register and ghc-pkg update should take files/stdin streams which consist of multiple packages separated by `----`. ghc-pkg will operate atomically: either all of the registrations succeed or none are performed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 2 19:08:02 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 02 Apr 2016 19:08:02 -0000 Subject: [GHC] #11782: Teach ghc-pkg to read multiple registrations from command line In-Reply-To: <045.ebc2c49d6acd2454350338cc0cabaa8a@haskell.org> References: <045.ebc2c49d6acd2454350338cc0cabaa8a@haskell.org> Message-ID: <060.953e5e057d91970662ee456d02f9a54d@haskell.org> #11782: Teach ghc-pkg to read multiple registrations from command line -------------------------------------+------------------------------------- Reporter: ezyang | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: ghc-pkg | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by ezyang: @@ -2,1 +2,1 @@ - consist of multiple packages separated by `----`. ghc-pkg will operate + consist of multiple packages separated by `---`. ghc-pkg will operate New description: ghc-pkg register and ghc-pkg update should take files/stdin streams which consist of multiple packages separated by `---`. ghc-pkg will operate atomically: either all of the registrations succeed or none are performed. -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 2 20:18:01 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 02 Apr 2016 20:18:01 -0000 Subject: [GHC] #11783: Very large slowdown when using parallel garbage collector Message-ID: <048.dfe418c8e00a9964b98ea3634140ac6c@haskell.org> #11783: Very large slowdown when using parallel garbage collector -------------------------------------+------------------------------------- Reporter: luispedro | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime | Version: 7.10.3 System | Keywords: performance, | Operating System: Unknown/Multiple garbage collector | Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- As part of debugging some performance issues on an application I am writing, I concluded that the issue is in the parallel GC implemented in the GHC RTS. I extracted the code attached to make a self-contained use- case, but in my system the code runs in 16s when using a single thread, in 18s when using 6 threads but no parallel GC and in over a minute when using 6 threads with parallel GC! The true slowdown in the full code is actually worse and relevant for the application (some steps take >1 hour instead of <1 minute!). Parts of the code do take full advantage of parallel processing, this is just one simple test case -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 2 20:18:43 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 02 Apr 2016 20:18:43 -0000 Subject: [GHC] #11783: Very large slowdown when using parallel garbage collector In-Reply-To: <048.dfe418c8e00a9964b98ea3634140ac6c@haskell.org> References: <048.dfe418c8e00a9964b98ea3634140ac6c@haskell.org> Message-ID: <063.d24524eac50ee8eb6f7eaf8134b0eef2@haskell.org> #11783: Very large slowdown when using parallel garbage collector -------------------------------------+------------------------------------- Reporter: luispedro | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 7.10.3 Resolution: | Keywords: performance, | garbage collector Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by luispedro): * Attachment "TestGC.hs" added. Source code for a simple test case -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 2 20:19:17 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 02 Apr 2016 20:19:17 -0000 Subject: [GHC] #11783: Very large slowdown when using parallel garbage collector In-Reply-To: <048.dfe418c8e00a9964b98ea3634140ac6c@haskell.org> References: <048.dfe418c8e00a9964b98ea3634140ac6c@haskell.org> Message-ID: <063.04f8c35f13a1bc35bd127c15c1a06890@haskell.org> #11783: Very large slowdown when using parallel garbage collector -------------------------------------+------------------------------------- Reporter: luispedro | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 7.10.3 Resolution: | Keywords: performance, | garbage collector Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by luispedro): * Attachment "RunTimeGC.sh" added. Bash script to generate test data and run the code -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 2 20:46:20 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 02 Apr 2016 20:46:20 -0000 Subject: [GHC] #11783: Very large slowdown when using parallel garbage collector In-Reply-To: <048.dfe418c8e00a9964b98ea3634140ac6c@haskell.org> References: <048.dfe418c8e00a9964b98ea3634140ac6c@haskell.org> Message-ID: <063.e7ce2a5edfe850de77117c7482d3a627@haskell.org> #11783: Very large slowdown when using parallel garbage collector -------------------------------------+------------------------------------- Reporter: luispedro | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 7.10.3 Resolution: | Keywords: performance, | garbage collector Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by luispedro: @@ -11,1 +11,15 @@ - simple test case + simple test case. + + On some machines it seems worse than others and it seems that the input + file (data.txt) needs to be quite large for the problem to really show up + (the attached script generates a 16 million input file, this is still + smaller than some of my real use cases, but I couldn't trigger it with + only 1 million). Similarly, with 4 threads, the slowdown is detectable, + but not as large. + + While running, CPU usage is very high (I tested with 16 threads and it + uses 16 CPUs continuously, top reports 1600% CPU). + + Using '+RTS -A64m' is another way around the issue, but for the full + application it is still not as effective as '+RTS -qg', so there still + seems to be a performance issue here. New description: As part of debugging some performance issues on an application I am writing, I concluded that the issue is in the parallel GC implemented in the GHC RTS. I extracted the code attached to make a self-contained use- case, but in my system the code runs in 16s when using a single thread, in 18s when using 6 threads but no parallel GC and in over a minute when using 6 threads with parallel GC! The true slowdown in the full code is actually worse and relevant for the application (some steps take >1 hour instead of <1 minute!). Parts of the code do take full advantage of parallel processing, this is just one simple test case. On some machines it seems worse than others and it seems that the input file (data.txt) needs to be quite large for the problem to really show up (the attached script generates a 16 million input file, this is still smaller than some of my real use cases, but I couldn't trigger it with only 1 million). Similarly, with 4 threads, the slowdown is detectable, but not as large. While running, CPU usage is very high (I tested with 16 threads and it uses 16 CPUs continuously, top reports 1600% CPU). Using '+RTS -A64m' is another way around the issue, but for the full application it is still not as effective as '+RTS -qg', so there still seems to be a performance issue here. -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 2 21:38:52 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 02 Apr 2016 21:38:52 -0000 Subject: [GHC] #11213: Incorrect reported pattern synonym signature In-Reply-To: <049.0060591a08c7b469b18d12224f42f93b@haskell.org> References: <049.0060591a08c7b469b18d12224f42f93b@haskell.org> Message-ID: <064.1760f7410c43b99847dd3389bab963d8@haskell.org> #11213: Incorrect reported pattern synonym signature -------------------------------------+------------------------------------- Reporter: mpickering | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 7.10.3 checker) | Keywords: Resolution: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1896 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Matthew Pickering ): In [changeset:"72bd7f7be7809076f321a6fca90024e3e1bde3cc/ghc" 72bd7f7b/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="72bd7f7be7809076f321a6fca90024e3e1bde3cc" Improve printing of pattern synonym types Add the function `pprPatSynType :: PatSyn -> SDoc` for printing pattern synonym types, and remove the ambiguous `patSynType` function. Also, the types in a `PatSyn` are now tidy. Haddock submodule updated to reflect the removal of `patSynType` by mpickering. Fixes: #11213. Reviewers: goldfire, simonpj, austin, mpickering, bgamari Reviewed By: simonpj, mpickering Subscribers: bollmann, simonpj, thomie Differential Revision: https://phabricator.haskell.org/D1896 GHC Trac Issues: #11213 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 2 22:12:17 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 02 Apr 2016 22:12:17 -0000 Subject: [GHC] #11782: Teach ghc-pkg to read multiple registrations from command line In-Reply-To: <045.ebc2c49d6acd2454350338cc0cabaa8a@haskell.org> References: <045.ebc2c49d6acd2454350338cc0cabaa8a@haskell.org> Message-ID: <060.590807c0c68dd6e71bc876b1a209952c@haskell.org> #11782: Teach ghc-pkg to read multiple registrations from command line -------------------------------------+------------------------------------- Reporter: ezyang | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: ghc-pkg | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by hvr): IOW, `ghc-pkg register` will be able to read the output of `ghc-pkg dump`? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 2 22:47:41 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 02 Apr 2016 22:47:41 -0000 Subject: [GHC] #11782: Teach ghc-pkg to read multiple registrations from command line In-Reply-To: <045.ebc2c49d6acd2454350338cc0cabaa8a@haskell.org> References: <045.ebc2c49d6acd2454350338cc0cabaa8a@haskell.org> Message-ID: <060.debc7d4e2b4365f0691c9dd714231329@haskell.org> #11782: Teach ghc-pkg to read multiple registrations from command line -------------------------------------+------------------------------------- Reporter: ezyang | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: ghc-pkg | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2080 Wiki Page: | -------------------------------------+------------------------------------- Changes (by ezyang): * status: new => patch * differential: => Phab:D2080 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 2 22:52:59 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 02 Apr 2016 22:52:59 -0000 Subject: [GHC] #11782: Teach ghc-pkg to read multiple registrations from command line In-Reply-To: <045.ebc2c49d6acd2454350338cc0cabaa8a@haskell.org> References: <045.ebc2c49d6acd2454350338cc0cabaa8a@haskell.org> Message-ID: <060.c8e2e681ce5c7a053627986cf3319d72@haskell.org> #11782: Teach ghc-pkg to read multiple registrations from command line -------------------------------------+------------------------------------- Reporter: ezyang | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: ghc-pkg | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2080 Wiki Page: | -------------------------------------+------------------------------------- Comment (by ezyang): Yeah, that's the intent. Although, your comment made me realize there is a bug in the current implementation. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 3 10:14:53 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 03 Apr 2016 10:14:53 -0000 Subject: [GHC] #9630: compile-time performance regression (probably due to Generics) In-Reply-To: <042.a529e5f70870528e7f8796a28ce82a84@haskell.org> References: <042.a529e5f70870528e7f8796a28ce82a84@haskell.org> Message-ID: <057.ffa8fef2394ae62dd6778c20f9491843@haskell.org> #9630: compile-time performance regression (probably due to Generics) -------------------------------------+------------------------------------- Reporter: hvr | Owner: Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 7.9 Resolution: | Keywords: deriving- | perf, Generics Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: #9583, #10293 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by michalt): * cc: michalt (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 3 11:24:21 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 03 Apr 2016 11:24:21 -0000 Subject: [GHC] #11773: linux/powepc : ghc-stage1 segfaults when building unregisterised In-Reply-To: <044.a4a61ba55383f88cbd05cc1baa6706bc@haskell.org> References: <044.a4a61ba55383f88cbd05cc1baa6706bc@haskell.org> Message-ID: <059.e1e7247a99680a8d55c82b64ae1c13ea@haskell.org> #11773: linux/powepc : ghc-stage1 segfaults when building unregisterised ----------------------------------------+------------------------------- Reporter: erikd | Owner: erikd Type: bug | Status: new Priority: normal | Milestone: 8.2.1 Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: Building GHC failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | ----------------------------------------+------------------------------- Comment (by erikd): GHC 7.10 builds ungreisterised just fine. I then managed to track down the commit that introduced this, 4905b83a2d. Need to go over that with a fine toothed comb. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 3 13:57:07 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 03 Apr 2016 13:57:07 -0000 Subject: [GHC] #11751: Parse error with case in where In-Reply-To: <046.54234b52b76451ad86fb8ff46ac451f1@haskell.org> References: <046.54234b52b76451ad86fb8ff46ac451f1@haskell.org> Message-ID: <061.673ab87d04b01b1fcfcb51239f907320@haskell.org> #11751: Parse error with case in where -------------------------------------+------------------------------------- Reporter: samuela | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 (Parser) | Resolution: | Keywords: Operating System: MacOS X | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by samuela): Ah, I understand now. Sorry for the confusion! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 3 13:59:04 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 03 Apr 2016 13:59:04 -0000 Subject: [GHC] #11751: Parse error with case in where In-Reply-To: <046.54234b52b76451ad86fb8ff46ac451f1@haskell.org> References: <046.54234b52b76451ad86fb8ff46ac451f1@haskell.org> Message-ID: <061.998c7c80712edd993e5be3113353989f@haskell.org> #11751: Parse error with case in where -------------------------------------+------------------------------------- Reporter: samuela | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 (Parser) | Resolution: invalid | Keywords: Operating System: MacOS X | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by samuela): * status: new => closed * resolution: => invalid -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 3 23:45:09 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 03 Apr 2016 23:45:09 -0000 Subject: [GHC] #11484: Type synonym using -XTypeInType can't be spliced with TH In-Reply-To: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> References: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> Message-ID: <065.791242e39f0efcba3172678190b6d1a7@haskell.org> #11484: Type synonym using -XTypeInType can't be spliced with TH -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1-rc1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by RyanGlScott): (1) is fixed now. `Any` no longer appears in the error message, which is good, but now it fails with a different error message: {{{ $ /opt/ghc/8.0.1/bin/ghci GHCi, version 8.0.0.20160330: http://www.haskell.org/ghc/ :? for help Loaded GHCi configuration from /home/ryanglscott/.ghci ?> :set -XTemplateHaskell -XTypeInType -ddump-splices ?> import Data.Kind ?> data X; $([d| type TySyn2 (k :: *) (a :: k) = () |]) :3:11-51: Splicing declarations [d| type TySyn2_a1aV (k_a1aW :: *) (a_a1aX :: k_a1aW) = () |] ======> type TySyn2_a5hC (k_a5hD :: Type) (a_a5hE :: k_a5hD) = () :3:11: error: ? Invalid declaration for ?TySyn2?; you must explicitly declare which variables are dependent on which others. Inferred variable kinds: k_a5hD :: Type a_a5hE :: k ? In the type synonym declaration for ?TySyn2? }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 01:08:25 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 01:08:25 -0000 Subject: [GHC] #11463: Template Haskell applies too many arguments to kind synonym In-Reply-To: <050.c7d753a5f21fb330e97bd8d6b7fe7cde@haskell.org> References: <050.c7d753a5f21fb330e97bd8d6b7fe7cde@haskell.org> Message-ID: <065.291a66630297ff1d3cdf2620a83c6a8d@haskell.org> #11463: Template Haskell applies too many arguments to kind synonym -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1-rc1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2081 Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * status: new => patch * differential: => Phab:D2081 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 02:31:53 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 02:31:53 -0000 Subject: [GHC] #11784: panic "hscCmmFile: no_mod" with `-v2 and above Message-ID: <044.29a67b6904270a19ef7b34462d19062e@haskell.org> #11784: panic "hscCmmFile: no_mod" with `-v2 and above -------------------------------------+------------------------------------- Reporter: erikd | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.2.1 Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: Compile-time Unknown/Multiple | crash Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Initailly found this on powerpc when debugging #11773, but it also happens on x86_64. The command line: {{{ inplace/bin/ghc-stage1 -static -H64m -O0 -Wall -v2 -Iincludes \ -Iincludes/dist -Iincludes/dist-derivedconstants/header \ -Iincludes/dist-ghcconstants/header -Irts -Irts/dist/build \ -DCOMPILING_RTS -this-unit-id rts -optc-DNOSMP -dcmm-lint -i -irts \ -irts/dist/build -irts/dist/build/autogen -Irts/dist/build \ -Irts/dist/build/autogen -O2 -Wnoncanonical-monad-instances -c\ rts/StgStartup.cmm -o rts/dist/build/StgStartup.o }}} panics with a message: {{{ ghc-stage1: panic! (the 'impossible' happened) (GHC version 8.1.20160402 for powerpc-unknown-linux): hscCmmFile: no_mod }}} The only thing that was added to the command line that is different from the normal build command is the `-v2`. This is caused by the code (in compiler/main/HscMain.hs): {{{ no_mod = panic "hscCmmFile: no_mod" }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 02:38:30 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 02:38:30 -0000 Subject: [GHC] #11773: linux/powepc : ghc-stage1 segfaults when building unregisterised In-Reply-To: <044.a4a61ba55383f88cbd05cc1baa6706bc@haskell.org> References: <044.a4a61ba55383f88cbd05cc1baa6706bc@haskell.org> Message-ID: <059.a735897d2e776cd7f1456570b60633cb@haskell.org> #11773: linux/powepc : ghc-stage1 segfaults when building unregisterised ----------------------------------------+------------------------------- Reporter: erikd | Owner: erikd Type: bug | Status: new Priority: normal | Milestone: 8.2.1 Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: powerpc Type of failure: Building GHC failed | Test Case: Blocked By: | Blocking: Related Tickets: #11784 | Differential Rev(s): Wiki Page: | ----------------------------------------+------------------------------- Changes (by erikd): * related: => #11784 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 07:31:51 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 07:31:51 -0000 Subject: [GHC] #11785: Kinds should be treated like types in TcSplice Message-ID: <047.bfff5ba2980e2ce458e592d1077c3dd1@haskell.org> #11785: Kinds should be treated like types in TcSplice -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: task | Status: new Priority: normal | Milestone: Component: Template | Version: 8.1 Haskell | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- !TcSplice handles kinds differently than types. Now that they are the same, it's probably best to rewrite this code. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 07:32:29 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 07:32:29 -0000 Subject: [GHC] #11463: Template Haskell applies too many arguments to kind synonym In-Reply-To: <050.c7d753a5f21fb330e97bd8d6b7fe7cde@haskell.org> References: <050.c7d753a5f21fb330e97bd8d6b7fe7cde@haskell.org> Message-ID: <065.dcf6242fa26ae0fea2672d4435656863@haskell.org> #11463: Template Haskell applies too many arguments to kind synonym -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1-rc1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2081 Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): Hooray! Thanks! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 08:50:09 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 08:50:09 -0000 Subject: [GHC] #11786: Need -fno-print-explicit-runtime-reps to work on IfaceType, else RuntimeRep leaks Message-ID: <046.943657e3f9ed3d83fd8aca1ffc9a9fa0@haskell.org> #11786: Need -fno-print-explicit-runtime-reps to work on IfaceType, else RuntimeRep leaks -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- After #11549, we are suppose not to show `RuntimeRep` to users, when `-fno-print-explicit-runtime-reps` is on. But we do: {{{ :info ($) Prelude> :i ($) ($) :: forall (r :: GHC.Types.RuntimeRep) a (b :: TYPE r). (a -> b) -> a -> b -- Defined in ?GHC.Base? }}} This happens because the runtime-rep-suppression happens on `Type`, but for `:info` we use `pprInfo` which uses `tyThingToIfaceDecl` and then prints it. And `tyThingToIfaceDecl` doesn't know about the `-fprint- explicit-runtime-reps` flag; and I'd like to keep it that way. We want to change `pprType` to convert to `IfaceType` and then print anyway. I suppose that this means that the pretty-printer for `IfaceType` needs to know about this runtime-rep suppression. That's a bit tiresome, but not impossible, especially since there is no shadowing to worry about. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 08:53:44 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 08:53:44 -0000 Subject: [GHC] #11786: Need -fno-print-explicit-runtime-reps to work on IfaceType, else RuntimeRep leaks In-Reply-To: <046.943657e3f9ed3d83fd8aca1ffc9a9fa0@haskell.org> References: <046.943657e3f9ed3d83fd8aca1ffc9a9fa0@haskell.org> Message-ID: <061.e6bf36254e7ab63391e7af182b217f57@haskell.org> #11786: Need -fno-print-explicit-runtime-reps to work on IfaceType, else RuntimeRep leaks -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Indeed, since * we want `:type` do do deep-instantiation (#11376), and * I think we don't generalise over `RuntimeRep` variables, the ''only'' time `-fno-print-explicit-runtime-reps` now has an effect (except perhaps in debug output) is in `:info`; and that is precisely when it doesn't work! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 08:57:12 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 08:57:12 -0000 Subject: [GHC] #10970: Built in MIN_VERSION macro support In-Reply-To: <045.d023da2e9c148d41ec284eb11be9b9b1@haskell.org> References: <045.d023da2e9c148d41ec284eb11be9b9b1@haskell.org> Message-ID: <060.b78db13cf59ac1bdc00b4b994d1be28e@haskell.org> #10970: Built in MIN_VERSION macro support -------------------------------------+------------------------------------- Reporter: ezyang | Owner: Type: feature request | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 7.11 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1349, Wiki Page: | Phab:D1869 -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => closed * resolution: => fixed Comment: Merged as b6be8a106c6c6fb477832220b606f19a5943f083. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 08:58:48 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 08:58:48 -0000 Subject: [GHC] #11231: GHC's configure script does not honour CC env var In-Reply-To: <042.d7426d5dc7b5e5db91b935fc98bce267@haskell.org> References: <042.d7426d5dc7b5e5db91b935fc98bce267@haskell.org> Message-ID: <057.871ae1f675ec49c670578366bea603a3@haskell.org> #11231: GHC's configure script does not honour CC env var -------------------------------------+------------------------------------- Reporter: hvr | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Build System | Version: 7.10.3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #9983 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: Merged as 56eaed1d6c98febf2b3c2f80c0b1e08e13cb8c9f. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 09:02:03 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 09:02:03 -0000 Subject: [GHC] #11549: Add -fshow-runtime-rep In-Reply-To: <047.266b1817848e78f8afbd8fee6528ff72@haskell.org> References: <047.266b1817848e78f8afbd8fee6528ff72@haskell.org> Message-ID: <062.37dc76da38a29a13c0729f7e141ada08@haskell.org> #11549: Add -fshow-runtime-rep -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 8.0.1-rc2 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1961 Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Another problem: #11786 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 09:04:23 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 09:04:23 -0000 Subject: [GHC] #11787: Infer HasCallStack where possible Message-ID: <046.5318fdb9ba2ad3000bcf4a93628510e1@haskell.org> #11787: Infer HasCallStack where possible -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Consider {{{ Prelude> :t error error :: GHC.Stack.Types.HasCallStack => [Char] -> a Prelude> :t (\x -> error x) (\x -> error x) :: (?callStack::GHC.Stack.Types.CallStack) => [Char] -> a }}} We would prefer to get the same type for the latter as the former. Moreover, when we execute on #11376 (comment 25), `:t error` will show the more complicated type too. My suggestion: during generalisation, when we see `?callStack::CallStack`, use the built-in type synonym `HasCallStack`. Note that this should only happen if the name used for the implicit parameter is actually `?callstack`. Eric would you like to consider this? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 09:05:35 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 09:05:35 -0000 Subject: [GHC] #11787: Infer HasCallStack where possible In-Reply-To: <046.5318fdb9ba2ad3000bcf4a93628510e1@haskell.org> References: <046.5318fdb9ba2ad3000bcf4a93628510e1@haskell.org> Message-ID: <061.12f91e55362c557cf7c06ab6a04137ff@haskell.org> #11787: Infer HasCallStack where possible -------------------------------------+------------------------------------- Reporter: simonpj | Owner: gridaphobe Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * owner: => gridaphobe -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 09:06:59 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 09:06:59 -0000 Subject: [GHC] #11787: Infer HasCallStack where possible In-Reply-To: <046.5318fdb9ba2ad3000bcf4a93628510e1@haskell.org> References: <046.5318fdb9ba2ad3000bcf4a93628510e1@haskell.org> Message-ID: <061.11d1189d3c5e9f5e2824d37afd27bf50@haskell.org> #11787: Infer HasCallStack where possible -------------------------------------+------------------------------------- Reporter: simonpj | Owner: gridaphobe Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Test T11549 demonstrates this. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 09:08:21 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 09:08:21 -0000 Subject: [GHC] #11786: Need -fno-print-explicit-runtime-reps to work on IfaceType, else RuntimeRep leaks In-Reply-To: <046.943657e3f9ed3d83fd8aca1ffc9a9fa0@haskell.org> References: <046.943657e3f9ed3d83fd8aca1ffc9a9fa0@haskell.org> Message-ID: <061.0d0d42c03135d18c36868c17e13059d4@haskell.org> #11786: Need -fno-print-explicit-runtime-reps to work on IfaceType, else RuntimeRep leaks -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Test T11549 demonstrates this -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 09:22:33 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 09:22:33 -0000 Subject: [GHC] #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications In-Reply-To: <050.1e1b033722e186882d08840a201168c5@haskell.org> References: <050.1e1b033722e186882d08840a201168c5@haskell.org> Message-ID: <065.7ff239d1a0d4402b1f274846b12bd48c@haskell.org> #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Simon Peyton Jones ): In [changeset:"f2a2b79fa8d1c702b17e195a70734b06625e0153/ghc" f2a2b79f/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="f2a2b79fa8d1c702b17e195a70734b06625e0153" Deeply instantiate in :type See Trac #11376 and Note [Deeply instantiate in :type] in TcRnDriver Sadly this showed up one new problem (Trac #11786) and one opportunity (Trac #11787), so test T11549 is now marked expect-broken on these two. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 09:22:33 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 09:22:33 -0000 Subject: [GHC] #11786: Need -fno-print-explicit-runtime-reps to work on IfaceType, else RuntimeRep leaks In-Reply-To: <046.943657e3f9ed3d83fd8aca1ffc9a9fa0@haskell.org> References: <046.943657e3f9ed3d83fd8aca1ffc9a9fa0@haskell.org> Message-ID: <061.23f8fe1782bc25daf539e331295203c2@haskell.org> #11786: Need -fno-print-explicit-runtime-reps to work on IfaceType, else RuntimeRep leaks -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Simon Peyton Jones ): In [changeset:"f2a2b79fa8d1c702b17e195a70734b06625e0153/ghc" f2a2b79f/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="f2a2b79fa8d1c702b17e195a70734b06625e0153" Deeply instantiate in :type See Trac #11376 and Note [Deeply instantiate in :type] in TcRnDriver Sadly this showed up one new problem (Trac #11786) and one opportunity (Trac #11787), so test T11549 is now marked expect-broken on these two. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 09:22:33 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 09:22:33 -0000 Subject: [GHC] #11787: Infer HasCallStack where possible In-Reply-To: <046.5318fdb9ba2ad3000bcf4a93628510e1@haskell.org> References: <046.5318fdb9ba2ad3000bcf4a93628510e1@haskell.org> Message-ID: <061.d1d7ba82920d623fd4cc5338d6b1dac5@haskell.org> #11787: Infer HasCallStack where possible -------------------------------------+------------------------------------- Reporter: simonpj | Owner: gridaphobe Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Simon Peyton Jones ): In [changeset:"f2a2b79fa8d1c702b17e195a70734b06625e0153/ghc" f2a2b79f/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="f2a2b79fa8d1c702b17e195a70734b06625e0153" Deeply instantiate in :type See Trac #11376 and Note [Deeply instantiate in :type] in TcRnDriver Sadly this showed up one new problem (Trac #11786) and one opportunity (Trac #11787), so test T11549 is now marked expect-broken on these two. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 09:30:17 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 09:30:17 -0000 Subject: [GHC] #10296: Segfaults when using dynamic wrappers and concurrency In-Reply-To: <046.5415c655699223aa287cb69e9ee1b595@haskell.org> References: <046.5415c655699223aa287cb69e9ee1b595@haskell.org> Message-ID: <061.2a63aa976470e17970c0680f88861021@haskell.org> #10296: Segfaults when using dynamic wrappers and concurrency -------------------------------------+------------------------------------- Reporter: bitonic | Owner: jme Type: bug | Status: patch Priority: highest | Milestone: 8.0.1 Component: Runtime System | Version: 7.11 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2031 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"90d7d6086ed6f271a352e784c3bc1d5ecac6052c/ghc" 90d7d608/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="90d7d6086ed6f271a352e784c3bc1d5ecac6052c" rts: Make StablePtr derefs thread-safe (#10296) Stable pointers can now be safely dereferenced while the stable pointer table is simultaneously being enlarged. Test Plan: ./validate Reviewers: ezyang, austin, bgamari, simonmar Subscribers: carter, thomie Differential Revision: https://phabricator.haskell.org/D2031 GHC Trac Issues: #10296 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 09:41:50 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 09:41:50 -0000 Subject: [GHC] #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications In-Reply-To: <050.1e1b033722e186882d08840a201168c5@haskell.org> References: <050.1e1b033722e186882d08840a201168c5@haskell.org> Message-ID: <065.474edc04b039a7065a96bcbd480d619e@haskell.org> #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Simon Peyton Jones ): In [changeset:"b3ecd047c432405b57b429fdeaad43f5dcd1ee24/ghc" b3ecd047/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="b3ecd047c432405b57b429fdeaad43f5dcd1ee24" Elaborate test for #11376 This just adds the Prox stuff from the Description in Trac #11376 to the test case, The class stuff seems weird becuase the type is ambiguous }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 09:48:56 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 09:48:56 -0000 Subject: [GHC] #11072: Runtime linker doesn't search for DLLs referenced in import libraries on Windows In-Reply-To: <050.675e99e0c3128be1426b83f1c6310ea3@haskell.org> References: <050.675e99e0c3128be1426b83f1c6310ea3@haskell.org> Message-ID: <065.0155bc281fbdf0b000bf7bbfe52daeff@haskell.org> #11072: Runtime linker doesn't search for DLLs referenced in import libraries on Windows -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Phyx- Type: feature request | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 7.10.2-rc2 (Linking) | Resolution: | Keywords: Operating System: Windows | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: T11072gcc | T11072msvc Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1564 Wiki Page: | Phab:D1696 -------------------------------------+------------------------------------- Changes (by Phyx-): * owner: => Phyx- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 09:49:06 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 09:49:06 -0000 Subject: [GHC] #11072: Runtime linker doesn't search for DLLs referenced in import libraries on Windows In-Reply-To: <050.675e99e0c3128be1426b83f1c6310ea3@haskell.org> References: <050.675e99e0c3128be1426b83f1c6310ea3@haskell.org> Message-ID: <065.cbd47a102e78ee14bfb8f4b1d4fbb580@haskell.org> #11072: Runtime linker doesn't search for DLLs referenced in import libraries on Windows -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Phyx- Type: feature request | Status: patch Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 7.10.2-rc2 (Linking) | Resolution: | Keywords: Operating System: Windows | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: T11072gcc | T11072msvc Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1564 Wiki Page: | Phab:D1696 -------------------------------------+------------------------------------- Changes (by Phyx-): * status: new => patch -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 09:51:24 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 09:51:24 -0000 Subject: [GHC] #11072: Runtime linker doesn't search for DLLs referenced in import libraries on Windows In-Reply-To: <050.675e99e0c3128be1426b83f1c6310ea3@haskell.org> References: <050.675e99e0c3128be1426b83f1c6310ea3@haskell.org> Message-ID: <065.e7204bf37f759b0331cc3939e2519dab@haskell.org> #11072: Runtime linker doesn't search for DLLs referenced in import libraries on Windows -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Phyx- Type: feature request | Status: patch Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 7.10.2-rc2 (Linking) | Resolution: | Keywords: Operating System: Windows | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: T11072gcc | T11072msvc Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1564 Wiki Page: | Phab:D1696 -------------------------------------+------------------------------------- Comment (by Phyx-): Turns out the GCC import libraries contain mostly ASCII text and very little program code. What it does contain is invalid. So I reverted to an approach similar to what @Matt had except at the `Linker.c` level. Also while theoretically possible I haven't seen an import library pointing to more than one DLL at a time. So I removed the code to handle that to simplify things. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 09:54:42 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 09:54:42 -0000 Subject: [GHC] #10296: Segfaults when using dynamic wrappers and concurrency In-Reply-To: <046.5415c655699223aa287cb69e9ee1b595@haskell.org> References: <046.5415c655699223aa287cb69e9ee1b595@haskell.org> Message-ID: <061.c42c3bec895ff828280edb5e54c44007@haskell.org> #10296: Segfaults when using dynamic wrappers and concurrency -------------------------------------+------------------------------------- Reporter: bitonic | Owner: jme Type: bug | Status: merge Priority: highest | Milestone: 8.0.1 Component: Runtime System | Version: 7.11 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2031 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => merge -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 10:03:49 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 10:03:49 -0000 Subject: [GHC] #10752: Print which warning-flag controls/enabled an emitted warning In-Reply-To: <042.f644641d9b90b7c893a460f85d1840e2@haskell.org> References: <042.f644641d9b90b7c893a460f85d1840e2@haskell.org> Message-ID: <057.94f3c886b50d1660bd6fda3751094965@haskell.org> #10752: Print which warning-flag controls/enabled an emitted warning -------------------------------------+------------------------------------- Reporter: hvr | Owner: barrucadu Type: feature request | Status: merge Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1943 Wiki Page: Design/Warnings | -------------------------------------+------------------------------------- Changes (by bgamari): * status: closed => merge Comment: This introduced a small bug which is fixed by Phab:D2077. This will need merging. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 11:06:59 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 11:06:59 -0000 Subject: [GHC] #11573: Inferred CallStacks expose implicit parameter In-Reply-To: <046.50bedf0c81dd2bc801447c1bb4cd0177@haskell.org> References: <046.50bedf0c81dd2bc801447c1bb4cd0177@haskell.org> Message-ID: <061.10e4ebfef382d1c28588162148b0ed69@haskell.org> #11573: Inferred CallStacks expose implicit parameter -------------------------------------+------------------------------------- Reporter: bgamari | Owner: gridaphobe Type: bug | Status: patch Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.0.1-rc2 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11383 | Differential Rev(s): Phab:D1911, Wiki Page: | Phab:D1912 -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"7407a66d5bd29aa011f5a4228c6e2b2f7f8ad3f8/ghc" 7407a66/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="7407a66d5bd29aa011f5a4228c6e2b2f7f8ad3f8" Don't infer CallStacks We originally wanted CallStacks to be opt-in, but dealing with let binders complicated things, forcing us to infer CallStacks. It turns out that the inference is actually unnecessary though, we can let the wanted CallStacks bubble up to the outer context by refusing to quantify over them. Eventually they'll be solved from a given CallStack or defaulted to the empty CallStack if they reach the top. So this patch prevents GHC from quantifying over CallStacks, getting us back to the original plan. There's a small ugliness to do with PartialTypeSignatures, if the partial theta contains a CallStack constraint, we *do* want to quantify over the CallStack; the user asked us to! Note that this means that foo :: _ => CallStack foo = getCallStack callStack will be an *empty* CallStack, since we won't infer a CallStack for the hole in the theta. I think this is the right move though, since we want CallStacks to be opt-in. One can always write foo :: (HasCallStack, _) => CallStack foo = getCallStack callStack to get the CallStack and still have GHC infer the rest of the theta. Test Plan: ./validate Reviewers: goldfire, simonpj, austin, hvr, bgamari Reviewed By: simonpj, bgamari Subscribers: bitemyapp, thomie Projects: #ghc Differential Revision: https://phabricator.haskell.org/D1912 GHC Trac Issues: #11573 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 11:26:17 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 11:26:17 -0000 Subject: [GHC] #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol In-Reply-To: <044.47110be31f0548a4f623e31c109dd321@haskell.org> References: <044.47110be31f0548a4f623e31c109dd321@haskell.org> Message-ID: <059.023527a56f5f16a42c9da28eb213ec58@haskell.org> #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol -------------------------------------+------------------------------------- Reporter: jeiea | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 (Linking) | Resolution: | Keywords: Operating System: Windows | Architecture: x86_64 Type of failure: Compile-time | (amd64) crash | Test Case: Blocked By: | Blocking: Related Tickets: #11223 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Phyx-): * related: => #11223 Comment: The dependency list for the example is quite large, including lots of packages that haven't been updated for 8.0 yet. As such it's quite difficult to reproduce and check on HEAD. For now, I'll assume that this is a duplicate of #11223 since that should fix a lot of these duplicate symbols errors. Can you perhaps trim the amount of packages needed in the example? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 11:26:53 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 11:26:53 -0000 Subject: [GHC] #11223: Runtime linker performs eager loading of all object files In-Reply-To: <044.1eba10cc2ab875f8ad0571288cc4efc5@haskell.org> References: <044.1eba10cc2ab875f8ad0571288cc4efc5@haskell.org> Message-ID: <059.044b24a0538b129d20e20862fe9905e8@haskell.org> #11223: Runtime linker performs eager loading of all object files -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Phyx- Type: task | Status: patch Priority: normal | Milestone: 8.2.1 Component: Runtime System | Version: 7.10.3 (Linker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: #10726 #11317 | Differential Rev(s): Phab:D1805 #11748 | Wiki Page: | -------------------------------------+------------------------------------- Changes (by Phyx-): * related: #10726 #11317 => #10726 #11317 #11748 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 11:40:27 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 11:40:27 -0000 Subject: [GHC] #3711: Bad error reporting when calling a function in a module which depends on a DLL on Windows In-Reply-To: <044.70cf7493cde2b6d5c034e6655b6cb8a7@haskell.org> References: <044.70cf7493cde2b6d5c034e6655b6cb8a7@haskell.org> Message-ID: <059.083446d10b81a28b56c70f91209d0cf3@haskell.org> #3711: Bad error reporting when calling a function in a module which depends on a DLL on Windows -------------------------------------+------------------------------------- Reporter: fasta | Owner: Type: bug | Status: new Priority: lowest | Milestone: Component: Runtime System | Version: 6.10.4 Resolution: | Keywords: Operating System: Windows | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Phyx-): * cc: simonmar (added) Comment: At the very least we do call `GetLastError()` now. {{{ sysErrorBelch("addDLL: %" PATH_FMT " (Win32 error %lu)", dll_name, GetLastError()); }}} Also I don't think we can get more information aside from filling in the format specifiers in the error we get back from Windows. Aside from that, such errors are quite easy to debug from the outside. Just enable [https://msdn.microsoft.com/en- us/library/windows/hardware/ff556886(v=vs.85).aspx loader snaps] and attach a debugger (e.g. gdb or windbg) and you'll see why the load failed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 13:00:15 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 13:00:15 -0000 Subject: [GHC] #10840: Periodic alarm signals can cause a retry loop to get stuck In-Reply-To: <049.c792fb7fbab25e12997f6231b1f3472d@haskell.org> References: <049.c792fb7fbab25e12997f6231b1f3472d@haskell.org> Message-ID: <064.ef55f1a47e71e15adde9c01e22124ecc@haskell.org> #10840: Periodic alarm signals can cause a retry loop to get stuck -------------------------------------+------------------------------------- Reporter: Rufflewind | Owner: bgamari Type: bug | Status: new Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): Unfortunately I have observed non-reproducible hangs while validating on OS X with `USE_PTHREAD_FOR_ITIMER`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 13:43:40 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 13:43:40 -0000 Subject: [GHC] #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications In-Reply-To: <050.1e1b033722e186882d08840a201168c5@haskell.org> References: <050.1e1b033722e186882d08840a201168c5@haskell.org> Message-ID: <065.6110bf62f6b38fca91fe23fe698481b9@haskell.org> #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: => 8.0.1 Comment: Is this something we want in 8.0? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 15:17:04 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 15:17:04 -0000 Subject: [GHC] #11787: Infer HasCallStack where possible In-Reply-To: <046.5318fdb9ba2ad3000bcf4a93628510e1@haskell.org> References: <046.5318fdb9ba2ad3000bcf4a93628510e1@haskell.org> Message-ID: <061.f0e59634266ac2a3522f76b8eca3d330@haskell.org> #11787: Infer HasCallStack where possible -------------------------------------+------------------------------------- Reporter: simonpj | Owner: gridaphobe Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by gridaphobe): Rewriting the IP to use the built-in synonym was originally part of Phab:D1912 (finally merged this morning!), but I believe I removed it in the last revision since we no longer infer CallStacks, period. So as of this morning your example should look like {{{ Prelude> :t error error :: GHC.Stack.Types.HasCallStack => [Char] -> a Prelude> :t (\x -> error x) (\x -> error x) :: [Char] -> a }}} I don't quite see the connection between #11376 and this issue. You seem to be suggesting that the fix for #11376 involves expanding type synonyms, which sounds like a very undesirable side-effect to me! Does this mean `:type` would also expand a synonym for a giant monad stack? Regardless, if we need to rewrite the type to use the synonym that should be easy to do. If I'm lucky it's even still in my git history somewhere :) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 15:47:07 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 15:47:07 -0000 Subject: [GHC] #11786: Need -fno-print-explicit-runtime-reps to work on IfaceType, else RuntimeRep leaks In-Reply-To: <046.943657e3f9ed3d83fd8aca1ffc9a9fa0@haskell.org> References: <046.943657e3f9ed3d83fd8aca1ffc9a9fa0@haskell.org> Message-ID: <061.c7d95a24c975fbe362d1edd1607a0622@haskell.org> #11786: Need -fno-print-explicit-runtime-reps to work on IfaceType, else RuntimeRep leaks -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): For the record: The transition away from the `Type` pretty-printer to `IFaceType` is being tracked as #11660. I have a patch in progress for this, although have lacked time to finish it. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 16:12:00 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 16:12:00 -0000 Subject: [GHC] #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications In-Reply-To: <050.1e1b033722e186882d08840a201168c5@haskell.org> References: <050.1e1b033722e186882d08840a201168c5@haskell.org> Message-ID: <065.36e6ad333c0fca4126133b356e49f69d@haskell.org> #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): After more thought, I think this is a move in the wrong direction. The evidence I use to make my case is [https://phabricator.haskell.org/rGHCf2a2b79fa8d1c702b17e195a70734b06625e0153#da6fd6c4 this change]. Because of the change proposed (and implemented) here, GHC effectively erases information about specified vs. inferred variables before printing a type. One could argue that this information is recoverable with `:info`, but this is not easily true for data constructors, which print out their definition with `:info`, not their type. And, personally, when I want the type of a function, I just say `:type`, not `:info`, even when that expression is just a bare function. If (1) from comment:21 is considered abhorrent (and I admit it's unsavory), then I think we should strive for (2). Here is an attempt at a specification & implementation for (2): In `:type`, we do no type instantation, but we ''do'' try to solve constraints, by looking for any constraints in the type (even nested to the right of arrows), plucking them out of the type, and trying to solve them (by emitted wanteds and running the solver directly from `tcRnExpr`). Any unsolved constraints are then put back in the type, being careful to keep things well-scoped. Even after writing that, I don't like it at all. But with the patch as written, we're actively throwing away information that's hard to come by otherwise. == A new, crazy idea == Currently, GHCi stores the result of an evaluation in `it`. I propose storing the type of an evaluation (or call to `:type`) in `It` (so that `it :: It`). And then a new directive `:simplify` takes a type and simplifies it as much as possible, much like `simpliferInfer` does. So a user could say `:t length @[]`, get something with an unsolved `Foldable` constraint, and then just say `:simp It` and get what they want. We could even have `:type` try to simplify and report both types if they are different. I'm not suggesting this for 8.0, but I think it's a better plan than this patch, which I advocate reverting. Note: my comment:23 admission was thinking about the large mass of users that don't know about visible type application. But only those use visible type application will be bitten by the strange behavior! So I take back comment:23. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 17:34:59 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 17:34:59 -0000 Subject: [GHC] #11788: Enable Thin Library support for the Runtime linker on Windows. Message-ID: <044.fc1813135ac93d3129200c89e883b0fe@haskell.org> #11788: Enable Thin Library support for the Runtime linker on Windows. -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Phyx- Type: feature | Status: new request | Priority: normal | Milestone: 8.2.1 Component: Runtime | Version: 7.10.3 System (Linker) | Keywords: | Operating System: Windows Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- The runtime linker currently has an `#ifdef` that removes support for AR's thin archives for Windows. This because all the code is based on `char*` and Windows would require `wchar_t`. Using the abstraction of `pathchar` this can be enabled for Windows and remove another `#ifdef` from the RTS. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 18:09:13 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 18:09:13 -0000 Subject: [GHC] #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications In-Reply-To: <050.1e1b033722e186882d08840a201168c5@haskell.org> References: <050.1e1b033722e186882d08840a201168c5@haskell.org> Message-ID: <065.e6e7bcc5dc92562f8bbd906b3e828a78@haskell.org> #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): > And, personally, when I want the type of a function, I just say :type, not :info, even when that expression is just a bare function. If that is what you want, let's not over complicate this. We could easily say that `:type` behaves like `:info` when its argument is jut a variable. That is easy to specify, easy to implement, and does what you say you want. I'm really not happy with the old behaviour, so reluctant to revert. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 18:17:18 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 18:17:18 -0000 Subject: [GHC] #11785: Kinds should be treated like types in TcSplice In-Reply-To: <047.bfff5ba2980e2ce458e592d1077c3dd1@haskell.org> References: <047.bfff5ba2980e2ce458e592d1077c3dd1@haskell.org> Message-ID: <062.e1b6aa35009076eac486189bd03cef62@haskell.org> #11785: Kinds should be treated like types in TcSplice -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: task | Status: new Priority: normal | Milestone: Component: Template Haskell | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * cc: RyanGlScott (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 19:42:37 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 19:42:37 -0000 Subject: [GHC] #8594: sysctl name "hw.ncpu" (HW_NCPU) is deprecated in Mac OS X In-Reply-To: <043.14751a04063e97452853ca5e57a712e1@haskell.org> References: <043.14751a04063e97452853ca5e57a712e1@haskell.org> Message-ID: <058.0c64b112303850632842af6b3793b4ba@haskell.org> #8594: sysctl name "hw.ncpu" (HW_NCPU) is deprecated in Mac OS X -------------------------------------+------------------------------------- Reporter: kseo | Owner: ak3n Type: task | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 7.6.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2082 Wiki Page: | -------------------------------------+------------------------------------- Changes (by ak3n): * owner: simonmar => ak3n * differential: => Phab:D2082 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 20:36:54 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 20:36:54 -0000 Subject: [GHC] #11155: Trivial thunk gives "undefined reference to stg_ap_0_upd_info" In-Reply-To: <046.d8196c999608fededc5ef9d4e2e29843@haskell.org> References: <046.d8196c999608fededc5ef9d4e2e29843@haskell.org> Message-ID: <061.c000bb98fdbd8e7adfaae387ef2efea2@haskell.org> #11155: Trivial thunk gives "undefined reference to stg_ap_0_upd_info" -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: closed Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 7.10.2 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: | simplCore/should_compile/T11155 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by gridaphobe): I just ran into this (or a similar issue) when building GHC (9b6820cdd6bac8b8346be48224627e3feefa9036) on OSX. This is a clean build with the default settings, and it fails at the very last step of stage 2. {{{ HC [stage 1] ghc/stage2/build/tmp/ghc-stage2 Warning: -rtsopts and -with-rtsopts have no effect with -no-hs-main. Call hs_init_ghc() from your main() function to set these options. Undefined symbols for architecture x86_64: "_stg_sel_17_upd_info", referenced from: _s1s8Z_info in UI.dyn_o _s1s9w_info in UI.dyn_o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) `gcc' failed in phase `Linker'. (Exit code: 1) }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 20:47:42 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 20:47:42 -0000 Subject: [GHC] #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications In-Reply-To: <050.1e1b033722e186882d08840a201168c5@haskell.org> References: <050.1e1b033722e186882d08840a201168c5@haskell.org> Message-ID: <065.5932ea6ce422085f31a91dd1190815b0@haskell.org> #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): What about for data constructors? Without your patch: {{{ > :type Proxy Proxy :: forall {k} (t :: k). Proxy t }}} This is now useful information that `k` is not specified but `t` is. With your patch (assumedly -- I don't have this locally): {{{ > :type Proxy Proxy :: forall {k} {t :: k}. Proxy t }}} I now don't know which is specified and which is generalized. So I could use `:info`: {{{ > :info Proxy type role Proxy phantom data Proxy (t :: k) = Proxy -- Defined in ?Data.Proxy? instance forall k (s :: k). Bounded (Proxy s) -- Defined in ?Data.Proxy? instance forall k (s :: k). Enum (Proxy s) -- Defined in ?Data.Proxy? instance forall k (s :: k). Eq (Proxy s) -- Defined in ?Data.Proxy? instance Monad Proxy -- Defined in ?Data.Proxy? instance Functor Proxy -- Defined in ?Data.Proxy? instance forall k (s :: k). Ord (Proxy s) -- Defined in ?Data.Proxy? instance forall k (s :: k). Read (Proxy s) -- Defined in ?Data.Proxy? instance forall k (s :: k). Show (Proxy s) -- Defined in ?Data.Proxy? instance Applicative Proxy -- Defined in ?Data.Proxy? instance Foldable Proxy -- Defined in ?Data.Foldable? instance Traversable Proxy -- Defined in ?Data.Traversable? instance forall k (s :: k). Monoid (Proxy s) -- Defined in ?Data.Proxy? }}} There's an awful lot of information I have no interest in, and the very piece of information I do want -- the specificity of the variables -- is missing. It's missing because GHC helpfully says `data Proxy (t :: k) = ...` even though `Data.Proxy` declares `data Proxy t = ...`. The former would make `k` specified. But the latter, actual definition, means that `k` is not specified. I can exhibit the same problems with a class method. Take `Control.Category`'s `id`: Without your patch: {{{ > :type C.id C.id :: forall {k} (cat :: k -> k -> *). Category cat => forall (a :: k). cat a a }}} Very helpful info. With your patch (assumedly): {{{ > :type C.id C.id :: forall {k} {a :: k} {cat :: k -> k -> *}. Category cat => cat a a }}} Here I decided to swap the order of `cat` and `a`, because it's quite conceivable that this would happen. And now `:info`: {{{ > :info C.id class Category (cat :: k -> k -> *) where Control.Category.id :: forall (a :: k). cat a a ... }}} Once again, I can't tell that `k` is unspecified. And even if I could somehow, I'd still have to do some work to reconstruct the type from this information. I'm sure record selectors would have the same problem. Bottom line: I don't think Simon's proposal to use `:info` for bare names quite does it. I'm sympathetic to disliking (1) and I, too, desire to keep things simple. But I don't think we've quite figured this out yet. I actually think there's a really easy solution: have `:type` print ''both'' the uninstantiated type and the instantiated one (if they're different, by more than the ordering of invisible things). `tcRnExpr` could return two `Type`s -- it has both types we want to hand. We could even only do this new behavior when `-fprint-explicit-foralls` is enabled (because otherwise, the user isn't seeing specificity anyway). -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 20:59:00 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 20:59:00 -0000 Subject: [GHC] #11789: Flag suggestion does not always work Message-ID: <046.8956aee4cb2b3d361b8607128f32a5f4@haskell.org> #11789: Flag suggestion does not always work -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: Driver | Version: 8.1 Keywords: newcomer | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Usually, GHC is very helpfully telling me about misspelled flags, but sometimes it fails. Did not yet look deeper, but when I wrote `-fppr- cols=1000` it did not suggest `-dppr-cols=1000`. I am not sure if this is due to the `=` or whether it branches on `-f` vs. `-d` earlier. This surely can be improved! Likely newcomer-friendly.. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 21:00:37 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 21:00:37 -0000 Subject: [GHC] #11790: (More) missing instances for Identity and Const Message-ID: <045.44b1fa024af740b88eaa1765c2d36b9a@haskell.org> #11790: (More) missing instances for Identity and Const -------------------------------------+------------------------------------- Reporter: duairc | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: | Version: 7.10.3 libraries/base | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): D2079 | Wiki Page: -------------------------------------+------------------------------------- I made a similar ([https://ghc.haskell.org/trac/ghc/ticket/11210 #11210]) issue a few months ago and submitted a [https://phabricator.haskell.org/D1626 patch] which was accepted. There are some more instances I want to add: {{{ instance Num a => Num (Identity a) instance Real a => Real (Identity a) instance Integral a => Integral (Identity a) instance Fractional a => Fractional (Identity a) instance Floating a => Floating (Identity a) instance RealFrac a => RealFrac (Identity a) instance RealFloat a => RealFloat (Identity a) instance Bits a => Bits (Identity a) instance FiniteBits a => FiniteBits (Identity a) instance IsString => IsString (Identity a) instance Num a => Num (Const a b) instance Real a => Real (Const a b) instance Integral a => Integral (Const a b) instance Fractional a => Fractional (Const a b) instance Floating a => Floating (Const a b) instance RealFrac a => RealFrac (Const a b) instance RealFloat a => RealFloat (Const a b) instance Bits a => Bits (Const a b) instance FiniteBits a => FiniteBits (Const a b) instance IsString => IsString (Const a b) }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 21:07:44 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 21:07:44 -0000 Subject: [GHC] #11790: (More) missing instances for Identity and Const In-Reply-To: <045.44b1fa024af740b88eaa1765c2d36b9a@haskell.org> References: <045.44b1fa024af740b88eaa1765c2d36b9a@haskell.org> Message-ID: <060.8c08e9778457cb4410f5bbb03597d33e@haskell.org> #11790: (More) missing instances for Identity and Const -------------------------------------+------------------------------------- Reporter: duairc | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2079 Wiki Page: | -------------------------------------+------------------------------------- Changes (by duairc): * differential: D2079 => Phab:D2079 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 21:20:04 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 21:20:04 -0000 Subject: [GHC] #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications In-Reply-To: <050.1e1b033722e186882d08840a201168c5@haskell.org> References: <050.1e1b033722e186882d08840a201168c5@haskell.org> Message-ID: <065.8baaf7cbf1f8816859d670a3d360e39e@haskell.org> #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): I see what you mean about `:info`, but * Your `Proxy` example is complicated by the fact that it's a type constructor as well as a data constructor * The specificity of a type is a pretty specialised topic. I myself still uncomfortable with the idea of having ''three'' different levels of specificity (visible, specified, invisible). It only makes a difference when you have visible type application. Most programmers (pre GHC 8.0, 100% of them) will neither know nor care. * So we should not make simple things more complicated in the service of specificity. I really don't want `:type` to display two types!! * I could live with `:type` having special behaviour for a bare variable: namely display its un-instantiated type. So `:type x` and `:type (x)` might display different things, but that is easy to specify and most often is what you want. (I do wonder whether we should print all the instance of a type/class by default, or whether `:instances` should do that. But that's another question.) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 21:25:57 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 21:25:57 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.a9c58ce2b60561ca658e356af628e47a@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): > Oh hang on. Maybe the program being compiled is changing size! Try -dshow-passes before and after. No, no diff there (of the program with `-v -ddump-cse`) besides insignificant changes in per-pass runtime and per-pass allocation. So it must have indeed made some code path that is overly exercised by this extreme program slower. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 21:36:34 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 21:36:34 -0000 Subject: [GHC] #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications In-Reply-To: <050.1e1b033722e186882d08840a201168c5@haskell.org> References: <050.1e1b033722e186882d08840a201168c5@haskell.org> Message-ID: <065.78929aeb30d5489f3e69f4668f7342a8@haskell.org> #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): Specificity is indeed specialized. However, the problematic output from `:type` that your patch fixes will happen only with visible type application. So, we're already focusing on a specialized audience. I could live with your last proposal -- that `:type ` is, essentially, a separate command from the normal `:type`. But how long will it be until someone posts a bug report complaining that `:t (blah)` is different from `:t blah`? This is the sort of "computer trying to be smart" behavior that I find so irritating in a variety of programs. It is indeed possible (and easy) to specify, but that specification will be buried in some bullet in the manual. What this all boils down to is that we really do need two commands: One that gives the raw, uninstantiated type; and one that tells us what type an identifier would be inferred to have if assigned to an expression. These are different, and both are useful! So maybe we should just introduce a new command. `:type` should clearly have the instantiated behavior, and the new one can be uninstantiated. I'm uninspired about the name of the new command. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 4 22:32:02 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 04 Apr 2016 22:32:02 -0000 Subject: [GHC] #11484: Type synonym using -XTypeInType can't be spliced with TH In-Reply-To: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> References: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> Message-ID: <065.6f74e972728448c49b4a96e53f729aef@haskell.org> #11484: Type synonym using -XTypeInType can't be spliced with TH -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1-rc1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by RyanGlScott): I did some cursory debugging on this by pretty printing the `TyCon` and its `TyVar`s when [http://git.haskell.org/ghc.git/blob/7407a66d5bd29aa011f5a4228c6e2b2f7f8ad3f8:/compiler/typecheck/TcTyClsDecls.hs#l2163 checkValidTyConVars] (the function which is producing that error message) is run. When you type in that type synonym directly, i.e., {{{ ?> type TySyn2 (k :: *) (a :: k) = () RGS TySyn2 [k_a5hY, a_a5hZ] }}} then the only type variables are `k` and `a`, as expected. But when it's spliced in from TH: {{{ ?> data X; $([d| type TySyn2 (k :: *) (a :: k) = () |]) ... :3:11-51: Splicing declarations [d| type TySyn2_a1ba (k_a1bb :: *) (a_a1bc :: k_a1bb) = () |] ======> type TySyn2_a5hT (k_a5hU :: Type) (a_a5hV :: k_a5hU) = () RGS TySyn2 [k_a5hU[sk], k_a5hU, a_a5hV] }}} we can see how it went wrong, as GHC mistakenly believes that there are type variables. I suppose we just have to "un-skolemize" one of the occurrences of `k`... is there a function which does this? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 07:20:23 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 07:20:23 -0000 Subject: [GHC] #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications In-Reply-To: <050.1e1b033722e186882d08840a201168c5@haskell.org> References: <050.1e1b033722e186882d08840a201168c5@haskell.org> Message-ID: <065.b88709fd9997078e8ead1c2c6bcf7ab9@haskell.org> #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): OK, well we can both live with * `:type var` prints the original type of `var`, whereas `:type expr` typechecks, instantiates, and re-generalises the type of `expr`. > But how long will it be until someone posts a bug report complaining that `:t (blah)` is different from `:t blah`? Maybe not long, but we can just point to the user manual. Having two commands is a pain when you can get the second by adding parens to the first. Now we just need someone to do it. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 07:41:16 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 07:41:16 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.efd0b884addbf4189359807f68d1f309@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): OK, well next thing is to use the profiler. That of course may cause the difference to disappear, in which case ticky is next. 17% can't be too hard to find. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 07:51:47 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 07:51:47 -0000 Subject: [GHC] #11484: Type synonym using -XTypeInType can't be spliced with TH In-Reply-To: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> References: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> Message-ID: <065.0950eb49487072f18496e35870176ed1@haskell.org> #11484: Type synonym using -XTypeInType can't be spliced with TH -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1-rc1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): My guess is that this problem is a consequence of the quite delicate design of `TcHsType.splitTelescopeTvs`. I imagine there's a way to apply a delicate patch to the delicate algorithm to fix this, but I propose a better solution that makes this all more robust: refactor `TcTyCon` to store more information about user-written telescopes (that is, lists of type variables that may have dependencies) so that `splitTelescopeTvs` becomes trivial. When I first wrote `splitTelescopeTvs` as part of the `TypeInType` work, I hadn't yet added `TcTyCon`, and I was very loathe to put surface-Haskell details about a user-written telescope into `TyCon`. But now that we have `TcTyCon`s that exist only in the first stages of type-checking, it's more reasonable to put in more surface-Haskell information. I think this refactoring would be fairly straightforward, but I'm afraid I haven't the time to do it myself. Happy to advise if you (for any value of "you") wish to take this on. Alternatively, if you want to figure out how to fix this particular problem without doing the larger refactor, I'm happy to look at that, too. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 08:02:14 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 08:02:14 -0000 Subject: [GHC] #11484: Type synonym using -XTypeInType can't be spliced with TH In-Reply-To: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> References: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> Message-ID: <065.80a2ebb503d55cd0fb7e5bb2afb8093f@haskell.org> #11484: Type synonym using -XTypeInType can't be spliced with TH -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1-rc1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Would you care to elaborate on what refactoring you have in mind? What source-level things were you thinking of recording, and how would it help? I confess that I have never understood `splitTelescopeTvs` despite the long, careful Note you wrote :-(. I would love to find a simpler path here. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 08:09:14 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 08:09:14 -0000 Subject: [GHC] #11787: Infer HasCallStack where possible In-Reply-To: <046.5318fdb9ba2ad3000bcf4a93628510e1@haskell.org> References: <046.5318fdb9ba2ad3000bcf4a93628510e1@haskell.org> Message-ID: <061.7bf0da2bfaeca2a1138715b9aee0afe2@haskell.org> #11787: Infer HasCallStack where possible -------------------------------------+------------------------------------- Reporter: simonpj | Owner: gridaphobe Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: invalid | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * status: new => closed * resolution: => invalid Comment: > we no longer infer CallStacks, period Oh yes, right! That makes this ticket redundant. > You seem to be suggesting that the fix for #11376 involves expanding type synonyms, Typechecking any expression, such as `(\x -> error x)` involves instantiating constraints, in this case the `HasCallStack` constraint from `error`. Then we simplify and re-generalise. It's that step that expands the synonym. Anyway, I'll close this as no-longer-relevant. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 09:30:10 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 09:30:10 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.4eb5b91c4ea8625c5079bbd8c320b62f@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Ok, setting up two new working copies with `prof` builds right now, one with and one without the patch. Hopefully they are built over the conference lunch. (This comment is just an ventilation of slight annoyance with the effort required to track down such issues, and does not require any reaction.) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 10:02:52 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 10:02:52 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.a372d767a9df85bda71db526d0ccc8d7@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Ah, the problem seems to triggered by different Core, but not in T9020, but rather in GHC.Base. And indeed, the simplifier phase after float out uses more memory with the patch applied. What are the changes that could have caused this? Likely this: Before {{{ 7af6f512e836b8b3376592bbd63e1ae5 $fMonadIO :: Monad IO DFunId {- Strictness: m, Inline: [ALWAYS] CONLIKE, Unfolding: DFun:. @ IO $fMonadIO_$cp1Monad bindIO thenIO returnIO $fMonadIO_$cfail -} }}} After {{{ d1aceb0a764a371523ef868c174b2704 $fMonadIO :: Monad IO DFunId {- Strictness: m, Inline: [ALWAYS] CONLIKE, Unfolding: DFun:. @ IO $fMonadIO_$cp1Monad bindIO $fApplicativeIO_$c*> $fMonadIO_$creturn $fMonadIO_$cfail -} }}} Note that `(>>)` now goes through Applicative, and not through `thenIO` as before. And that is obviously more expensive when simplifying the `return () >> return () >> ...` chains: {{{ 42258bccfed0ab422b11c0c7ba4ead55 $fApplicativeIO_$c*> :: IO a -> IO b -> IO b {- Arity: 3, HasNoCafRefs, Strictness: , Inline: INLINE (sat-args=2), Unfolding: InlineRule (2, False, False) (\ @ a @ b (m :: IO a) (k :: IO b) (eta :: State# RealWorld)[OneShot] -> (bindIO @ a @ b m (\ (ds :: a) -> k)) `cast` (N:IO[0] _R) eta) `cast` (forall (a :: <*>_N) (b :: <*>_N). _R ->_R _R ->_R Sym (N:IO[0] _R)) -} }}} Also `return` itself is now implemented via {{{ a2f6e8e629337f5fbb3dfb5d4b7caaa8 $fMonadIO_$creturn :: a -> IO a {- Arity: 2, HasNoCafRefs, Strictness: , Unfolding: InlineRule (0, True, True) returnIO1 `cast` (forall (a :: <*>_N). _R ->_R Sym (N:IO[0] _R)) -} }}} I?m attaching both interface dumps, in case anyone wants to have a closer look. Does this analysis sound plausible? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 10:03:09 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 10:03:09 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.e471f2631cadd4a49034075aa1dfcfe5@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Changes (by nomeata): * Attachment "iface-before.txt" added. GHC.Base iface without this patch. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 10:03:21 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 10:03:21 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.94f656ea4dc923d317c13b56ae10ef84@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Changes (by nomeata): * Attachment "iface-after.txt" added. GHC.Base iface with this patch. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 10:06:07 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 10:06:07 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.8d36e7030a4b60dda079de7a9940248c@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Note that the definition of `Monad IO` indeed has `(>>) = (*>)` and `m *> k = m >>= \ _ -> k`. So previously, CSE was able to to common up `m *> k = m >>= \ _ -> k` with `thenIO`, and now it does not do that any more. Maybe some casts got into the way? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 11:11:13 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 11:11:13 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.e1e6c6e6f61ff4195fd5585603470bfd@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Aha, good work. `-fddump-simpl-ticks` might have nailed it earlier; should have though of that. It should show more inlining of `$fApplicativeIO_$c*>` etc, during some particular simplifier run; so the result is the same but the journey is different. Does it? It's not the casts. It's caused by `Note [CSE for stable unfoldings]`. Note that the IO instances of both `>>` and `*>` get INLINE pragams in `GHC.Base`, so we are (now) very cautious about inlining them, rightly I think. What is more mysterious to me is why the unfolding for `$fApplicativeIO_$c*>` doesn't have `bindIO`, and then `bindIO` inlined into it, which would allow a cascade of further improvements, which would, I think, produce essentially the same code as `thenIO`. The offending corner is this {{{ active_unfolding_gentle id = isInlinePragma prag -- WHY?? && isEarlyActive (inlinePragmaActivation prag) }}} So I tried removing the `isInlinePragma prag` test, and indeed the code becomes identical. Conclusion: * We could change the code in `GHC.Base` to have {{{ *> = thenIO >> = thenIO }}} No reason why not; it's simple and direct. Does it fix the perf problem in the compiler? * I'd love to make the above change to `active_unfolding_gentle` and see if any other performance numbers budge. I doubt that anything will change a lot -- it really only affects whether optimisation happens before or after inlining -- but it should improve compiler performance a bit for that very reason. This could be a separate ticket Incidentally, see #5928 which is somewhat related. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 11:59:28 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 11:59:28 -0000 Subject: [GHC] #11484: Type synonym using -XTypeInType can't be spliced with TH In-Reply-To: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> References: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> Message-ID: <065.39d04399e826a1ecd6f36a164f62a38d@haskell.org> #11484: Type synonym using -XTypeInType can't be spliced with TH -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1-rc1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): `getInitialKinds` produces the kind of a tycon from a `LHsQTyVars`. `kcTyClTyVars` and `tcTyClTyVars` then have to match up the bits in the `LHsQTyVars` with this produced kind, so that we know, for example, which kind variables are mentioned explicitly in the type and which aren't (affecting visibility). That is the point of `splitTelescopeTvs`, simply to find the correspondence between the `LHsQTyVars` and the kind of the tycon. With `TcTyCon`, we can just store this correspondence -- basically, storing in the `TcTyCon` exactly what `kcTyClTyVars` and `tcTyClTyVars` need to function. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 13:15:15 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 13:15:15 -0000 Subject: [GHC] #11573: Inferred CallStacks expose implicit parameter In-Reply-To: <046.50bedf0c81dd2bc801447c1bb4cd0177@haskell.org> References: <046.50bedf0c81dd2bc801447c1bb4cd0177@haskell.org> Message-ID: <061.d9a411d1de0e97af123c83f7151247b6@haskell.org> #11573: Inferred CallStacks expose implicit parameter -------------------------------------+------------------------------------- Reporter: bgamari | Owner: gridaphobe Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.0.1-rc2 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11383 | Differential Rev(s): Phab:D1911, Wiki Page: | Phab:D1912 -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => merge -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 13:15:48 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 13:15:48 -0000 Subject: [GHC] #11573: Inferred CallStacks expose implicit parameter In-Reply-To: <046.50bedf0c81dd2bc801447c1bb4cd0177@haskell.org> References: <046.50bedf0c81dd2bc801447c1bb4cd0177@haskell.org> Message-ID: <061.3e56e3e1e9556964fe69d58605b12e97@haskell.org> #11573: Inferred CallStacks expose implicit parameter -------------------------------------+------------------------------------- Reporter: bgamari | Owner: gridaphobe Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.0.1-rc2 checker) | Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11383 | Differential Rev(s): Phab:D1911, Wiki Page: | Phab:D1912 -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: Merged to `ghc-8.0` as 773e81ba563ae2839f0d61a6401e318e4bacd036. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 13:16:23 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 13:16:23 -0000 Subject: [GHC] #11383: CAFs lose sharing due to implicit call stacks In-Reply-To: <047.7956a69fc4ebcb0a87f22be719b572d1@haskell.org> References: <047.7956a69fc4ebcb0a87f22be719b572d1@haskell.org> Message-ID: <062.cd514a7e27cd4e8a3e9cb2d616063251@haskell.org> #11383: CAFs lose sharing due to implicit call stacks -------------------------------------+------------------------------------- Reporter: simonmar | Owner: gridaphobe Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc1 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: #11298 | Differential Rev(s): Phab:D1912 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => closed * resolution: => fixed Comment: Phab:D1912 has been merged. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 13:44:26 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 13:44:26 -0000 Subject: [GHC] #10752: Print which warning-flag controls/enabled an emitted warning In-Reply-To: <042.f644641d9b90b7c893a460f85d1840e2@haskell.org> References: <042.f644641d9b90b7c893a460f85d1840e2@haskell.org> Message-ID: <057.4fdcbf39abe7cc784b3947939eee5007@haskell.org> #10752: Print which warning-flag controls/enabled an emitted warning -------------------------------------+------------------------------------- Reporter: hvr | Owner: barrucadu Type: feature request | Status: merge Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1943 Wiki Page: Design/Warnings | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"1e6ec1249b4da88fec9024598c2183e6fc0e96cd/ghc" 1e6ec12/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="1e6ec1249b4da88fec9024598c2183e6fc0e96cd" Fix misattribution of `-Wunused-local-binds` warnings This fixes a bug where warnings actually controlled by - `Opt_WarnUnusedMatches` - `Opt_WarnUnusedTypePatterns` - `Opt_WarnUnusedTopBinds` were incorrectly reported as being controlled by `Opt_WarnUnusedLocalBinds` as well This bug was introduced in bb5afd3c274011c5ea302210b4c290ec1f83209c while implementing #10752 Test Plan: ./validate still running -- testsuite output wiggles expected Reviewers: barrucadu, quchen, austin, bgamari Reviewed By: bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2077 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:01:07 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:01:07 -0000 Subject: [GHC] #11523: Infinite Loop when mixing UndecidableSuperClasses and the class/instance constraint synonym trick. In-Reply-To: <045.d4380bf1adf1df9e0c96b4a3ede582ad@haskell.org> References: <045.d4380bf1adf1df9e0c96b4a3ede582ad@haskell.org> Message-ID: <060.b83ca7c20f84630d1d6a4216960d9068@haskell.org> #11523: Infinite Loop when mixing UndecidableSuperClasses and the class/instance constraint synonym trick. -------------------------------------+------------------------------------- Reporter: ekmett | Owner: Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler (Type | Version: 8.0.1-rc1 checker) | Keywords: Resolution: | UndecidableSuperClasses Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | polykinds/T11523 Blocked By: | Blocking: Related Tickets: #11480 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * priority: highest => high * milestone: 8.0.1 => 8.2.1 Comment: I'm going to move this off the 8.0 milestone. I claim it's behaving as advertised, and no one is disputing that claim. By all means bring it back if you disagree. Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:03:16 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:03:16 -0000 Subject: [GHC] #11762: GHC 8 superclass chain constraint regression In-Reply-To: <048.8d3f15d8dce49f095c6c78ab934bfbaf@haskell.org> References: <048.8d3f15d8dce49f095c6c78ab934bfbaf@haskell.org> Message-ID: <063.fe0639d5a286bc44277b06d534de5b72@haskell.org> #11762: GHC 8 superclass chain constraint regression -------------------------------------+------------------------------------- Reporter: _deepfire | Owner: Type: bug | Status: closed Priority: highest | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.0.1-rc2 checker) | Resolution: duplicate | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: #11427 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * status: new => closed * resolution: => duplicate Comment: OK so currently this is by design, and so I'll mark it as invalid By all means suggest something better, but we can't do much for 8.0. Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:03:44 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:03:44 -0000 Subject: [GHC] #11427: superclasses aren't considered because context is no smaller than the instance head In-Reply-To: <045.5bbd322743d829f91b935ee5364b27b3@haskell.org> References: <045.5bbd322743d829f91b935ee5364b27b3@haskell.org> Message-ID: <060.64f7382bd1a9337cd9f95bf9c833a033@haskell.org> #11427: superclasses aren't considered because context is no smaller than the instance head -------------------------------------+------------------------------------- Reporter: phadej | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): See also #11762 for another example. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:04:20 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:04:20 -0000 Subject: [GHC] #10840: Periodic alarm signals can cause a retry loop to get stuck In-Reply-To: <049.c792fb7fbab25e12997f6231b1f3472d@haskell.org> References: <049.c792fb7fbab25e12997f6231b1f3472d@haskell.org> Message-ID: <064.9d761b14f402b5152d0f9b8ffc6d4c37@haskell.org> #10840: Periodic alarm signals can cause a retry loop to get stuck -------------------------------------+------------------------------------- Reporter: Rufflewind | Owner: bgamari Type: bug | Status: new Priority: high | Milestone: 8.0.2 Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: 8.0.1 => 8.0.2 Comment: This won't happen for 8.0.1. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:04:43 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:04:43 -0000 Subject: [GHC] #11779: Merge "Skip TEST=TcCoercibleFail when compiler_debugged" In-Reply-To: <046.dc5ce26ca4c4467286d60cdc7155ea47@haskell.org> References: <046.dc5ce26ca4c4467286d60cdc7155ea47@haskell.org> Message-ID: <061.b4412b35e05e351dc1b3982eca210c32@haskell.org> #11779: Merge "Skip TEST=TcCoercibleFail when compiler_debugged" -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: task | Status: merge Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * priority: high => highest -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:04:40 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:04:40 -0000 Subject: [GHC] #11779: Merge "Skip TEST=TcCoercibleFail when compiler_debugged" In-Reply-To: <046.dc5ce26ca4c4467286d60cdc7155ea47@haskell.org> References: <046.dc5ce26ca4c4467286d60cdc7155ea47@haskell.org> Message-ID: <061.d4a8d303999cd0ebc2f650e1688e4275@haskell.org> #11779: Merge "Skip TEST=TcCoercibleFail when compiler_debugged" -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: task | Status: merge Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by thoughtpolice): * status: new => merge -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:05:57 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:05:57 -0000 Subject: [GHC] #11298: Implicit call stack empty in instance declarations In-Reply-To: <047.eab5c810a3c4684688e2a4bb98536a85@haskell.org> References: <047.eab5c810a3c4684688e2a4bb98536a85@haskell.org> Message-ID: <062.848d890fdb4eed0fb90dacba97d02183@haskell.org> #11298: Implicit call stack empty in instance declarations -------------------------------------+------------------------------------- Reporter: pikajude | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 7.11 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => closed * resolution: => fixed Comment: All of this has been merged. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:06:20 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:06:20 -0000 Subject: [GHC] #11198: TypeInType error message regressions In-Reply-To: <047.10bc7f90bc6ecc2eebe9257004fabdc3@haskell.org> References: <047.10bc7f90bc6ecc2eebe9257004fabdc3@haskell.org> Message-ID: <062.6339cccebf32b429a2b4268a26374866@haskell.org> #11198: TypeInType error message regressions -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.2 Component: Compiler (Type | Version: 7.11 checker) | Keywords: TypeInType, Resolution: | ErrorMessages Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11672 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: 8.0.1 => 8.0.2 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:06:58 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:06:58 -0000 Subject: [GHC] #11554: Self quantification in GADT data declarations In-Reply-To: <046.bec85a0842a04f6c9921baff0e29a2a1@haskell.org> References: <046.bec85a0842a04f6c9921baff0e29a2a1@haskell.org> Message-ID: <061.4a911a9c5e83954a8b56dbd0aabc8cd2@haskell.org> #11554: Self quantification in GADT data declarations -------------------------------------+------------------------------------- Reporter: Rafbill | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.2 Component: Compiler (Type | Version: 8.0.1-rc2 checker) | Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: 8.0.1 => 8.0.2 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:07:04 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:07:04 -0000 Subject: [GHC] #7411: Exceptions are optimized away in certain situations In-Reply-To: <050.f2f3c96ba0efbcc7fad89b869c0b1e35@haskell.org> References: <050.f2f3c96ba0efbcc7fad89b869c0b1e35@haskell.org> Message-ID: <065.043ec7a81309d95e440917f1e56c567c@haskell.org> #7411: Exceptions are optimized away in certain situations -------------------------------------+------------------------------------- Reporter: SimonHengel | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.2 Component: Compiler | Version: 7.6.1 Resolution: | Keywords: seq, deepseq, | evaluate, exceptions Operating System: Linux | Architecture: x86_64 | (amd64) Type of failure: Incorrect result | Test Case: at runtime | simplCore/should_fail/T7411 Blocked By: | Blocking: Related Tickets: #5129 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: 8.0.1 => 8.0.2 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:09:31 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:09:31 -0000 Subject: [GHC] #11072: Runtime linker doesn't search for DLLs referenced in import libraries on Windows In-Reply-To: <050.675e99e0c3128be1426b83f1c6310ea3@haskell.org> References: <050.675e99e0c3128be1426b83f1c6310ea3@haskell.org> Message-ID: <065.d28e3735f44a55bff72b4ca5a7ae4ccb@haskell.org> #11072: Runtime linker doesn't search for DLLs referenced in import libraries on Windows -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Phyx- Type: feature request | Status: patch Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 7.10.2-rc2 (Linking) | Resolution: | Keywords: Operating System: Windows | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: T11072gcc | T11072msvc Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1564 Wiki Page: | Phab:D1696 -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: 8.0.1 => 8.0.2 Comment: Punting to 8.0.2. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:13:04 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:13:04 -0000 Subject: [GHC] #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications In-Reply-To: <050.1e1b033722e186882d08840a201168c5@haskell.org> References: <050.1e1b033722e186882d08840a201168c5@haskell.org> Message-ID: <065.e90c25738eae60e22c2c2c2823ce8e98@haskell.org> #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: goldfire Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => merge Comment: For 8.0.1 we will merge the commits in comment:26 and comment:27 and punt the rest for later. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:13:27 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:13:27 -0000 Subject: [GHC] #11450: Associated types at wrong type in instance In-Reply-To: <046.09703aba3da5589c5c125eb008ef88e8@haskell.org> References: <046.09703aba3da5589c5c125eb008ef88e8@haskell.org> Message-ID: <061.fc62b543abbeb6d18540cf7053a803a5@haskell.org> #11450: Associated types at wrong type in instance -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11449, #11451 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by bgamari: @@ -2,1 +2,1 @@ - {{{ + {{{#!hs New description: Consider {{{#!hs class C x where type T x instance C (Either a b) where type T (Either b a) = b -> a }}} This is bogus, because the equation for `T` has the parameters to `Either` reversed. But GHC 8.0 RC1 (and master) allow it. -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:14:27 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:14:27 -0000 Subject: [GHC] #11450: Associated types at wrong type in instance In-Reply-To: <046.09703aba3da5589c5c125eb008ef88e8@haskell.org> References: <046.09703aba3da5589c5c125eb008ef88e8@haskell.org> Message-ID: <061.7fc89eb44ac484690834670a27357801@haskell.org> #11450: Associated types at wrong type in instance -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.2 Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC accepts | Unknown/Multiple invalid program | Test Case: Blocked By: | Blocking: Related Tickets: #11449, #11451 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * failure: None/Unknown => GHC accepts invalid program * milestone: 8.0.1 => 8.0.2 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:16:02 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:16:02 -0000 Subject: [GHC] #10752: Print which warning-flag controls/enabled an emitted warning In-Reply-To: <042.f644641d9b90b7c893a460f85d1840e2@haskell.org> References: <042.f644641d9b90b7c893a460f85d1840e2@haskell.org> Message-ID: <057.d5af681eac235c5594826faf478c8919@haskell.org> #10752: Print which warning-flag controls/enabled an emitted warning -------------------------------------+------------------------------------- Reporter: hvr | Owner: barrucadu Type: feature request | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1943 Wiki Page: Design/Warnings | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed Comment: Merged as 8e672317ddcad936f2dc3c0497499cb50207954e. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:16:34 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:16:34 -0000 Subject: [GHC] #10296: Segfaults when using dynamic wrappers and concurrency In-Reply-To: <046.5415c655699223aa287cb69e9ee1b595@haskell.org> References: <046.5415c655699223aa287cb69e9ee1b595@haskell.org> Message-ID: <061.a6214bd9ef0b4d34d3c58e12d1e83e23@haskell.org> #10296: Segfaults when using dynamic wrappers and concurrency -------------------------------------+------------------------------------- Reporter: bitonic | Owner: jme Type: bug | Status: closed Priority: highest | Milestone: 8.0.1 Component: Runtime System | Version: 7.11 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2031 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: Merged as bf84e36fb0825a058b120bdb4f3483a83538dcf6. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:17:24 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:17:24 -0000 Subject: [GHC] #11606: name shadowing warnings don't trigger on standalone declarations in ghci In-Reply-To: <047.da6e0c4abf31fd9d88f2bdf57a7418b8@haskell.org> References: <047.da6e0c4abf31fd9d88f2bdf57a7418b8@haskell.org> Message-ID: <062.587d95102157fcfdd18a087314d10b76@haskell.org> #11606: name shadowing warnings don't trigger on standalone declarations in ghci -------------------------------------+------------------------------------- Reporter: rwbarton | Owner: rwbarton Type: bug | Status: new Priority: high | Milestone: 8.0.2 Component: GHCi | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by thoughtpolice): * milestone: 8.0.1 => 8.0.2 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:21:04 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:21:04 -0000 Subject: [GHC] #11197: Overeager deferred type errors In-Reply-To: <047.311058030fc6bc2d09ef05760e42135c@haskell.org> References: <047.311058030fc6bc2d09ef05760e42135c@haskell.org> Message-ID: <062.c32d4a0f21e8d2fc0043ab2f51ef04ad@haskell.org> #11197: Overeager deferred type errors -------------------------------------+------------------------------------- Reporter: goldfire | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler (Type | Version: 7.11 checker) | Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by thoughtpolice): * milestone: 8.0.1 => 8.0.2 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:22:11 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:22:11 -0000 Subject: [GHC] #11369: Suppress redundant-constraint warnings in case of empty classes In-Reply-To: <042.737377bf025e0f1e9e16df66e2da43c7@haskell.org> References: <042.737377bf025e0f1e9e16df66e2da43c7@haskell.org> Message-ID: <057.cecb46bad6db142d2576edd39f4bd427@haskell.org> #11369: Suppress redundant-constraint warnings in case of empty classes -------------------------------------+------------------------------------- Reporter: hvr | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.1 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #11370 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * owner: simonpj => -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 14:25:24 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 14:25:24 -0000 Subject: [GHC] #11339: Possible type-checker regression in GHC 8.0 In-Reply-To: <042.e02f929caf8d7a3c89e3acf4b77b9340@haskell.org> References: <042.e02f929caf8d7a3c89e3acf4b77b9340@haskell.org> Message-ID: <057.75459d5d2d025176e1c9ac325d517b72@haskell.org> #11339: Possible type-checker regression in GHC 8.0 -------------------------------------+------------------------------------- Reporter: hvr | Owner: simonpj Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.0.1-rc1 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): The stuff with partial type sigs (5) is related to #11670 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 15:02:45 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 15:02:45 -0000 Subject: [GHC] #11731: Simplifier: Inlining trivial let can lose sharing In-Reply-To: <046.a5918d80f4707137661067c33245f819@haskell.org> References: <046.a5918d80f4707137661067c33245f819@haskell.org> Message-ID: <061.45e46115a26485d902ab60b43d96e7da@haskell.org> #11731: Simplifier: Inlining trivial let can lose sharing -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2073 Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): > The regressions in the two test cases are compiler benchmarks; I think this is the expected cost for another run of the demand analyzer. These regressions also happen with a stage1 compiler, and the extra allocations correspond quite well to the the numbers shown by the new per- pass-numbers. They don?t have deeply nested letrecs, but rather data types with lots and lots of record fields. Now to `cichelli`. The number of dynamic thunks entered (`ENT_DYN_THK_MANY_ctr`) goes down drastically (from 576007 to 115857). This is due to `Auxil.$whinsert` getting a strictness signature in its first argument, which causes the code {{{ where try newAssocs = ( case hinsert (hash newCharAssocs k) keyHashSet of Nothing -> (NotEver 1) }}} in `Prog` to not allocate a thunk for the argument to hinsert, but rather evaluate `hash` strictly. The reason the worker `$whinsert` (or rather the original `hinsert`) is not stricter earlier is that this is only visible after more inlining and case-of-case transformations. So this is nice. For mandel2, there are lets (`split_y`) that now have a strict demand and thus are compiled differently by the code generator. Nice as well. So the effect was not so much due to single entry thunks, but rather due to strictness (either via exported signatures and knock-on effects on later modules, or via strict lets). Does that address the concerns? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 15:07:52 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 15:07:52 -0000 Subject: [GHC] #11731: Simplifier: Inlining trivial let can lose sharing In-Reply-To: <046.a5918d80f4707137661067c33245f819@haskell.org> References: <046.a5918d80f4707137661067c33245f819@haskell.org> Message-ID: <061.cadf8890e4263f2e229933a86079c2a8@haskell.org> #11731: Simplifier: Inlining trivial let can lose sharing -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2073 Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Yes that's good. For the paper we can talk about the find dmd-anal pass, but in showing the payoff from single-entry etc we will have to compare like with like; i.e. not claim the big wins here as wins for single-entry- ness. We'd also flirted with `-flate-dmd-anal` (complete with worker/wrapper) which could show greater benefits still (from the w/w). I hypothesise that if we did `-flate-dmd-anal` then the final dmd-anal pass would buy very little except the correct single-entry info. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 15:14:19 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 15:14:19 -0000 Subject: [GHC] #11791: Remove the `isInlinePragma prag` test Message-ID: <046.e1b8da45884d1bb5e6fabdc8ea65e302@haskell.org> #11791: Remove the `isInlinePragma prag` test -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: task | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: #11781, #5928 Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- This is a spin off of tickjet:11781#comment:9, where simonpjs writes: > What is more mysterious to me is why the unfolding for `$fApplicativeIO_$c*>` doesn't have `bindIO`, and then `bindIO` inlined into it, which would allow a cascade of further improvements, which would, I think, produce essentially the same code as `thenIO`. > > The offending corner is this > {{{ > active_unfolding_gentle id > = isInlinePragma prag -- WHY?? > && isEarlyActive (inlinePragmaActivation prag) > }}} > So I tried removing the `isInlinePragma prag` test, and indeed the code becomes identical. > > Conclusion: > * I'd love to make the above change to `active_unfolding_gentle` and see if any other performance numbers budge. I doubt that anything will change a lot -- it really only affects whether optimisation happens before or after inlining -- but it should improve compiler performance a bit for that very reason. This could be a separate ticket > > Incidentally, see #5928 which is somewhat related. This ticket tracks that idea. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 15:15:36 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 15:15:36 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.9666e0e82a895c8976b1cf6f5571ef74@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): > We could change the code in GHC.Base to have ... yes. It is sufficient to change it for `*>`, and leave `(>>) = (*>)` (which I believe is better practice, in case people look at that code for how to do it). Is this required even if we do the change to `active_unfolding_gentle`? > This could be a separate ticket Now at #11791. And is now this thing good to go? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 15:17:12 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 15:17:12 -0000 Subject: [GHC] #11298: Implicit call stack empty in instance declarations In-Reply-To: <047.eab5c810a3c4684688e2a4bb98536a85@haskell.org> References: <047.eab5c810a3c4684688e2a4bb98536a85@haskell.org> Message-ID: <062.5aa8f6d34aa387d50fc5ea7edef31d16@haskell.org> #11298: Implicit call stack empty in instance declarations -------------------------------------+------------------------------------- Reporter: pikajude | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 7.11 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by gridaphobe): FYI, we removed the inference of CallStacks so the resolution is that all of these examples should produce an empty CallStack. Adding an explicit signature, eg {{{ fooHelper :: ?loc :: CallStack => String fooHelper = prettyCallStack ?loc instance Foo () where foo () = fooHelper }}} will produce a singleton CallStack with the call-site of `fooHelper` inside `foo`. (Also, we're hiding the Implicit Parameter now and may move to a custom CallStack constraint in the future, so I'd suggest using the new `HasCallStack` synonym) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 15:46:46 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 15:46:46 -0000 Subject: [GHC] #11792: Optimised unsafe FFI call can get wrong argument Message-ID: <045.c2134c5a0111e06b4c39b9b8cba0b1db@haskell.org> #11792: Optimised unsafe FFI call can get wrong argument -------------------------------------+------------------------------------- Reporter: Szunti | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: Incorrect result Unknown/Multiple | at runtime Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Attached a simple test case. It should print 7457, but the C function is called with 0 as the third argument. If I compile with -O0 or omit the unsafe keyword in the FFI import it works as it should. In gdb disassembly looks to me as edx (the place for third argument on 64-bit) is set to 7457, then the opaquify is inlined, but it doesn't preserve edx and then third_arg is called with the zeroed edx. ---------------- Specs ------------- 64-bit Archlinux with arch-haskell repo gcc -v: {{{ Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/lto- wrapper Target: x86_64-unknown-linux-gnu Configured with: /build/gcc-multilib/src/gcc-5-20160209/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with- bugurl=https://bugs.archlinux.org/ --enable- languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable- threads=posix --enable-libmpx --with-system-zlib --with-isl --enable- __cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install- libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release Thread model: posix gcc version 5.3.0 (GCC) }}} ghc compile output: {{{ Glasgow Haskell Compiler, Version 7.10.3, stage 2 booted by GHC version 7.10.3 Using binary package database: /usr/lib/ghc-7.10.3/package.conf.d/package.cache wired-in package ghc-prim mapped to ghc- prim-0.4.0.0-6cdc86811872333585fa98756aa7c51e wired-in package integer-gmp mapped to integer- gmp-1.0.0.0-3c8c40657a9870f5c33be17496806d8d wired-in package base mapped to base-4.8.2.0-0d6d1084fbc041e1cded9228e80e264d wired-in package rts mapped to builtin_rts wired-in package template-haskell mapped to template- haskell-2.10.0.0-3c4cb52230f347282af9b2817f013181 wired-in package ghc mapped to ghc-7.10.3-3a39f8f970ff545623196002970730d1 wired-in package dph-seq not found. wired-in package dph-par not found. Hsc static flags: wired-in package ghc-prim mapped to ghc- prim-0.4.0.0-6cdc86811872333585fa98756aa7c51e wired-in package integer-gmp mapped to integer- gmp-1.0.0.0-3c8c40657a9870f5c33be17496806d8d wired-in package base mapped to base-4.8.2.0-0d6d1084fbc041e1cded9228e80e264d wired-in package rts mapped to builtin_rts wired-in package template-haskell mapped to template- haskell-2.10.0.0-3c4cb52230f347282af9b2817f013181 wired-in package ghc mapped to ghc-7.10.3-3a39f8f970ff545623196002970730d1 wired-in package dph-seq not found. wired-in package dph-par not found. *** Chasing dependencies: Chasing modules from: *Main.hs Stable obj: [] Stable BCO: [] Ready for upsweep [NONREC ModSummary { ms_hs_date = 2016-04-05 14:24:20.801997492 UTC ms_mod = Main, ms_textual_imps = [import (implicit) Prelude, import Data.Word] ms_srcimps = [] }] *** Deleting temp files: Deleting: compile: input file Main.hs Created temporary directory: /tmp/ghc1541_0 *** Checking old interface for Main: [1 of 1] Compiling Main ( Main.hs, Main.o ) *** Parser: *** Renamer/typechecker: *** Desugar: Result size of Desugar (after optimization) = {terms: 317, types: 387, coercions: 3} *** Core Linted result of Desugar (after optimization): *** Simplifier: Result size of Simplifier iteration=1 = {terms: 261, types: 290, coercions: 14} *** Core Linted result of Simplifier: Result size of Simplifier iteration=2 = {terms: 216, types: 262, coercions: 18} *** Core Linted result of Simplifier: Result size of Simplifier = {terms: 216, types: 262, coercions: 18} *** Core Linted result of Simplifier: *** Specialise: Result size of Specialise = {terms: 216, types: 262, coercions: 18} *** Core Linted result of Specialise: *** Float out(FOS {Lam = Just 0, Consts = True, OverSatApps = False}): Result size of Float out(FOS {Lam = Just 0, Consts = True, OverSatApps = False}) = {terms: 274, types: 305, coercions: 18} *** Core Linted result of Float out(FOS {Lam = Just 0, Consts = True, OverSatApps = False}): *** Simplifier: Result size of Simplifier iteration=1 = {terms: 407, types: 388, coercions: 70} *** Core Linted result of Simplifier: Result size of Simplifier iteration=2 = {terms: 463, types: 375, coercions: 25} *** Core Linted result of Simplifier: Result size of Simplifier = {terms: 430, types: 362, coercions: 25} *** Core Linted result of Simplifier: *** Simplifier: Result size of Simplifier iteration=1 = {terms: 426, types: 363, coercions: 25} *** Core Linted result of Simplifier: Result size of Simplifier = {terms: 426, types: 363, coercions: 25} *** Core Linted result of Simplifier: *** Simplifier: Result size of Simplifier iteration=1 = {terms: 310, types: 291, coercions: 25} *** Core Linted result of Simplifier: Result size of Simplifier iteration=2 = {terms: 248, types: 217, coercions: 25} *** Core Linted result of Simplifier: Result size of Simplifier iteration=3 = {terms: 336, types: 242, coercions: 25} *** Core Linted result of Simplifier: Result size of Simplifier = {terms: 336, types: 242, coercions: 25} *** Core Linted result of Simplifier: *** Float inwards: Result size of Float inwards = {terms: 336, types: 242, coercions: 25} *** Core Linted result of Float inwards: *** Called arity analysis: Result size of Called arity analysis = {terms: 336, types: 242, coercions: 25} *** Core Linted result of Called arity analysis: *** Simplifier: Result size of Simplifier = {terms: 336, types: 242, coercions: 25} *** Core Linted result of Simplifier: *** Demand analysis: Result size of Demand analysis = {terms: 336, types: 242, coercions: 25} *** Core Linted result of Demand analysis: *** Worker Wrapper binds: Result size of Worker Wrapper binds = {terms: 369, types: 283, coercions: 25} *** Core Linted result of Worker Wrapper binds: *** Simplifier: Result size of Simplifier iteration=1 = {terms: 354, types: 266, coercions: 25} *** Core Linted result of Simplifier: Result size of Simplifier = {terms: 354, types: 266, coercions: 25} *** Core Linted result of Simplifier: *** Float out(FOS {Lam = Just 0, Consts = True, OverSatApps = True}): Result size of Float out(FOS {Lam = Just 0, Consts = True, OverSatApps = True}) = {terms: 356, types: 267, coercions: 25} *** Core Linted result of Float out(FOS {Lam = Just 0, Consts = True, OverSatApps = True}): *** Common sub-expression: Result size of Common sub-expression = {terms: 356, types: 267, coercions: 25} *** Core Linted result of Common sub-expression: *** Float inwards: Result size of Float inwards = {terms: 356, types: 267, coercions: 25} *** Core Linted result of Float inwards: *** Simplifier: Result size of Simplifier = {terms: 356, types: 267, coercions: 25} *** Core Linted result of Simplifier: *** Tidy Core: Result size of Tidy Core = {terms: 356, types: 267, coercions: 25} *** Core Linted result of Tidy Core: writeBinIface: 18 Names writeBinIface: 81 dict entries *** CorePrep: Result size of CorePrep = {terms: 654, types: 379, coercions: 25} *** Core Linted result of CorePrep: *** Stg2Stg: *** CodeGen: *** Assembler: /usr/bin/gcc -fno-stack-protector -DTABLES_NEXT_TO_CODE -I. -x assembler -c /tmp/ghc1541_0/ghc_2.s -o Main.o Upsweep completely successful. *** Deleting temp files: Deleting: /tmp/ghc1541_0/ghc_3.c /tmp/ghc1541_0/ghc_2.s /tmp/ghc1541_0/ghc_1.s Warning: deleting non-existent /tmp/ghc1541_0/ghc_3.c Warning: deleting non-existent /tmp/ghc1541_0/ghc_1.s link: linkables are ... LinkableM (2016-04-05 15:42:11.288210053 UTC) Main [DotO Main.o] Linking Main ... *** C Compiler: /usr/bin/gcc -fno-stack-protector -DTABLES_NEXT_TO_CODE -c /tmp/ghc1541_0/ghc_4.c -o /tmp/ghc1541_0/ghc_5.o -I/usr/lib/ghc-7.10.3/include *** C Compiler: /usr/bin/gcc -fno-stack-protector -DTABLES_NEXT_TO_CODE -c /tmp/ghc1541_0/ghc_7.s -o /tmp/ghc1541_0/ghc_8.o -I/usr/lib/ghc-7.10.3/include *** Linker: /usr/bin/gcc -fno-stack-protector -DTABLES_NEXT_TO_CODE '-Wl,--hash- size=31' -Wl,--reduce-memory-overheads -Wl,--no-as-needed -o Main Main.o Test.o -L/usr/lib/ghc-7.10.3/base_HQfYBxpPvuw8OunzQu6JGM -L/usr/lib/ghc-7.10.3/integ_2aU3IZNMF9a7mQ0OzsZ0dS -L/usr/lib/ghc-7.10.3/ghcpr_8TmvWUcS1U1IKHT0levwg3 -L/usr/lib/ghc-7.10.3/rts /tmp/ghc1541_0/ghc_5.o /tmp/ghc1541_0/ghc_8.o -Wl,-u,ghczmprim_GHCziTypes_Izh_static_info -Wl,-u,ghczmprim_GHCziTypes_Czh_static_info -Wl,-u,ghczmprim_GHCziTypes_Fzh_static_info -Wl,-u,ghczmprim_GHCziTypes_Dzh_static_info -Wl,-u,base_GHCziPtr_Ptr_static_info -Wl,-u,ghczmprim_GHCziTypes_Wzh_static_info -Wl,-u,base_GHCziInt_I8zh_static_info -Wl,-u,base_GHCziInt_I16zh_static_info -Wl,-u,base_GHCziInt_I32zh_static_info -Wl,-u,base_GHCziInt_I64zh_static_info -Wl,-u,base_GHCziWord_W8zh_static_info -Wl,-u,base_GHCziWord_W16zh_static_info -Wl,-u,base_GHCziWord_W32zh_static_info -Wl,-u,base_GHCziWord_W64zh_static_info -Wl,-u,base_GHCziStable_StablePtr_static_info -Wl,-u,ghczmprim_GHCziTypes_Izh_con_info -Wl,-u,ghczmprim_GHCziTypes_Czh_con_info -Wl,-u,ghczmprim_GHCziTypes_Fzh_con_info -Wl,-u,ghczmprim_GHCziTypes_Dzh_con_info -Wl,-u,base_GHCziPtr_Ptr_con_info -Wl,-u,base_GHCziPtr_FunPtr_con_info -Wl,-u,base_GHCziStable_StablePtr_con_info -Wl,-u,ghczmprim_GHCziTypes_False_closure -Wl,-u,ghczmprim_GHCziTypes_True_closure -Wl,-u,base_GHCziPack_unpackCString_closure -Wl,-u,base_GHCziIOziException_stackOverflow_closure -Wl,-u,base_GHCziIOziException_heapOverflow_closure -Wl,-u,base_ControlziExceptionziBase_nonTermination_closure -Wl,-u,base_GHCziIOziException_blockedIndefinitelyOnMVar_closure -Wl,-u,base_GHCziIOziException_blockedIndefinitelyOnSTM_closure -Wl,-u,base_GHCziIOziException_allocationLimitExceeded_closure -Wl,-u,base_ControlziExceptionziBase_nestedAtomically_closure -Wl,-u,base_GHCziEventziThread_blockedOnBadFD_closure -Wl,-u,base_GHCziWeak_runFinalizzerBatch_closure -Wl,-u,base_GHCziTopHandler_flushStdHandles_closure -Wl,-u,base_GHCziTopHandler_runIO_closure -Wl,-u,base_GHCziTopHandler_runNonIO_closure -Wl,-u,base_GHCziConcziIO_ensureIOManagerIsRunning_closure -Wl,-u,base_GHCziConcziIO_ioManagerCapabilitiesChanged_closure -Wl,-u,base_GHCziConcziSync_runSparks_closure -Wl,-u,base_GHCziConcziSignal_runHandlersPtr_closure -lHSbase-4.8.2.0-HQfYBxpPvuw8OunzQu6JGM -lHSinteger- gmp-1.0.0.0-2aU3IZNMF9a7mQ0OzsZ0dS -lHSghc- prim-0.4.0.0-8TmvWUcS1U1IKHT0levwg3 -lHSrts -lCffi -lgmp -lm -lrt -ldl link: done *** Deleting temp files: Deleting: /tmp/ghc1541_0/ghc_10.rsp /tmp/ghc1541_0/ghc_9.rsp /tmp/ghc1541_0/ghc_8.o /tmp/ghc1541_0/ghc_7.s /tmp/ghc1541_0/ghc_6.rsp /tmp/ghc1541_0/ghc_5.o /tmp/ghc1541_0/ghc_4.c *** Deleting temp dirs: Deleting: /tmp/ghc1541_0 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 15:47:26 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 15:47:26 -0000 Subject: [GHC] #11792: Optimised unsafe FFI call can get wrong argument In-Reply-To: <045.c2134c5a0111e06b4c39b9b8cba0b1db@haskell.org> References: <045.c2134c5a0111e06b4c39b9b8cba0b1db@haskell.org> Message-ID: <060.7e489fcdec8ba8f1e2f1621431a0030e@haskell.org> #11792: Optimised unsafe FFI call can get wrong argument -------------------------------------+------------------------------------- Reporter: Szunti | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Szunti): * Attachment "evil-bug.tar.gz" added. Simple test case -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 18:01:27 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 18:01:27 -0000 Subject: [GHC] #11793: Confusing type error from constrained class method Message-ID: <049.66d83c7f7ec1f2be250a76e4769b49e0@haskell.org> #11793: Confusing type error from constrained class method -------------------------------------+------------------------------------- Reporter: gridaphobe | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc2 Keywords: error-message | Operating System: Unknown/Multiple Architecture: | Type of failure: Incorrect Unknown/Multiple | warning at compile-time Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- {{{#!hs import GHC.Stack class Foo a where foo :: HasCallStack => a -> String instance Foo () where foo () = prettyCallStack callStack main = putStrLn (foo ()) }}} {{{ ~/S/ghc> ./inplace/bin/ghc-stage2 --make Foo.hs [1 of 1] Compiling Main ( Foo.hs, Foo.o ) Foo.hs:4:3: error: ? Constraint ?HasCallStack? in the type of ?foo? constrains only the class type variables Use ConstrainedClassMethods to allow it ? When checking the class method: foo :: forall a. (Foo a, HasCallStack) => a -> String In the class declaration for ?Foo? }}} The error says that `HasCallStack` constrains the class type variable `a`, which is incorrect. Is the error message supposed to be that `HasCallStack` '''should''' constrain the class type variable and nothing else? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 18:01:57 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 18:01:57 -0000 Subject: [GHC] #10598: DeriveAnyClass and GND don't work well together In-Reply-To: <043.eb0a3cc9875acc25d45d33a9b9c86b64@haskell.org> References: <043.eb0a3cc9875acc25d45d33a9b9c86b64@haskell.org> Message-ID: <058.77938eb44f9d7f18f8a44dd8ae3d26d0@haskell.org> #10598: DeriveAnyClass and GND don't work well together -------------------------------------+------------------------------------- Reporter: osa1 | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.2.1 Component: Compiler | Version: 7.11 Resolution: | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: => 8.2.1 @@ -5,1 +5,1 @@ - {{{ + {{{#!hs New description: I think we definitely have a bug here, but I'm not sure what it really is. Here's the program: {{{#!hs newtype MyMaybe a = MyMaybe (Maybe a) deriving (Functor, Show) main = print $ MyMaybe $ Just (10 :: Int) }}} I'm using GHC 7.10.1. {{{ ? deriveany_bug ghc --make -fforce-recomp Test.hs -XDeriveAnyClass -XGeneralizedNewtypeDeriving [1 of 1] Compiling Main ( Test.hs, Test.o ) Test.hs:2:13: Can't make a derived instance of ?Functor MyMaybe? (even with cunning newtype deriving): You need DeriveFunctor to derive an instance for this class Try GeneralizedNewtypeDeriving for GHC's newtype-deriving extension In the newtype declaration for ?MyMaybe? }}} Just to try, changing argument order: {{{ ? deriveany_bug ghc --make -fforce-recomp Test.hs -XGeneralizedNewtypeDeriving -XDeriveAnyClass [1 of 1] Compiling Main ( Test.hs, Test.o ) Test.hs:2:13: Can't make a derived instance of ?Functor MyMaybe? (even with cunning newtype deriving): You need DeriveFunctor to derive an instance for this class Try GeneralizedNewtypeDeriving for GHC's newtype-deriving extension In the newtype declaration for ?MyMaybe? }}} It works fine if I remove `DeriveAnyClass`: {{{ ? deriveany_bug ghc --make -fforce-recomp Test.hs -XGeneralizedNewtypeDeriving [1 of 1] Compiling Main ( Test.hs, Test.o ) Linking Test ... }}} GHC HEAD is failing in exactly the same way. User manual is saying this in 7.5.6: > In case you try to derive some class on a newtype, and -XGeneralizedNewtypeDeriving is also on, -XDeriveAnyClass takes precedence. But then why is it telling me to enable `GeneralizedNewtypeDeriving` in the error message? Even if I already enabled it? Also, maybe it could try `GND` when `DeriveAnyClass` fails? Because the doc is saying `DeriveAnyClass` has precedence but doesn't specify what happens if it fails. EDIT: I'd like to work on this myself if experts here help me figuring the right behavior here. -- Comment: I think we should really try to fix this for 8.2. Currently `DeriveAnyClass` is nearly useless as in most cases I'd much rather give it up than `GeneralizedNewtypeDeriving`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 19:59:14 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 19:59:14 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.27ccb57b3c98196c53dfd38bb8ce9069@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): > Should I land this thing (CSE improvements) now already? I guess not before you have told me whether this change in T7116 is benign or not: {{{ ==================== Tidy Core ==================== -Result size of Tidy Core = {terms: 32, types: 17, coercions: 0} +Result size of Tidy Core = {terms: 46, types: 23, coercions: 0} -- RHS size: {terms: 2, types: 0, coercions: 0} T7116.$trModule2 :: GHC.Types.TrName @@ -49,7 +49,7 @@ GHC.Types.D# (GHC.Prim.+## x1 x1) } --- RHS size: {terms: 1, types: 0, coercions: 0} +-- RHS size: {terms: 8, types: 3, coercions: 0} dl :: Double -> Double [GblId, Arity=1, @@ -62,7 +62,11 @@ case x of _ [Occ=Dead] { GHC.Types.D# y -> GHC.Types.D# (GHC.Prim.+## y y) }}] -dl = dr +dl = + \ (x :: Double) -> + case x of _ [Occ=Dead] { GHC.Types.D# y -> + GHC.Types.D# (GHC.Prim.+## y y) + } -- RHS size: {terms: 8, types: 3, coercions: 0} fr :: Float -> Float @@ -83,7 +87,7 @@ GHC.Types.F# (GHC.Prim.plusFloat# x1 x1) } --- RHS size: {terms: 1, types: 0, coercions: 0} +-- RHS size: {terms: 8, types: 3, coercions: 0} fl :: Float -> Float [GblId, Arity=1, @@ -96,5 +100,9 @@ case x of _ [Occ=Dead] { GHC.Types.F# y -> GHC.Types.F# (GHC.Prim.plusFloat# y y) }}] -fl = fr +fl = + \ (x :: Float) -> + case x of _ [Occ=Dead] { GHC.Types.F# y -> + GHC.Types.F# (GHC.Prim.plusFloat# y y) + } *** unexpected failure for T7116(normal) }}} That ticket was bout strength reduction, and that is still happening. But it there seems to be some CSE lost. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 5 23:57:31 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 05 Apr 2016 23:57:31 -0000 Subject: [GHC] #11523: Infinite Loop when mixing UndecidableSuperClasses and the class/instance constraint synonym trick. In-Reply-To: <045.d4380bf1adf1df9e0c96b4a3ede582ad@haskell.org> References: <045.d4380bf1adf1df9e0c96b4a3ede582ad@haskell.org> Message-ID: <060.1e4f4d0236e1bb2f0e0eaaa3dd30ab67@haskell.org> #11523: Infinite Loop when mixing UndecidableSuperClasses and the class/instance constraint synonym trick. -------------------------------------+------------------------------------- Reporter: ekmett | Owner: Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler (Type | Version: 8.0.1-rc1 checker) | Keywords: Resolution: | UndecidableSuperClasses Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | polykinds/T11523 Blocked By: | Blocking: Related Tickets: #11480 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by ekmett): I've yet to figure out why the shorter example passes, but the longer, which doesn't seem to change the part that spins forever fails. No objection to moving this out to 8.2 though. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 01:39:20 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 01:39:20 -0000 Subject: [GHC] #11794: Switch to LLVM 3.8 Message-ID: <044.5919f8519f8a0f8245fba031199e2674@haskell.org> #11794: Switch to LLVM 3.8 -------------------------------------+------------------------------------- Reporter: erikd | Owner: erikd Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 (LLVM) | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- LLVM 8.0 has been released and I (@erikd) already have patches for make GHC compile with LLVM 3.8. This ticket is just a placeholder so that when GHCHQ want to move to the new version, they just have to let me know in this ticket and I'll prepare the patch. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 01:40:49 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 01:40:49 -0000 Subject: [GHC] #11794: Switch to LLVM 3.8 In-Reply-To: <044.5919f8519f8a0f8245fba031199e2674@haskell.org> References: <044.5919f8519f8a0f8245fba031199e2674@haskell.org> Message-ID: <059.e6b65a993240675296d27e2ca9086df6@haskell.org> #11794: Switch to LLVM 3.8 -------------------------------------+------------------------------------- Reporter: erikd | Owner: erikd Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (LLVM) | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by erikd: @@ -1,1 +1,1 @@ - LLVM 8.0 has been released and I (@erikd) already have patches for make + LLVM 3.8 has been released and I (@erikd) already have patches for make New description: LLVM 3.8 has been released and I (@erikd) already have patches for make GHC compile with LLVM 3.8. This ticket is just a placeholder so that when GHCHQ want to move to the new version, they just have to let me know in this ticket and I'll prepare the patch. -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 04:11:43 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 04:11:43 -0000 Subject: [GHC] #11149: Unify fixity/associativity of <>-ish pretty-printing operators In-Reply-To: <042.a660c98bcc278791754b9d72890aec37@haskell.org> References: <042.a660c98bcc278791754b9d72890aec37@haskell.org> Message-ID: <057.b35bbe4a83695ac07f66567ed3f519d3@haskell.org> #11149: Unify fixity/associativity of <>-ish pretty-printing operators -------------------------------------+------------------------------------- Reporter: hvr | Owner: Type: task | Status: new Priority: normal | Milestone: 8.2.1 Component: Compiler | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by erikd): * cc: erikd (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 07:07:22 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 07:07:22 -0000 Subject: [GHC] #11523: Infinite Loop when mixing UndecidableSuperClasses and the class/instance constraint synonym trick. In-Reply-To: <045.d4380bf1adf1df9e0c96b4a3ede582ad@haskell.org> References: <045.d4380bf1adf1df9e0c96b4a3ede582ad@haskell.org> Message-ID: <060.2f6de4e04a3c0607687c4dcf11757323@haskell.org> #11523: Infinite Loop when mixing UndecidableSuperClasses and the class/instance constraint synonym trick. -------------------------------------+------------------------------------- Reporter: ekmett | Owner: Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler (Type | Version: 8.0.1-rc1 checker) | Keywords: Resolution: | UndecidableSuperClasses Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | polykinds/T11523 Blocked By: | Blocking: Related Tickets: #11480 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): > I've yet to figure out why the shorter example passes, but the longer, which doesn't seem to change the part that spins forever fails. I explain precisely this in comment:14 above. You (implicitly) claim that there is a finite number of superclasses. I claim the contrary. We can't both be right :-). Maybe there's a bug in the example `Categories.h`? That's my current belief. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 08:38:35 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 08:38:35 -0000 Subject: [GHC] #11794: Switch to LLVM 3.8 In-Reply-To: <044.5919f8519f8a0f8245fba031199e2674@haskell.org> References: <044.5919f8519f8a0f8245fba031199e2674@haskell.org> Message-ID: <059.874d67e65d1952c8903167bdce2cc5da@haskell.org> #11794: Switch to LLVM 3.8 -------------------------------------+------------------------------------- Reporter: erikd | Owner: erikd Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (LLVM) | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Debian has no llvm-3.8 yet; you can check the status at https://packages.debian.org/search?keywords=llvm-dev -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 08:58:54 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 08:58:54 -0000 Subject: [GHC] #11795: Performance issues with replicateM_ Message-ID: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> #11795: Performance issues with replicateM_ -------------------------------------+------------------------------------- Reporter: snoyberg | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: | Version: 7.10.3 libraries/base | Keywords: | Operating System: MacOS X Architecture: x86_64 | Type of failure: Runtime (amd64) | performance bug Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- When working on optimizing a program by minimizing allocations, I can into an issue with `replicateM_`. Consider the following code {{{#!hs import Control.Monad (replicateM_) import Foreign.C.String (withCString) import Foreign.Storable (peek) main :: IO () main = withCString "foo" $ replicateM_ 10000000 . peek }}} When I run this program, I get: 160,042,656 bytes allocated in the heap The result is the same whether I compile with `-O0`, `-O`, or `-O2`. And as expected, the total allocation increases or decreases based on the numbers of times I replicate the action. On the other hand, replacing `replicateM_` with a hand-written version makes the total allocations for the program only 42KB, and does not increase with the numbers of replications. {{{#!hs replicateM_ :: Monad m => Int -> m a -> m () replicateM_ cnt0 f = loop cnt0 where loop cnt | cnt <= 0 = return () | otherwise = f >> loop (cnt - 1) }}} By contrast, `Control.Monad.replicateM_` looks like: {{{#!hs replicateM_ :: (Monad m) => Int -> m a -> m () {-# INLINEABLE replicateM_ #-} {-# SPECIALISE replicateM_ :: Int -> IO a -> IO () #-} {-# SPECIALISE replicateM_ :: Int -> Maybe a -> Maybe () #-} replicateM_ n x = sequence_ (replicate n x) }}} I can't see an advantage to this implementation over the more direct implementation I've provided above. Unless there are objections, I'll send a patch to switch the implementation. (Since master already uses `Applicative`, I'll make the relevant updates to generalize the function signature too.) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 08:59:16 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 08:59:16 -0000 Subject: [GHC] #10914: Bad symbol resolution on Darwin when using DYLD_FORCE_FLAT_NAMESPACE=1 In-Reply-To: <047.9268eb7f03934b85eb39681f4890afc7@haskell.org> References: <047.9268eb7f03934b85eb39681f4890afc7@haskell.org> Message-ID: <062.a04115f12b89719ec548639fdc00a386@haskell.org> #10914: Bad symbol resolution on Darwin when using DYLD_FORCE_FLAT_NAMESPACE=1 -------------------------------------+------------------------------------- Reporter: jacereda | Owner: Type: bug | Status: new Priority: high | Milestone: Component: Runtime System | Version: 7.10.2 (Linker) | Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 | (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by ak3n): There is no such error with GHC 7.10.3 and Mac OS X 10.11.4. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 09:00:18 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 09:00:18 -0000 Subject: [GHC] #11795: Performance issues with replicateM_ In-Reply-To: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> References: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> Message-ID: <062.0230ca9c060046d876a4b6857654bc15@haskell.org> #11795: Performance issues with replicateM_ -------------------------------------+------------------------------------- Reporter: snoyberg | Owner: snoyberg Type: bug | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Runtime | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by snoyberg): * owner: => snoyberg -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 09:04:34 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 09:04:34 -0000 Subject: [GHC] #1168: Optimisation sometimes decreases sharing in IO code In-Reply-To: <047.1e9bce153303809272446b6c0aede02d@haskell.org> References: <047.1e9bce153303809272446b6c0aede02d@haskell.org> Message-ID: <062.b399b697c8ab3f235c9a9cbc722f4b2a@haskell.org> #1168: Optimisation sometimes decreases sharing in IO code -------------------------------------+------------------------------------- Reporter: simonmar | Owner: Type: bug | Status: new Priority: normal | Milestone: ? Component: Compiler | Version: 6.6 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Runtime | Test Case: performance bug | nofib/spectral/calendar Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): See #11795 for another example. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 09:07:14 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 09:07:14 -0000 Subject: [GHC] #11795: Performance issues with replicateM_ In-Reply-To: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> References: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> Message-ID: <062.16a753f66bff221fc4f2e5b19c547ffc@haskell.org> #11795: Performance issues with replicateM_ -------------------------------------+------------------------------------- Reporter: snoyberg | Owner: snoyberg Type: bug | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Runtime | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Michael, this is (sadly) a well known issue. #1168 has a list of related tickets, and #9388 has ideas and preliminary work on how to limit the scope of the hack. I think it'd be fine to switch implementations of `replicateM_`, but can you put a prominent notice on the master ticket #1168 so that whoever looks into it doesn't think "oh the problem has gone away". Your fix will (helpfully) cure the symptom but not the disease. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 09:08:02 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 09:08:02 -0000 Subject: [GHC] #11271: Costly let binding gets duplicated in IO action value In-Reply-To: <050.e8ad7ff9004503147bb3eb1eeb608b8c@haskell.org> References: <050.e8ad7ff9004503147bb3eb1eeb608b8c@haskell.org> Message-ID: <065.fb51d10b3d916312b27f91ca8ca48a50@haskell.org> #11271: Costly let binding gets duplicated in IO action value -------------------------------------+------------------------------------- Reporter: dramforever | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): See #1168 which is the master ticket for this problem -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 09:08:27 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 09:08:27 -0000 Subject: [GHC] #1168: Optimisation sometimes decreases sharing in IO code In-Reply-To: <047.1e9bce153303809272446b6c0aede02d@haskell.org> References: <047.1e9bce153303809272446b6c0aede02d@haskell.org> Message-ID: <062.359537a0aa18f7b93ad6bbc146a7e499@haskell.org> #1168: Optimisation sometimes decreases sharing in IO code -------------------------------------+------------------------------------- Reporter: simonmar | Owner: Type: bug | Status: new Priority: normal | Milestone: ? Component: Compiler | Version: 6.6 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Runtime | Test Case: performance bug | nofib/spectral/calendar Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): See #11271 for another example. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 09:08:54 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 09:08:54 -0000 Subject: [GHC] #10401: state hack-related regression In-Reply-To: <047.26c3bbc3925b4e36211925d08abc48c0@haskell.org> References: <047.26c3bbc3925b4e36211925d08abc48c0@haskell.org> Message-ID: <062.33506e406ee8ba3858a13e08a646181b@haskell.org> #10401: state hack-related regression -------------------------------------+------------------------------------- Reporter: rwbarton | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): See #1168, the master ticket. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 09:09:11 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 09:09:11 -0000 Subject: [GHC] #1168: Optimisation sometimes decreases sharing in IO code In-Reply-To: <047.1e9bce153303809272446b6c0aede02d@haskell.org> References: <047.1e9bce153303809272446b6c0aede02d@haskell.org> Message-ID: <062.50eaea1903b842f2a40c01c873f542eb@haskell.org> #1168: Optimisation sometimes decreases sharing in IO code -------------------------------------+------------------------------------- Reporter: simonmar | Owner: Type: bug | Status: new Priority: normal | Milestone: ? Component: Compiler | Version: 6.6 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Runtime | Test Case: performance bug | nofib/spectral/calendar Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): See #10401 too -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 09:48:22 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 09:48:22 -0000 Subject: [GHC] #11719: Cannot use higher-rank kinds with type families In-Reply-To: <047.7d1567263c03c83c3feb5d4cd6d08b50@haskell.org> References: <047.7d1567263c03c83c3feb5d4cd6d08b50@haskell.org> Message-ID: <062.4b747cf9bc144342fa1517dc7221f614@haskell.org> #11719: Cannot use higher-rank kinds with type families -------------------------------------+------------------------------------- Reporter: ocharles | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.0.1-rc2 checker) | Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | dependent/should_compile/T11719 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by ocharles): I see this ticket is now marked as "fixed", but the original code example above doesn't type check under this change (as Richard's commit message mentions). Should this ticket be re-opened, or should I open a new ticket? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 10:06:16 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 10:06:16 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.396ea2eb290da05bbd268951224b3607@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Yes this is OK. It comes from the fast that previously we were commoning up two wrappers, but now we don't because we are paranoid about CSEing things with unfoldings. Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 12:33:03 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 12:33:03 -0000 Subject: [GHC] #11795: Performance issues with replicateM_ In-Reply-To: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> References: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> Message-ID: <062.cdb3811c83e561db2cc0339164831693@haskell.org> #11795: Performance issues with replicateM_ -------------------------------------+------------------------------------- Reporter: snoyberg | Owner: snoyberg Type: bug | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Runtime | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by snoyberg): Thanks for the quick response Simon. I'm definitely not deeply familiar with the state hack, but from what I can see the issue I'm reporting here may be orthogonal. Specifically, if I pass in `-fno-state-hack`, I still see the large-allocation behavior. I believe the issue here is twofold: * The specialize pragma is getting the way of inlining firing * The behavior of generating and consuming a list is less efficient than the simpler code I've provided here I'll be happy to add comments to any other issues as you see fit, but I don't want to add confusion to an already complicated issue if this is in fact separate from the state hack. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 12:39:00 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 12:39:00 -0000 Subject: [GHC] #11795: Performance issues with replicateM_ In-Reply-To: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> References: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> Message-ID: <062.1fdac9c8422760f1768df28da3784e01@haskell.org> #11795: Performance issues with replicateM_ -------------------------------------+------------------------------------- Reporter: snoyberg | Owner: snoyberg Type: bug | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Runtime | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by snoyberg): Actually, it would appear that Ben already modified the implementation of `replicateM_` to something different than I saw: {{{#!hs replicateM_ 0 _ = pure () replicateM_ n x = x *> replicateM_ (pred n) x }}} The implementation I've given here still seems to perform better, due to usage of the worker/wrapper transform. It also keeps the semantics of the current version in GHC 7.10.3 for negative values. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 12:42:03 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 12:42:03 -0000 Subject: [GHC] #11770: Demand analysis: Wrong one-shot annotation due to fixed-point iteration In-Reply-To: <046.967e6cf10d023cf3fe98f3cad192e65a@haskell.org> References: <046.967e6cf10d023cf3fe98f3cad192e65a@haskell.org> Message-ID: <061.58e5bb8f9bd97d0ff439683633ebb70f@haskell.org> #11770: Demand analysis: Wrong one-shot annotation due to fixed-point iteration -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2085 Wiki Page: | -------------------------------------+------------------------------------- Changes (by nomeata): * status: new => patch * differential: Phab:D2070 => Phab:D2085 Comment: Ok, I found that the occurrence analyzer was not reliably setting OneShot annotations, and fixed it, and now there are no significatn performance changes at all.. Phew. So this seems to be safe to apply. I pushed it to phab (Phab:D2085) for review. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 12:46:05 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 12:46:05 -0000 Subject: [GHC] #11796: Warn about unwanted instances in a modular way Message-ID: <046.91e31cdcc0e901faacb417cf9f6c616f@haskell.org> #11796: Warn about unwanted instances in a modular way -------------------------------------+------------------------------------- Reporter: Lemming | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- I like to propose the following way to warn about instances that are unwanted by some programmers. First step is to mark the instances at their definition site like so: {{{#!hs {-# WARN_INSTANCE tuple #-} instance Foldable ((,) a) where ... {-# WARN_INSTANCE tuple #-} instance Functor ((,) a) where ... {-# WARN_INSTANCE tuple #-} instance Foldable ((,,) a b) where ... {-# WARN_INSTANCE tuple #-} instance Functor ((,,) a b) where ... }}} This way, all the above instances are collected in an instance group labelled `tuple`. At the use sites we introduce a GHC warning option like `-fwarn-instance=tuple`. This warns about any place where any of the `tuple` instances is used. We can either place {{{ GHC-Options: -fwarn-instance=tuple }}} in a Cabal package description in order to issue warnings in a whole package or we can put {{{ {-# OPTIONS_GHC -fwarn-instance=tuple #-} }}} at the top of a module in order to enable the warning per module. Another candidate for an instance group might be `numeric` for numeric instances of functions and tuples in the `NumInstances` package. What does it mean to use an instance? I would say, if omitting an `instance X Y` would lead to a "missing instance" type error at place Z in a module, then `instance X Y` is used at place Z. There might be an even more restrictive option like `-fforbid- instance=tuple`. This would not only warn about an instance usage, but it would cause a type error. Essentially it should treat all `tuple` instances as if they were not defined. (Other instances might depend on `tuple` instances and if the `tuple` instances weren't there the compiler would not even reach the current module. I do not know, whether this case needs special treatment. We might require that any instance depending on `tuple` must be added to the `tuple` group as well or it might be added automatically.) The advantage of a type error is that we see all problems from `tuple` instances also in the presence of other type errors. Warnings would only show up after a module is otherwise type correct. This solution requires cooperation of the instance implementor. Would that work in practice? Otherwise we must think about ways to declare instance groups independently from the instance declaration and we get the problem of bringing the instance group names into the scope of the importing module. A separate discussion must be held on whether `-fwarn-instance=tuple` should be part of `-Wall`. I think that people should be warned about `tuple` instances early because they won't expect that there is a trap when using `length` and `maximum` and so on. One might also think about generalizations, e.g. whether {{{ {-# WARN_INSTANCE tuple, functor #-} }}} should be allowed in order to put an instance in several groups or whether there should be a way to compose a group from subgroups. Another topic would be a form of instance group disambiguation. Instance groups might be qualified with module or package names. I think package names are more appropriate, like so `-fwarn-instance=base:tuple`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 12:53:59 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 12:53:59 -0000 Subject: [GHC] #11796: Warn about unwanted instances in a modular way In-Reply-To: <046.91e31cdcc0e901faacb417cf9f6c616f@haskell.org> References: <046.91e31cdcc0e901faacb417cf9f6c616f@haskell.org> Message-ID: <061.84f4c15bdf9b2c9dad38d0c17e3dda65@haskell.org> #11796: Warn about unwanted instances in a modular way -------------------------------------+------------------------------------- Reporter: Lemming | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): What's the use-case for this? Is there a community of users that want it? What if two different library authors both happened to choose the same string for their "warn-instance" string? Thanks -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 12:57:21 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 12:57:21 -0000 Subject: [GHC] #11795: Performance issues with replicateM_ In-Reply-To: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> References: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> Message-ID: <062.b9ac4c40db804dd9f698fb43544b0241@haskell.org> #11795: Performance issues with replicateM_ -------------------------------------+------------------------------------- Reporter: snoyberg | Owner: snoyberg Type: bug | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Runtime | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2086 Wiki Page: | -------------------------------------+------------------------------------- Changes (by snoyberg): * differential: => Phab:D2086 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 13:08:28 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 13:08:28 -0000 Subject: [GHC] #11719: Cannot use higher-rank kinds with type families In-Reply-To: <047.7d1567263c03c83c3feb5d4cd6d08b50@haskell.org> References: <047.7d1567263c03c83c3feb5d4cd6d08b50@haskell.org> Message-ID: <062.b206a1c13baeb1b7868f8d8a34b8e524@haskell.org> #11719: Cannot use higher-rank kinds with type families -------------------------------------+------------------------------------- Reporter: ocharles | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.0.1-rc2 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | dependent/should_compile/T11719 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * status: closed => new * resolution: fixed => -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 13:09:26 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 13:09:26 -0000 Subject: [GHC] #11719: Cannot use higher-rank kinds with type families In-Reply-To: <047.7d1567263c03c83c3feb5d4cd6d08b50@haskell.org> References: <047.7d1567263c03c83c3feb5d4cd6d08b50@haskell.org> Message-ID: <062.7612df784ff9509f1ecaa32980944b19@haskell.org> #11719: Cannot use higher-rank kinds with type families -------------------------------------+------------------------------------- Reporter: ocharles | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.0.1-rc2 checker) | Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | dependent/should_compile/T11719 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * keywords: => TypeInType -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 13:11:02 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 13:11:02 -0000 Subject: [GHC] #10598: DeriveAnyClass and GND don't work well together In-Reply-To: <043.eb0a3cc9875acc25d45d33a9b9c86b64@haskell.org> References: <043.eb0a3cc9875acc25d45d33a9b9c86b64@haskell.org> Message-ID: <058.3927fc88fdb56a4a91c834ea0c072b6a@haskell.org> #10598: DeriveAnyClass and GND don't work well together -------------------------------------+------------------------------------- Reporter: osa1 | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.2.1 Component: Compiler | Version: 7.11 Resolution: | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): I this that maybe Ryan Scott, king of generics, may be able to lead on this? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 13:11:56 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 13:11:56 -0000 Subject: [GHC] #11796: Warn about unwanted instances in a modular way In-Reply-To: <046.91e31cdcc0e901faacb417cf9f6c616f@haskell.org> References: <046.91e31cdcc0e901faacb417cf9f6c616f@haskell.org> Message-ID: <061.9f9b079286969010728ca2a36eb5e2b8@haskell.org> #11796: Warn about unwanted instances in a modular way -------------------------------------+------------------------------------- Reporter: Lemming | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Lemming): It could resolve the long discussion on libraries mailing list about whether we want instances like Foldable (,) or not. With this warning we could both have the instances for those who prefer to use pairs for everything, but do not harm those who consider `length (2,3)` an error. See https://mail.haskell.org/pipermail/libraries/2016-February/026678.html . Conflicting "warn-instance" strings might be resolved with package qualification as I have mentioned in the last paragraph of the proposal. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 13:31:48 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 13:31:48 -0000 Subject: [GHC] #11793: Confusing type error from constrained class method In-Reply-To: <049.66d83c7f7ec1f2be250a76e4769b49e0@haskell.org> References: <049.66d83c7f7ec1f2be250a76e4769b49e0@haskell.org> Message-ID: <064.a5d7e62f778148d838915b51f18de00f@haskell.org> #11793: Confusing type error from constrained class method -------------------------------------+------------------------------------- Reporter: gridaphobe | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc2 Resolution: | Keywords: error-message Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): The original issue was this. Haskell has always allowed you to write {{{ class C a where foo :: forall b. Ord b => blah }}} (I'm using an explicit forall, which original Haskell didn't, but only to stress where the quantification is.) But Haskell 98 did not allow {{{ class C a where foo :: Ord a => blah }}} which added an extra constraint on the class variable 'a'. This was not checked by GHC 7.10, see #7854. I added the test in `f66e0e6`. But if we have implicit params should we allow {{{ class C a where foo :: ?x::Int => a -> a }}} Presumably yes. So give a constraint with free tyvars `pred_tvs`, the test should perhaps be * `pred_tvs` is not empty, and * All of the `pred_tvs` are class variables Under those circumstances, reject, unless `ConstrainedClassMethods` is on. I'll do that; it's easy. Simon GHC has no truck with such restrictions, hence the extension. But when you don't have the extension on -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 14:20:35 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 14:20:35 -0000 Subject: [GHC] #11797: Template Haskell does not quantify over extra vars in class methods Message-ID: <047.1a849e0397a2c031b9b89359db29506a@haskell.org> #11797: Template Haskell does not quantify over extra vars in class methods -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Template | Version: 8.1 Haskell | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- If I say {{{#!hs [d| class Foo a where meth :: a -> b -> a |] }}} I would expect that the type signature for `meth` would quantify over `b`. It does not. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 15:07:41 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 15:07:41 -0000 Subject: [GHC] #11798: Recompiling with -fhpc flag added does nothing Message-ID: <047.6f8de8b3c85c4fc187e00a7d709c917e@haskell.org> #11798: Recompiling with -fhpc flag added does nothing -------------------------------------+------------------------------------- Reporter: drathier | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: x86_64 | Type of failure: None/Unknown (amd64) | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- When you recompile without modifiying any source code, nothing happens, as expected. The file is already compiled, after all. If you then add the -fhpc flag, it still doesn't recompile, even though it now should generate .tix files. These files are now unexpectedly missing, until the source files are modified or the .o and .hi files are deleted, and the code is recompiled again with the -fhpc flag. reproduce: 1. compile program 2. compile program with -fhpc note: missing .tix file 3. delete .hi and .o files 4. compile program with -fhpc 5. success; .tix file is generated -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 15:17:12 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 15:17:12 -0000 Subject: [GHC] #11799: Legend for hpc markup colors Message-ID: <047.314ffbb861201aff98726d88b5f478b7@haskell.org> #11799: Legend for hpc markup colors -------------------------------------+------------------------------------- Reporter: drathier | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: Test Suite | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- The hpc markup colors are not documented anywhere. Coming from an imperative background, red means never executed and green means executed at least once. Here, green means always true, red means always false, yellow means never executed. Adding a one-line legend at the top of the output file(s) describing the colours would help a lot. Suggesting `never executed` `always true` and `always false` on a single line at the top with the same yellow, green and red background as the respective highlighted code would have. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 15:39:56 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 15:39:56 -0000 Subject: [GHC] #5850: Greater customization of GHCi prompt In-Reply-To: <050.bf03c3e2cbefdd0fabbaa545b275f2dc@haskell.org> References: <050.bf03c3e2cbefdd0fabbaa545b275f2dc@haskell.org> Message-ID: <065.4f0b197f28871f1832032897b2f07dd3@haskell.org> #5850: Greater customization of GHCi prompt -------------------------------------+------------------------------------- Reporter: JamesFisher | Owner: niksaz Type: feature request | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.4.1 Resolution: | Keywords: newcomer Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #9994 | Differential Rev(s): Phab:D2084 Wiki Page: | -------------------------------------+------------------------------------- Changes (by niksaz): * differential: Phab:D623 => Phab:D2084 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 16:15:49 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 16:15:49 -0000 Subject: [GHC] #11623: Wrong error message for type family definition that is wrong in multiple ways In-Reply-To: <047.ac7120cde85232bfd7b39a31762350cf@haskell.org> References: <047.ac7120cde85232bfd7b39a31762350cf@haskell.org> Message-ID: <062.dd6afc4e10d8f4c90a7ed63b0ad0daef@haskell.org> #11623: Wrong error message for type family definition that is wrong in multiple ways -------------------------------------+------------------------------------- Reporter: rwbarton | Owner: rdragon Type: bug | Status: new Priority: low | Milestone: Component: Compiler (Type | Version: 8.1 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by rdragon): * owner: => rdragon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 16:18:43 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 16:18:43 -0000 Subject: [GHC] #11800: T9872d bytes allocated has regressed terribly on 32-bit Linux Message-ID: <046.265f5796d724b107d0480dd7238a023b@haskell.org> #11800: T9872d bytes allocated has regressed terribly on 32-bit Linux -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Test Suite | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: Compile-time Unknown/Multiple | performance bug Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- While updating the performance testsuite numbers for 8.0.1-rc3 I noticed that `T9872d`'d bytes allocated metric has somehow regressed 350% but only on 32-bit Debian 8, {{{ =====> T9872d(normal) 22 of 30 [0, 0, 0] cd ./perf/compiler && "/home/ben/ghc/inplace/test spaces/ghc-stage2" -c T9872d.hs -fforce-recomp -dno-debug-output -fshow-warning-groups -no-user- package-db -rtsopts -fno-warn-tabs -fno-warn-missed-specialisations -fno- ghci-history +RTS -V0 -tT9872d.comp.stats --machine-readable -RTS > T9872d.comp.stderr 2>&1 bytes allocated value is too high: Expected T9872d(normal) bytes allocated: 59651432 +/-5% Lower bound T9872d(normal) bytes allocated: 56668860 Upper bound T9872d(normal) bytes allocated: 62634004 Actual T9872d(normal) bytes allocated: 264566040 Deviation T9872d(normal) bytes allocated: 343.5 % *** unexpected stat test failure for T9872d(normal) }}} The test passes on 64-bit Debian 8 and no similar jumps are seen in the test's history. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 16:19:00 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 16:19:00 -0000 Subject: [GHC] #11800: T9872d bytes allocated has regressed terribly on 32-bit Linux In-Reply-To: <046.265f5796d724b107d0480dd7238a023b@haskell.org> References: <046.265f5796d724b107d0480dd7238a023b@haskell.org> Message-ID: <061.8fd6de1d7e71c3217b38ad15f086d9e0@haskell.org> #11800: T9872d bytes allocated has regressed terribly on 32-bit Linux -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Test Suite | Version: 8.0.1-rc2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * version: 7.10.3 => 8.0.1-rc2 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 16:20:22 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 16:20:22 -0000 Subject: [GHC] #11800: T9872d bytes allocated has regressed terribly on 32-bit Linux In-Reply-To: <046.265f5796d724b107d0480dd7238a023b@haskell.org> References: <046.265f5796d724b107d0480dd7238a023b@haskell.org> Message-ID: <061.a82b9f92092428816684481d54a97731@haskell.org> #11800: T9872d bytes allocated has regressed terribly on 32-bit Linux -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Test Suite | Version: 8.0.1-rc2 Resolution: invalid | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => closed * resolution: => invalid Comment: Ahh, never mind, it looks like the expected number was just typo'd. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 20:05:58 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 20:05:58 -0000 Subject: [GHC] #11770: Demand analysis: Wrong one-shot annotation due to fixed-point iteration In-Reply-To: <046.967e6cf10d023cf3fe98f3cad192e65a@haskell.org> References: <046.967e6cf10d023cf3fe98f3cad192e65a@haskell.org> Message-ID: <061.fd90b7fa6575a1deb9ec2b203fb87b2d@haskell.org> #11770: Demand analysis: Wrong one-shot annotation due to fixed-point iteration -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2085 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Joachim Breitner ): In [changeset:"0f58d3484d6bd57fa10bf83f0d9b126884027ebf/ghc" 0f58d348/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="0f58d3484d6bd57fa10bf83f0d9b126884027ebf" Demand Analyzer: Do not set OneShot information (second try) as suggested in ticket:11770#comment:1. This code was buggy (#11770), and the occurrence analyzer does the same job anyways. This also elaborates the notes in the occurrence analyzer accordingly. Previously, the worker/wrapper code would go through lengths to transfer the oneShot annotations from the original function to both the worker and the wrapper. We now simply transfer the demand on the worker, and let the subsequent occurrence analyzer push this onto the lambda binders. This also requires the occurrence analyzer to do this more reliably. Previously, it would not hand out OneShot annotatoins to things that would not `certainly_inline` (and it might not have mattered, as the Demand Analysis might have handed out the annotations). Now we hand out one-shot annotations unconditionally. Differential Revision: https://phabricator.haskell.org/D2085 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 20:34:48 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 20:34:48 -0000 Subject: [GHC] #11779: Merge "Skip TEST=TcCoercibleFail when compiler_debugged" In-Reply-To: <046.dc5ce26ca4c4467286d60cdc7155ea47@haskell.org> References: <046.dc5ce26ca4c4467286d60cdc7155ea47@haskell.org> Message-ID: <061.64a835ac49d519bd59a2bbc0575177ae@haskell.org> #11779: Merge "Skip TEST=TcCoercibleFail when compiler_debugged" -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: task | Status: closed Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc2 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: Merged as 7b185518cc68da12abb803fe7993f6f08f686dda. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 20:35:50 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 20:35:50 -0000 Subject: [GHC] #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications In-Reply-To: <050.1e1b033722e186882d08840a201168c5@haskell.org> References: <050.1e1b033722e186882d08840a201168c5@haskell.org> Message-ID: <065.0062eb759e606607a40715d3fe618328@haskell.org> #11376: Inconsistent specified type variables among functions and datatypes/classes when using -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: goldfire Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.1 checker) | Keywords: Resolution: fixed | TypeApplications Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: comment:26 merged as 992e675261be7d9eec75114de965e09aa3035929. comment:27 merged as 1b381b50cdd5d8ac6f0e2ed3a525e8ea1514a09f. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 20:35:52 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 20:35:52 -0000 Subject: [GHC] #11770: Demand analysis: Wrong one-shot annotation due to fixed-point iteration In-Reply-To: <046.967e6cf10d023cf3fe98f3cad192e65a@haskell.org> References: <046.967e6cf10d023cf3fe98f3cad192e65a@haskell.org> Message-ID: <061.1b98922667798bc2336a7c403ce2709c@haskell.org> #11770: Demand analysis: Wrong one-shot annotation due to fixed-point iteration -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2085 Wiki Page: | -------------------------------------+------------------------------------- Changes (by nomeata): * status: patch => closed * resolution: => fixed -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 20:36:31 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 20:36:31 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.d6179e8b07afa0c7ed7c0b537ecc6e7e@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Changes (by nomeata): * status: new => closed * resolution: => fixed -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 20:46:30 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 20:46:30 -0000 Subject: [GHC] #10914: Bad symbol resolution on Darwin when using DYLD_FORCE_FLAT_NAMESPACE=1 In-Reply-To: <047.9268eb7f03934b85eb39681f4890afc7@haskell.org> References: <047.9268eb7f03934b85eb39681f4890afc7@haskell.org> Message-ID: <062.14a84a29664800828c7c9f6ed6e60746@haskell.org> #10914: Bad symbol resolution on Darwin when using DYLD_FORCE_FLAT_NAMESPACE=1 -------------------------------------+------------------------------------- Reporter: jacereda | Owner: Type: bug | Status: new Priority: high | Milestone: Component: Runtime System | Version: 7.10.2 (Linker) | Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 | (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by jacereda): I just tried again with 7.10.3 on 10.10.5 and it's failing. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 20:47:32 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 20:47:32 -0000 Subject: [GHC] #10914: Bad symbol resolution on Darwin when using DYLD_FORCE_FLAT_NAMESPACE=1 In-Reply-To: <047.9268eb7f03934b85eb39681f4890afc7@haskell.org> References: <047.9268eb7f03934b85eb39681f4890afc7@haskell.org> Message-ID: <062.34b51fcec9a3de491cd4a6c7648d0a70@haskell.org> #10914: Bad symbol resolution on Darwin when using DYLD_FORCE_FLAT_NAMESPACE=1 -------------------------------------+------------------------------------- Reporter: jacereda | Owner: Type: bug | Status: new Priority: high | Milestone: Component: Runtime System | Version: 7.10.2 (Linker) | Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 | (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by jacereda): Feel free to close it anyways if you consider it appropriate, by the time I'll need this I'll probably be on 10.11. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 21:31:42 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 21:31:42 -0000 Subject: [GHC] #11801: RFC: Make browse command display everything unqualified Message-ID: <051.96966883eb9438134bafa36e0302f412@haskell.org> #11801: RFC: Make browse command display everything unqualified -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature | Status: new request | Priority: lowest | Milestone: Component: GHCi | Version: Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- What the title says, sometimes the output of `:browse` (`:bro`) is highly verbose. If you want unqualified names you need to (as far as I know) import the modules in question, even then names may still be qualified if they clash with names from other modules in scope. {{{ ghci> :browse Control.Applicative.Free data Control.Applicative.Free.Ap (f :: * -> *) a where Control.Applicative.Free.Pure :: a -> Control.Applicative.Free.Ap f a Control.Applicative.Free.Ap :: (f a1) -> (Control.Applicative.Free.Ap f (a1 -> a)) -> Control.Applicative.Free.Ap f a Control.Applicative.Free.hoistAp :: (forall a. f a -> g a) -> Control.Applicative.Free.Ap f b -> Control.Applicative.Free.Ap g b }}} versus {{{ ghci> :newbrowse Control.Applicative.Free data Ap (f :: * -> *) a where Pure :: a -> Ap f a Ap :: (f a1) -> (Ap f (a1 -> a)) -> Ap f a hoistAp :: (forall a. f a -> g a) -> Ap f b -> Ap g b ... }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 21:45:32 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 21:45:32 -0000 Subject: [GHC] #11802: Make a Win32 release Message-ID: <046.f5b09c91b5d426ec652c2f35da0c43b5@haskell.org> #11802: Make a Win32 release -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: task | Status: new Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 21:45:41 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 21:45:41 -0000 Subject: [GHC] #11802: Make a Win32 release In-Reply-To: <046.f5b09c91b5d426ec652c2f35da0c43b5@haskell.org> References: <046.f5b09c91b5d426ec652c2f35da0c43b5@haskell.org> Message-ID: <061.d45ae267f087c5463c713efac9d88527@haskell.org> #11802: Make a Win32 release -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: task | Status: upstream Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => upstream -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 21:45:51 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 21:45:51 -0000 Subject: [GHC] #11802: Make a Win32 release In-Reply-To: <046.f5b09c91b5d426ec652c2f35da0c43b5@haskell.org> References: <046.f5b09c91b5d426ec652c2f35da0c43b5@haskell.org> Message-ID: <061.1ab9e6c61d1ed6e5b010260ec2cbb86b@haskell.org> #11802: Make a Win32 release -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: task | Status: upstream Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * cc: hvr (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 21:47:33 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 21:47:33 -0000 Subject: [GHC] #11803: Users guide's `_static` directory isn't installed to correct location Message-ID: <046.1c3e61f00c1cbfba6de5620e23cb83f4@haskell.org> #11803: Users guide's `_static` directory isn't installed to correct location -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- In the binary distributions the `_static` directory which contains CSS and other static resources gets installed to `share/doc/ghc-$VER/html/_static` whereas it is expected to live in `share/doc/ghc-$VER/html/users_guide/_static`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 6 22:02:30 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 06 Apr 2016 22:02:30 -0000 Subject: [GHC] #11794: Switch to LLVM 3.8 In-Reply-To: <044.5919f8519f8a0f8245fba031199e2674@haskell.org> References: <044.5919f8519f8a0f8245fba031199e2674@haskell.org> Message-ID: <059.fec173579eba8e631c21f4380974baaf@haskell.org> #11794: Switch to LLVM 3.8 -------------------------------------+------------------------------------- Reporter: erikd | Owner: erikd Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (LLVM) | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by erikd): @nomeata, yes it does (at least in unstable): https://packages.debian.org/search?keywords=llvm-3.8 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 00:49:00 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 00:49:00 -0000 Subject: [GHC] #11793: Confusing type error from constrained class method In-Reply-To: <049.66d83c7f7ec1f2be250a76e4769b49e0@haskell.org> References: <049.66d83c7f7ec1f2be250a76e4769b49e0@haskell.org> Message-ID: <064.e56f5a5d7422506ba638d5e63b0542df@haskell.org> #11793: Confusing type error from constrained class method -------------------------------------+------------------------------------- Reporter: gridaphobe | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc2 Resolution: | Keywords: error-message Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Iceland_jack): Is this intended? {{{ $ ghci -XImplicitParams -XConstrainedClassMethods -ignore-dot-ghci GHCi, version 8.1.20160117: http://www.haskell.org/ghc/ :? for help Prelude> class C a where foo :: (?x::Int) => a -> a Prelude> class C a where foo :: ?x::Int => a -> a :2:32: error: parse error on input ?=>? Prelude> }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 01:00:05 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 01:00:05 -0000 Subject: [GHC] #11804: Export zonkEvBinds from TcHsSyn. Message-ID: <044.2b412afff7a50994854cf1ad8bdb7882@haskell.org> #11804: Export zonkEvBinds from TcHsSyn. -------------------------------------+------------------------------------- Reporter: conal | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Needed for constructing correct constraint-satisfying code (particularly type class instances) in a Core-to-Core transformation. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 01:29:02 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 01:29:02 -0000 Subject: [GHC] #11698: GHC's tct_closed flag is not being set correctly In-Reply-To: <046.7686f983b8149fd1d6dcacf21545b08a@haskell.org> References: <046.7686f983b8149fd1d6dcacf21545b08a@haskell.org> Message-ID: <061.57be014e592c5a6ba6d664e48ba5f50e@haskell.org> #11698: GHC's tct_closed flag is not being set correctly -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: 11656 Related Tickets: | Differential Rev(s): Phab:D2016 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Facundo Dom?nguez ): In [changeset:"c9e8f801170b213b85735ed403f24b2842aedf1b/ghc" c9e8f801/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="c9e8f801170b213b85735ed403f24b2842aedf1b" Set tct_closed to TopLevel for closed bindings. Summary: Till now tct_closed determined whether the type of a binding is closed. With this patch tct_closed indicates whether the binding is closed. Test Plan: ./validate Reviewers: simonpj, austin, bgamari Reviewed By: simonpj Subscribers: mboes, thomie, simonpj Differential Revision: https://phabricator.haskell.org/D2016 GHC Trac Issues: #11698 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 01:35:10 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 01:35:10 -0000 Subject: [GHC] #11698: GHC's tct_closed flag is not being set correctly In-Reply-To: <046.7686f983b8149fd1d6dcacf21545b08a@haskell.org> References: <046.7686f983b8149fd1d6dcacf21545b08a@haskell.org> Message-ID: <061.f5d4dab31f5e03c5d2828acf3a78abd4@haskell.org> #11698: GHC's tct_closed flag is not being set correctly -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: 11656 Related Tickets: | Differential Rev(s): Phab:D2016 Wiki Page: | -------------------------------------+------------------------------------- Changes (by facundo.dominguez): * status: patch => closed * resolution: => fixed -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 03:45:26 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 03:45:26 -0000 Subject: [GHC] #8594: sysctl name "hw.ncpu" (HW_NCPU) is deprecated in Mac OS X In-Reply-To: <043.14751a04063e97452853ca5e57a712e1@haskell.org> References: <043.14751a04063e97452853ca5e57a712e1@haskell.org> Message-ID: <058.de6530bb44e004297b3dc4ee75865062@haskell.org> #8594: sysctl name "hw.ncpu" (HW_NCPU) is deprecated in Mac OS X -------------------------------------+------------------------------------- Reporter: kseo | Owner: ak3n Type: task | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 7.6.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2082 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Austin Seipp ): In [changeset:"eda273bc0be4f2316758e121f5f0ed85c3460c7f/ghc" eda273bc/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="eda273bc0be4f2316758e121f5f0ed85c3460c7f" runtime: replace hw.ncpu with hw.logicalcpu for Mac OS X Reviewed By: erikd, austin Differential Revision: https://phabricator.haskell.org/D2082 GHC Trac Issues: #8594 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 03:47:01 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 03:47:01 -0000 Subject: [GHC] #8594: sysctl name "hw.ncpu" (HW_NCPU) is deprecated in Mac OS X In-Reply-To: <043.14751a04063e97452853ca5e57a712e1@haskell.org> References: <043.14751a04063e97452853ca5e57a712e1@haskell.org> Message-ID: <058.ec216b9d1d439c09f3cfd71c14e06904@haskell.org> #8594: sysctl name "hw.ncpu" (HW_NCPU) is deprecated in Mac OS X -------------------------------------+------------------------------------- Reporter: kseo | Owner: ak3n Type: task | Status: closed Priority: normal | Milestone: 8.2.1 Component: Runtime System | Version: 7.6.3 Resolution: fixed | Keywords: Operating System: MacOS X | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2082 Wiki Page: | -------------------------------------+------------------------------------- Changes (by thoughtpolice): * status: new => closed * resolution: => fixed * milestone: => 8.2.1 Comment: Finally fixed. Thank you for updating the patch with my requests, Eugene! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 04:30:20 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 04:30:20 -0000 Subject: [GHC] #11805: Ability to use record fields for automatic derivation of user-defined classes. Message-ID: <048.a8bf80140dcd34cf9bcb7b67908c1fa7@haskell.org> #11805: Ability to use record fields for automatic derivation of user-defined classes. -------------------------------------+------------------------------------- Reporter: Tientuine | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- I propose that the compiler be empowered to automatically derive a user- defined class when a data type has fields that match (in both name and type) methods sufficient for a minimal complete definition of the class. (There is some overlap between this idea and the much larger and more contentious issue of extensible records generally.) I am relatively new to Haskell, but have quickly run into the problem of field namespacing. As a simple example, suppose we are creating a game with data types for Room and Item, and values of each of these types will have a short name and a long description (possibly among other fields not detailed here). Currently, we must name our fields differently, as in: {{{#!hs -- ugh! prefixing the field names is ugly and tedious data Room = Room { rname :: String, rdescribe :: String, item :: Maybe Item } data Item = Item { iname :: String, idescribe :: String, value :: Int } }}} Classes seem a natural solution to this problem, but then we must either have superfluous field names or drop the use of field names altogether: {{{#!hs -- extracting a common interface as a class makes sense type Desc d where name :: d -> String describe :: d -> String -- but now we either keep the ugly prefixed fields or drop fields entirely data Room = Room String String (Maybe Item) data Item = Item String String Int -- furthermore, it is tedious to implement these trivial observers instance Desc Room where name (Room n _ _) = n describe (Room _ d _) = d instance Desc Item where name (Item n _ _) = n describe (Item _ d _) = d }}} My proposal is to allow the compiler to rely on fields in order to automatically derive a user-defined class. This solves a couple of problems in a way that (I hope) is not excessively complex to implement. Such a feature would allow us to write code like the following: {{{#!hs -- class as a common interface still feels natural type Desc d where name :: d -> String describe :: d -> String -- now we get shared field names and let the compiler do some of the work data Room = Room { name :: String, describe :: String, item :: (Maybe Item) } deriving Desc data Item = Item { name :: String, describe :: String, value :: Int } deriving Desc }}} Obviously, there are a couple of restrictions here: * fields of the same name in different records must have the same type * fields of the same name in different records are still ambiguous (no different than the current situation) if we do //not// derive a class that declares those field names * this is //not// intended to be a general solution for either extensible records or deriving classes automatically, it is very limited in scope P.S. This is my first Ticket and attempt to get involved in the community, and I'm not yet sure of the correct tags to use. Please be gentle. :) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 04:45:26 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 04:45:26 -0000 Subject: [GHC] #11805: Ability to use record fields for automatic derivation of user-defined classes. In-Reply-To: <048.a8bf80140dcd34cf9bcb7b67908c1fa7@haskell.org> References: <048.a8bf80140dcd34cf9bcb7b67908c1fa7@haskell.org> Message-ID: <063.01f539cb15ba33ce1feee3143b7cf245@haskell.org> #11805: Ability to use record fields for automatic derivation of user-defined classes. -------------------------------------+------------------------------------- Reporter: Tientuine | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by ezyang): Hello Tientuine, this area of Haskell is definitely well-trodden with proposals. One of the proposals, OverloadedRecordFields will be partially in GHC 8.0 (though not with type class deriving.) How does your proposal compare? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 05:21:28 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 05:21:28 -0000 Subject: [GHC] #11806: GHC does not warn for mistakenly empty case Message-ID: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> #11806: GHC does not warn for mistakenly empty case -------------------------------------+------------------------------------- Reporter: dfeuer | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: GHC accepts Unknown/Multiple | invalid program Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- {{{#!hs {-# LANGUAGE EmptyCase #-} {-# OPTIONS_GHC -Wall -fwarn-incomplete-uni-patterns #-} oops :: Int -> a oops x = case x of {} }}} Since `Int` is inhabited, I would expect a warning, but I get none. Since empty case is typically used in situations where programmers want GHC to see an absurdity, this seems most unfortunate. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 05:32:36 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 05:32:36 -0000 Subject: [GHC] #11807: -fforce-relink / -fforce-link option Message-ID: <045.c7b4c47ce391a87cbadf2e0b91437e86@haskell.org> #11807: -fforce-relink / -fforce-link option -------------------------------------+------------------------------------- Reporter: ezyang | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- I would quite like it if there was an option for GHC to force relinking, in case GHC mistakenly does not think relinking is necessary. For example, if I am doing development on a statically linked RTS I may want to force relinking on executables to get the new RTS. `-fforce-recomp` works OK for small cases, but it forces recompilation of the modules too which is unnecessary. I could have sworn there was already a ticket for this but I could not find it. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 08:53:36 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 08:53:36 -0000 Subject: [GHC] #11794: Switch to LLVM 3.8 In-Reply-To: <044.5919f8519f8a0f8245fba031199e2674@haskell.org> References: <044.5919f8519f8a0f8245fba031199e2674@haskell.org> Message-ID: <059.fa71d328e95215b79aef3891a248ddbe@haskell.org> #11794: Switch to LLVM 3.8 -------------------------------------+------------------------------------- Reporter: erikd | Owner: erikd Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (LLVM) | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Ok, ignore me. I constantly get confused by Debian?s naming of llvm packages. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 09:16:16 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 09:16:16 -0000 Subject: [GHC] #11808: nofib's cryptarithm1 regresses due to deferred inlining of Int's Ord operations Message-ID: <046.0de81d906e12dbb6e83ee1dc28c4efa9@haskell.org> #11808: nofib's cryptarithm1 regresses due to deferred inlining of Int's Ord operations -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: task | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: Runtime Unknown/Multiple | performance bug Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Commit d1179c4bff6d05cc9e86eee3e2d2cee707983c90 [[https://perf.haskell.org/ghc/#revision/d1179c4bff6d05cc9e86eee3e2d2cee707983c90|apparently]] causes a ~5% regression in runtime in nofib's `cryptarithm1` benchmark. Need to work out why. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 10:55:12 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 10:55:12 -0000 Subject: [GHC] #11801: RFC: Make browse command display everything unqualified In-Reply-To: <051.96966883eb9438134bafa36e0302f412@haskell.org> References: <051.96966883eb9438134bafa36e0302f412@haskell.org> Message-ID: <066.c5322d364d1d0c16cbebdc7067c1c948@haskell.org> #11801: RFC: Make browse command display everything unqualified -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature request | Status: new Priority: lowest | Milestone: Component: GHCi | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): What about names that occur in types that are not from the browed module, and not in scope? Should they be qualified? Is this attempt to be precise what you want: ?:browse Foo? should never print the names of symbols (left of `::`) qualified, and in the types, should print as if `Foo` is imported, i.e. only qualify it if there would be a clash. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 11:44:54 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 11:44:54 -0000 Subject: [GHC] #11809: Template Haskell record splices are not renamer-resolved correctly. Message-ID: <047.405dec4fbee13ac6686a46a36b32cd28@haskell.org> #11809: Template Haskell record splices are not renamer-resolved correctly. -------------------------------------+------------------------------------- Reporter: bollmann | Owner: bollmann Type: bug | Status: new Priority: normal | Milestone: Component: Template | Version: 8.0.1 Haskell | Keywords: Template | Operating System: Unknown/Multiple Haskell Renamer Records | Architecture: | Type of failure: GHC rejects Unknown/Multiple | valid program Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- While working on ticket #8761, I noticed that splicing in record selectors with Template Haskell seems to cause renamer issues in GHC HEAD. Consider the following TH splice: {{{#!hs {- Test splicing in a data type with records -} [d| data D a = MkD { unD :: a } someD = MkD "Hello" getD = unD someD -- unD should resolve to the record selector above! |] getD' = unD someD -- dito here outside of the splice! }}} While GHC 7.10.3 accepts this splice and renames it correctly, GHC HEAD fails with the following error message (with `-ddump-splices` enabled): {{{ [1 of 1] Compiling Error ( Error.hs, Error.o ) Error.hs:(6,1)-(11,3): Splicing declarations [d| someD_apF = MkD_apD "Hello" getD_apG = unD someD_apF data D_apC a_apH = MkD_apD {unD :: a_apH} |] ======> data D_a4SA a_a4SD = MkD_a4SB {unD_a4SC :: a_a4SD} someD_a4Sy = MkD_a4SB "Hello" getD_a4Sz = unD_a4SC someD_a4Sy Error.hs:6:1: error: The exact Name ?unD_a4SC? is not in scope Probable cause: you used a unique Template Haskell name (NameU), perhaps via newName, but did not bind it If that's it, then -ddump-splices might be useful }}} I'm not sure as to what introduced this bug, but investigating it I found that the notes - `NOTE [Binders in Template Haskell] in Convert.hs`, and - `NOTE [Looking up Exact RdrNames] in RnEnv.hs` are not respected by function `newRecordSelector` in `rename/RnNames.hs`. I've fixed this function accordingly in Phab:D1940 for #8761, but since that patch is not going to be part of 8.0.1, Richard suggested to fix it separately in this ticket. I'm submitting a patch in due course. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 12:06:26 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 12:06:26 -0000 Subject: [GHC] #11810: Filtering of cost-center profiler output no longer works Message-ID: <046.2e4d78063f10b676d001d04121ff9588@haskell.org> #11810: Filtering of cost-center profiler output no longer works -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Profiling | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: Incorrect result Unknown/Multiple | at runtime Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- With the following testcase, {{{#!hs import Control.Monad (replicateM) main :: IO () main = do let xs = replicate 10000000 $ 42 print $ length xs print $ sum xs }}} Running like this, {{{ ghc -prof -auto-all Hi.hs && ./Hi +RTS -hy[] -hc }}} with 7.10.3 produces a useful profile with the output one would expect. 8.0.1-rc2, on the other hand produces empty samples. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 12:23:25 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 12:23:25 -0000 Subject: [GHC] #11623: Wrong error message for type family definition that is wrong in multiple ways In-Reply-To: <047.ac7120cde85232bfd7b39a31762350cf@haskell.org> References: <047.ac7120cde85232bfd7b39a31762350cf@haskell.org> Message-ID: <062.aa4afd052ed7121952362eac2f368672@haskell.org> #11623: Wrong error message for type family definition that is wrong in multiple ways -------------------------------------+------------------------------------- Reporter: rwbarton | Owner: rdragon Type: bug | Status: new Priority: low | Milestone: Component: Compiler (Type | Version: 8.1 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2089 Wiki Page: | -------------------------------------+------------------------------------- Changes (by rdragon): * differential: => Phab:D2089 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 12:37:13 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 12:37:13 -0000 Subject: [GHC] #11810: Filtering of cost-center profiler output no longer works In-Reply-To: <046.2e4d78063f10b676d001d04121ff9588@haskell.org> References: <046.2e4d78063f10b676d001d04121ff9588@haskell.org> Message-ID: <061.4a27f658827fc23d84b4b3d5b6ef3364@haskell.org> #11810: Filtering of cost-center profiler output no longer works -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: patch Priority: highest | Milestone: 8.0.1 Component: Profiling | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2090 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => patch * differential: => Phab:D2090 Comment: Bah, classic use-after-free introduced by yours truly. Fix in Phab:D2090. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 12:37:47 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 12:37:47 -0000 Subject: [GHC] #11808: nofib's cryptarithm1 regresses due to deferred inlining of Int's Ord operations In-Reply-To: <046.0de81d906e12dbb6e83ee1dc28c4efa9@haskell.org> References: <046.0de81d906e12dbb6e83ee1dc28c4efa9@haskell.org> Message-ID: <061.cd17291b428d3f86c87e486c1427367c@haskell.org> #11808: nofib's cryptarithm1 regresses due to deferred inlining of Int's Ord operations -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: task | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Check out allocation figures.. do they budge? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 12:51:33 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 12:51:33 -0000 Subject: [GHC] #11808: nofib's cryptarithm1 regresses due to deferred inlining of Int's Ord operations In-Reply-To: <046.0de81d906e12dbb6e83ee1dc28c4efa9@haskell.org> References: <046.0de81d906e12dbb6e83ee1dc28c4efa9@haskell.org> Message-ID: <061.74a58fab0c0ae00d4f383ef68814f264@haskell.org> #11808: nofib's cryptarithm1 regresses due to deferred inlining of Int's Ord operations -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: task | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): I have not been able to reproduce the regression locally, unfortunately. I did a nofib run prior to merging the commit which as far as I remember didn't show any major regressions; moreover my attempt at reproducing the issue this morning came up (or rather, the change supposedly **improved** runtime by 1.7%, although I don't believe this is significant). Regardless, according to ghc-speed (which you can reveal by clicking on the `=` button in the top right corner) the patch didn't change allocations. Judging by the [[https://perf.haskell.org/ghc/#graph/nofib/time/cryptarithm1;hl=d1179c4bff6d05cc9e86eee3e2d2cee707983c90|history]] of this benchmark it seems to be quite unstable. This could be due to a number of things, including caching effects. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 13:03:58 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 13:03:58 -0000 Subject: [GHC] #10030: packageName for GHC.Generics.Datatype In-Reply-To: <045.ce2f6e41c41ec92e31efde332462bf2a@haskell.org> References: <045.ce2f6e41c41ec92e31efde332462bf2a@haskell.org> Message-ID: <060.d74aa8a47d3db02b6e75d391eec06d85@haskell.org> #10030: packageName for GHC.Generics.Datatype -------------------------------------+------------------------------------- Reporter: phadej | Owner: dreixel Type: feature request | Status: closed Priority: normal | Milestone: 8.0.1 Component: libraries/base | Version: 7.11 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D631 Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 13:16:25 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 13:16:25 -0000 Subject: [GHC] #11809: Template Haskell record splices are not renamer-resolved correctly. In-Reply-To: <047.405dec4fbee13ac6686a46a36b32cd28@haskell.org> References: <047.405dec4fbee13ac6686a46a36b32cd28@haskell.org> Message-ID: <062.c58965beb541c4fa433a80a42ef014f6@haskell.org> #11809: Template Haskell record splices are not renamer-resolved correctly. -------------------------------------+------------------------------------- Reporter: bollmann | Owner: bollmann Type: bug | Status: patch Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1 Resolution: | Keywords: Template | Haskell Renamer Records Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2091 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bollmann): * status: new => patch * differential: => Phab:D2091 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 13:24:30 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 13:24:30 -0000 Subject: [GHC] #11810: Filtering of cost-center profiler output no longer works In-Reply-To: <046.2e4d78063f10b676d001d04121ff9588@haskell.org> References: <046.2e4d78063f10b676d001d04121ff9588@haskell.org> Message-ID: <061.080d6e63a4e5e09366cafb5228d87aed@haskell.org> #11810: Filtering of cost-center profiler output no longer works -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: patch Priority: highest | Milestone: 8.0.1 Component: Profiling | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2090 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"535896e58f7fc8d89a5ff34629a3471eac529d93/ghc" 535896e/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="535896e58f7fc8d89a5ff34629a3471eac529d93" rts: Fix parsing of profiler selectors 69822f0c5b67161b4d7558081bc94f6f3a7c5dbb broke this as it held on to a reference into the `arg` string, which is later freed. Humbug. Test Plan: Try using filtering Reviewers: austin Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2090 GHC Trac Issues: #11810 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 13:24:30 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 13:24:30 -0000 Subject: [GHC] #11803: Users guide's `_static` directory isn't installed to correct location In-Reply-To: <046.1c3e61f00c1cbfba6de5620e23cb83f4@haskell.org> References: <046.1c3e61f00c1cbfba6de5620e23cb83f4@haskell.org> Message-ID: <061.26856268deeaf6ecd44745ff7c6dbe49@haskell.org> #11803: Users guide's `_static` directory isn't installed to correct location -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"6b6bebaf2349c51343bec2b8fa0e80b7e42593a6/ghc" 6b6bebaf/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="6b6bebaf2349c51343bec2b8fa0e80b7e42593a6" Fix installation of static sphinx assets Previously the `_static` and `_sources` directories were installed in the wrong parents. See #11803 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 13:47:34 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 13:47:34 -0000 Subject: [GHC] #11775: singleton classes in ghc.generics are defined but not exported In-Reply-To: <045.c976fcd38645e557c12a54aae45ad035@haskell.org> References: <045.c976fcd38645e557c12a54aae45ad035@haskell.org> Message-ID: <060.19e2d258d6a0d869f6400e3725604eec@haskell.org> #11775: singleton classes in ghc.generics are defined but not exported -------------------------------------+------------------------------------- Reporter: carter | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc2 Resolution: invalid | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 13:48:46 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 13:48:46 -0000 Subject: [GHC] #11806: GHC does not warn for mistakenly empty case In-Reply-To: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> References: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> Message-ID: <060.688ffd1fdb49e873ee58637708bc865b@haskell.org> #11806: GHC does not warn for mistakenly empty case -------------------------------------+------------------------------------- Reporter: dfeuer | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC accepts | Unknown/Multiple invalid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * cc: gkaracha (added) Comment: Yes that is odd. If you have {{{ module T11806 where f1 :: Int -> Int f1 x = case x of { 1 -> 2 } f2 :: Bool -> Int f2 x = case x of { True -> 2 } }}} you get (with 8.0) {{{ T11806.hs:7:8: warning: [-Wincomplete-patterns] Pattern match(es) are non-exhaustive In a case alternative: Patterns not matched: p where p is not one of {1} T11806.hs:10:8: warning: [-Wincomplete-patterns] Pattern match(es) are non-exhaustive In a case alternative: Patterns not matched: False }}} but if you remove all the branches, you get no warnings at all! I'm adding George (who is responsible for pattern match overlap checks) in cc. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 13:52:28 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 13:52:28 -0000 Subject: [GHC] #11292: Generics unboxed types: TEST=GEq1 WAY=optasm is failing In-Reply-To: <045.cdc6af1926cd16aa35393da7e2fb5cc9@haskell.org> References: <045.cdc6af1926cd16aa35393da7e2fb5cc9@haskell.org> Message-ID: <060.0e0f18e269ba80aad35b822e150f28f5@haskell.org> #11292: Generics unboxed types: TEST=GEq1 WAY=optasm is failing -------------------------------------+------------------------------------- Reporter: thomie | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 7.11 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11312 | Differential Rev(s): Phab:D1714 Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 13:53:48 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 13:53:48 -0000 Subject: [GHC] #10868: Make GHC generics capable of handling unboxed types In-Reply-To: <050.27f7f36fe7ccd6ec83005e9e4d3a8968@haskell.org> References: <050.27f7f36fe7ccd6ec83005e9e4d3a8968@haskell.org> Message-ID: <065.7d54f51f984cf14dbe851380a313bc02@haskell.org> #10868: Make GHC generics capable of handling unboxed types -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: RyanGlScott Type: feature request | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 7.10.2 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #8468 | Differential Rev(s): Phab:D1239 Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 13:54:23 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 13:54:23 -0000 Subject: [GHC] #10775: Enable PolyKinds in GHC.Generics In-Reply-To: <050.1fb49e8a4f9e9ff5b73b6dbae85f944e@haskell.org> References: <050.1fb49e8a4f9e9ff5b73b6dbae85f944e@haskell.org> Message-ID: <065.1550445a1a3793cac64e0d27cc31b767@haskell.org> #10775: Enable PolyKinds in GHC.Generics -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: RyanGlScott Type: feature request | Status: closed Priority: normal | Milestone: 8.0.1 Component: libraries/base | Version: 7.10.2 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1166 Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 13:55:00 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 13:55:00 -0000 Subject: [GHC] #10669: Missing Generic instances for base types. In-Reply-To: <048.12bc38d5127d0e42b80d46a4c10d9acb@haskell.org> References: <048.12bc38d5127d0e42b80d46a4c10d9acb@haskell.org> Message-ID: <063.93c949122f7532f4aefd2d6bed84d61c@haskell.org> #10669: Missing Generic instances for base types. -------------------------------------+------------------------------------- Reporter: vagarenko | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: libraries/base | Version: 7.10.1 Resolution: duplicate | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 13:55:43 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 13:55:43 -0000 Subject: [GHC] #10513: ghc 7.6.3 Compiler panic with Generics In-Reply-To: <051.c09e61e0961a632608f776aed9796e7c@haskell.org> References: <051.c09e61e0961a632608f776aed9796e7c@haskell.org> Message-ID: <066.b24984516c428daaf0d9fda843edcabb@haskell.org> #10513: ghc 7.6.3 Compiler panic with Generics -------------------------------------+------------------------------------- Reporter: andreas.abel | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.6.3 Resolution: wontfix | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 13:56:50 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 13:56:50 -0000 Subject: [GHC] #10068: Make the runtime reflection API for names, modules, locations more systematic In-Reply-To: <046.e24e266e9d617fc4224d115c2a203db8@haskell.org> References: <046.e24e266e9d617fc4224d115c2a203db8@haskell.org> Message-ID: <061.088d70d2a4f2d9211ed332d2e89ea0f9@haskell.org> #10068: Make the runtime reflection API for names, modules, locations more systematic -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: task | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 7.8.4 Resolution: | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 13:58:43 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 13:58:43 -0000 Subject: [GHC] #9563: Support for deriving Generic1 for data families In-Reply-To: <047.5afce0493774ce2d5de4e9e316ca0dec@haskell.org> References: <047.5afce0493774ce2d5de4e9e316ca0dec@haskell.org> Message-ID: <062.2e7c386383e6feddaa6e47614032a684@haskell.org> #9563: Support for deriving Generic1 for data families -------------------------------------+------------------------------------- Reporter: mnislaih | Owner: dreixel Type: bug | Status: closed Priority: high | Milestone: 7.8.4 Component: Compiler | Version: 7.8.2 Resolution: fixed | Keywords: Generics Operating System: MacOS X | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | generics/T9563 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:00:13 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:00:13 -0000 Subject: [GHC] #9527: Add Generic instances for Language.Haskell.TH In-Reply-To: <042.dfd174000f78899025cbeb254e3635a2@haskell.org> References: <042.dfd174000f78899025cbeb254e3635a2@haskell.org> Message-ID: <057.54f64d3ef1f920dba51cecf27e098382@haskell.org> #9527: Add Generic instances for Language.Haskell.TH -------------------------------------+------------------------------------- Reporter: nh2 | Owner: goldfire Type: feature request | Status: closed Priority: normal | Milestone: 7.10.1 Component: Core Libraries | Version: 7.8.3 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D437 Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:00:52 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:00:52 -0000 Subject: [GHC] #9523: Typo in GHC Generics documentation In-Reply-To: <045.f6500f2e6e7dfb47345436a2e3e2ff3d@haskell.org> References: <045.f6500f2e6e7dfb47345436a2e3e2ff3d@haskell.org> Message-ID: <060.c58ef473187f83748455b01c25347e8c@haskell.org> #9523: Typo in GHC Generics documentation -------------------------------------+------------------------------------- Reporter: dfeuer | Owner: Type: bug | Status: closed Priority: normal | Milestone: 7.8.4 Component: Documentation | Version: 7.8.3 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:01:40 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:01:40 -0000 Subject: [GHC] #8929: Deriving Generics broken In-Reply-To: <044.b3c356894e088206397c6c924ad3062a@haskell.org> References: <044.b3c356894e088206397c6c924ad3062a@haskell.org> Message-ID: <059.ac7c2aba30c3875abce39a76c1c4f025@haskell.org> #8929: Deriving Generics broken -------------------------------------+------------------------------------- Reporter: guest | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.6.3 Resolution: invalid | Keywords: Generics Operating System: Unknown/Multiple | Architecture: x86_64 | (amd64) Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:01:52 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:01:52 -0000 Subject: [GHC] #8797: Generics instances for monoid and applicative newtypes In-Reply-To: <049.92ef4fcc9c50ed7a1fbf0c9bc1dc5679@haskell.org> References: <049.92ef4fcc9c50ed7a1fbf0c9bc1dc5679@haskell.org> Message-ID: <064.fb297abaef2f15e3ff98644700ee4eae@haskell.org> #8797: Generics instances for monoid and applicative newtypes -------------------------------------+------------------------------------- Reporter: jcristovao | Owner: Type: feature request | Status: closed Priority: normal | Milestone: 7.8.1 Component: libraries/base | Version: 7.8.1-rc1 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:02:36 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:02:36 -0000 Subject: [GHC] #8416: GHC.Generics needs more documentation In-Reply-To: <044.12e90915219726766b58c538fb55bf12@haskell.org> References: <044.12e90915219726766b58c538fb55bf12@haskell.org> Message-ID: <059.e7e8270ba56fad2f0891f576daff17af@haskell.org> #8416: GHC.Generics needs more documentation -------------------------------------+------------------------------------- Reporter: tibbe | Owner: Type: bug | Status: closed Priority: normal | Milestone: 7.8.1 Component: libraries/base | Version: 7.6.3 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: Type of failure: Documentation | Unknown/Multiple bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:02:58 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:02:58 -0000 Subject: [GHC] #8468: ghc panic in deriving Generic1 on Array# In-Reply-To: <044.ffb20432abcbdb672e4810bd2bb326da@haskell.org> References: <044.ffb20432abcbdb672e4810bd2bb326da@haskell.org> Message-ID: <059.be17f0e48ea3734acebcbea8739efec4@haskell.org> #8468: ghc panic in deriving Generic1 on Array# -------------------------------------+------------------------------------- Reporter: ghorn | Owner: dreixel Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.6.3 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Compile-time | Test Case: crash | generics/T8468 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:04:13 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:04:13 -0000 Subject: [GHC] #7878: Panic when using DerivingGeneric with hs-boot In-Reply-To: <048.0960263e2c9db9a14219a28fbdc4c407@haskell.org> References: <048.0960263e2c9db9a14219a28fbdc4c407@haskell.org> Message-ID: <063.13d6897f27aa9249a815ee8cd9644a54@haskell.org> #7878: Panic when using DerivingGeneric with hs-boot -------------------------------------+------------------------------------- Reporter: ryant5000 | Owner: dreixel Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.7 Resolution: fixed | Keywords: Generics Operating System: Linux | Architecture: x86_64 | (amd64) Type of failure: Compile-time | Test Case: crash | generics/T7878 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:05:17 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:05:17 -0000 Subject: [GHC] #7487: Deriving Generic1 for a type containing Either In-Reply-To: <042.658e259e8b61e25bac640355f0910e07@haskell.org> References: <042.658e259e8b61e25bac640355f0910e07@haskell.org> Message-ID: <057.6a70c223d2de46ea277d4159aa288dc8@haskell.org> #7487: Deriving Generic1 for a type containing Either -------------------------------------+------------------------------------- Reporter: spl | Owner: dreixel Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.7 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:05:34 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:05:34 -0000 Subject: [GHC] #7444: Update documentation regarding derivability of Generic1 In-Reply-To: <042.731284d2f3de16f4843606b1ce31668e@haskell.org> References: <042.731284d2f3de16f4843606b1ce31668e@haskell.org> Message-ID: <057.e5a78fd8b615365ee31cac237a6400ae@haskell.org> #7444: Update documentation regarding derivability of Generic1 -------------------------------------+------------------------------------- Reporter: spl | Owner: dreixel Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.7 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:06:40 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:06:40 -0000 Subject: [GHC] #7422: GHC panics while trying to derive Generic for GADT with kind-lifted phantom parameter In-Reply-To: <049.8603507c919e2c8c6261f76271938ff2@haskell.org> References: <049.8603507c919e2c8c6261f76271938ff2@haskell.org> Message-ID: <064.3e17baa233b6fff2acfe33dea697a1c6@haskell.org> #7422: GHC panics while trying to derive Generic for GADT with kind-lifted phantom parameter -------------------------------------+------------------------------------- Reporter: rpglover64 | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.4.1 Resolution: duplicate | Keywords: Generics Operating System: MacOS X | Architecture: x86 Type of failure: Compile-time | Test Case: crash | polykinds/T7422 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:08:55 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:08:55 -0000 Subject: [GHC] #7346: Allow the use of `deriving` for GHC generics In-Reply-To: <047.98a2cadfb420a57e4024d3aaa2403f08@haskell.org> References: <047.98a2cadfb420a57e4024d3aaa2403f08@haskell.org> Message-ID: <062.49ecce5b4f09003ede40e1d0f16643d0@haskell.org> #7346: Allow the use of `deriving` for GHC generics -------------------------------------+------------------------------------- Reporter: kosmikus | Owner: dreixel Type: feature request | Status: closed Priority: normal | Milestone: 7.8.1 Component: Compiler | Version: 7.7 Resolution: duplicate | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #5462 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:09:56 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:09:56 -0000 Subject: [GHC] #7035: `deriving instance Generic (HsExpr Id)` raises panic In-Reply-To: <056.65dbe81973731d13d37f045d1dbb2ece@haskell.org> References: <056.65dbe81973731d13d37f045d1dbb2ece@haskell.org> Message-ID: <071.82eb7452eccd4bf0a7c06ccbbfcd3ed2@haskell.org> #7035: `deriving instance Generic (HsExpr Id)` raises panic -------------------------------------+------------------------------------- Reporter: Daniel | Owner: dreixel Schuessler | Type: bug | Status: closed Priority: normal | Milestone: 7.8.1 Component: Compiler | Version: 7.4.2 Resolution: duplicate | Keywords: Generics Operating System: Linux | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: 7255 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:10:10 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:10:10 -0000 Subject: [GHC] #11793: Confusing type error from constrained class method In-Reply-To: <049.66d83c7f7ec1f2be250a76e4769b49e0@haskell.org> References: <049.66d83c7f7ec1f2be250a76e4769b49e0@haskell.org> Message-ID: <064.da3ac54e8425fd8b4951987af61e924a@haskell.org> #11793: Confusing type error from constrained class method -------------------------------------+------------------------------------- Reporter: gridaphobe | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc2 Resolution: | Keywords: error-message Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): > Is this intended? You are asking a question about a separate thing, unrelated to this ticket, namely the parsing of implicit parameter constraints. It looks as though they have to be in parens, as things stand. So {{{ f :: (?x::Int) => blah -- ok f :: ?x::Int => blah -- not ok }}} I see no fundamental reason why the second should be not-ok. By all means open a ticket, and offer a parser patch, if you think it's important. Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:10:48 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:10:48 -0000 Subject: [GHC] #5936: Support for data families in generics In-Reply-To: <046.91eced0f46ae48328346c8ea7c4ab4dc@haskell.org> References: <046.91eced0f46ae48328346c8ea7c4ab4dc@haskell.org> Message-ID: <061.6a6315f3c6e86a1f17049035e24ea285@haskell.org> #5936: Support for data families in generics -------------------------------------+------------------------------------- Reporter: reinerp | Owner: dreixel Type: feature request | Status: closed Priority: normal | Milestone: 7.6.1 Component: Compiler | Version: 7.4.1 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: | generics/GEq1, | generics/GenCanDoRep0 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:11:08 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:11:08 -0000 Subject: [GHC] #5884: GHC panics while trying to derive a Generic instance for Complex a In-Reply-To: <042.f4dad4827c189e74dbb85f5828a25471@haskell.org> References: <042.f4dad4827c189e74dbb85f5828a25471@haskell.org> Message-ID: <057.e3e4d645f24892310f9c38ffd29ae884@haskell.org> #5884: GHC panics while trying to derive a Generic instance for Complex a -------------------------------------+------------------------------------- Reporter: mux | Owner: dreixel Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.4.1 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Compile-time | Test Case: crash | generics/T5884 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:12:43 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:12:43 -0000 Subject: [GHC] #5464: Change the way the extra bindings for the generic representation are generated In-Reply-To: <046.49cdd3e5f6fbd76ebe6f43d66e985e69@haskell.org> References: <046.49cdd3e5f6fbd76ebe6f43d66e985e69@haskell.org> Message-ID: <061.9ef544db08a69f5cc457bc0fcda69891@haskell.org> #5464: Change the way the extra bindings for the generic representation are generated -------------------------------------+------------------------------------- Reporter: dreixel | Owner: dreixel Type: task | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.3 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:13:42 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:13:42 -0000 Subject: [GHC] #11795: Performance issues with replicateM_ In-Reply-To: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> References: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> Message-ID: <062.cd807c4784063cf4abc8a804eb667f47@haskell.org> #11795: Performance issues with replicateM_ -------------------------------------+------------------------------------- Reporter: snoyberg | Owner: snoyberg Type: bug | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Runtime | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2086 Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): On Phab:D2086 Simon posed the very reasonable question of //why// these two differ so significantly in performance. In my original reading of the patch I had assumed that the reason was that the "fast" version would enable unboxing of the `Int` accumulator while the "slow" version would not. Looking at the Core, however, this does not appear to be the difference: this accumulator is unboxed in both cases. The actual difference is that the self-recursive nature of the slow version inhibits inlining, which means we never get to specialise to the action. Instead we end up with, {{{#!hs $w$sreplicateM_noWW :: forall a. Int# -> IO a -> State# RealWorld -> (# State# RealWorld, () #) $w$sreplicateM_noWW = \ (@ a) (ww :: Int#) (w :: IO a) (w1 :: State# RealWorld) -> case ww of ds { __DEFAULT -> case (w `cast` ...) w1 of _ { (# ipv, ipv1 #) -> $w$sreplicateM_noWW @ a (-# ds 1#) w ipv }; 0# -> (# w1, () #) } lvl2 :: Ptr CChar -> State# RealWorld -> (# State# RealWorld, () #) lvl2 = \ (x :: Ptr CChar) (eta :: State# RealWorld) -> $w$sreplicateM_noWW @ CChar 100000000# (($fStorableInt21 (x `cast` ...)) `cast` ...) eta }}} Which gives us O(n) slow calls. This stands in stark contrast to the fast variant, which compiles down to this beautiful allocation-free loop, {{{#!hs $wgo12 :: Int# -> State# RealWorld -> (# State# RealWorld, () #) $wgo12 = \ (ww :: Int#) (w :: State# RealWorld) -> case tagToEnum# @ Bool (<=# ww 0#) of _ { False -> case getForeignEncoding1 of _ { (getForeignEncoding5, setForeignEncoding1) -> case (getForeignEncoding5 `cast` ...) w of _ { (# ipv, ipv1 #) -> case charIsRepresentable3 @ () ipv1 lvl1 (lvl2 `cast` ...) ipv of _ { (# ipv2, ipv3 #) -> case seq# @ () @ RealWorld ipv3 ipv2 of _ { (# ipv4, ipv5 #) -> $wgo12 (-# ww 1#) ipv4 } } } }; True -> (# w, () #) } }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:13:54 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:13:54 -0000 Subject: [GHC] #5227: Large space usage when deriving Generic In-Reply-To: <044.c6d75a8747ccd17569d8cb1eb7e2d859@haskell.org> References: <044.c6d75a8747ccd17569d8cb1eb7e2d859@haskell.org> Message-ID: <059.34d23f31e551fdacb39d3b5faf866dff@haskell.org> #5227: Large space usage when deriving Generic -------------------------------------+------------------------------------- Reporter: igloo | Owner: dreixel Type: bug | Status: closed Priority: high | Milestone: 7.2.1 Component: Compiler | Version: 7.1 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:14:22 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:14:22 -0000 Subject: [GHC] #5220: GHC internal error when missing -XFlexibleContexts with generics In-Reply-To: <046.5f3bc6f219bf322329b7ade36727e3a1@haskell.org> References: <046.5f3bc6f219bf322329b7ade36727e3a1@haskell.org> Message-ID: <061.7e315eacb2ea67267a2c2d6337e2fcfa@haskell.org> #5220: GHC internal error when missing -XFlexibleContexts with generics -------------------------------------+------------------------------------- Reporter: dreixel | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.1 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: GEq2 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:34:39 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:34:39 -0000 Subject: [GHC] #11811: GHC sometimes misses a CUSK Message-ID: <047.aa048334e27dc5846bc96224ce8abef4@haskell.org> #11811: GHC sometimes misses a CUSK -------------------------------------+------------------------------------- Reporter: goldfire | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- {{{ {-# LANGUAGE TypeInType #-} data Test (a :: x) (b :: x) :: x -> * where K :: Test Int Bool Double }}} fails, because GHC thinks that `Test` does not have a CUSK. It should have a CUSK, because while there is no `forall x` in the result kind, the `x` is in scope from previous use in kinds. Fix en route. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 14:34:51 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 14:34:51 -0000 Subject: [GHC] #11811: GHC sometimes misses a CUSK In-Reply-To: <047.aa048334e27dc5846bc96224ce8abef4@haskell.org> References: <047.aa048334e27dc5846bc96224ce8abef4@haskell.org> Message-ID: <062.734676d0bc9a6e365ab82504b8fe1e90@haskell.org> #11811: GHC sometimes misses a CUSK -------------------------------------+------------------------------------- Reporter: goldfire | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * keywords: => TypeInType -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 17:50:48 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 17:50:48 -0000 Subject: [GHC] #11795: Performance issues with replicateM_ In-Reply-To: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> References: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> Message-ID: <062.8e91439e0efc901e800f7d9c0a6b6882@haskell.org> #11795: Performance issues with replicateM_ -------------------------------------+------------------------------------- Reporter: snoyberg | Owner: snoyberg Type: bug | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Runtime | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2086 Wiki Page: | -------------------------------------+------------------------------------- Comment (by snoyberg): Should I update my changes to refer to the above comment by Ben, which is a pretty thorough coverage of what's going on here? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 18:23:08 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 18:23:08 -0000 Subject: [GHC] #5080: Recompilation bug: recomp008 failed In-Reply-To: <056.e0a120193407d83f328a3bd91f536701@haskell.org> References: <056.e0a120193407d83f328a3bd91f536701@haskell.org> Message-ID: <071.04371fb906a021dad42adfac454abef6@haskell.org> #5080: Recompilation bug: recomp008 failed --------------------------------------+------------------------------ Reporter: daniel.is.fischer | Owner: igloo Type: bug | Status: closed Priority: normal | Milestone: 7.2.1 Component: Compiler | Version: 7.0.3 Resolution: fixed | Keywords: Operating System: Linux | Architecture: x86 Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | --------------------------------------+------------------------------ Comment (by ezyang): Note: the first commit fix was actually 63c13a7bcbf96f43dfd2bbe9f33b0b4705044567 and involved adding a sleep. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 18:45:20 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 18:45:20 -0000 Subject: [GHC] #11801: RFC: Make browse command display everything unqualified In-Reply-To: <051.96966883eb9438134bafa36e0302f412@haskell.org> References: <051.96966883eb9438134bafa36e0302f412@haskell.org> Message-ID: <066.759744889c66f48ad473479a7747fcd7@haskell.org> #11801: RFC: Make browse command display everything unqualified -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature request | Status: new Priority: lowest | Milestone: Component: GHCi | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Iceland_jack): My thought would be to display everything unqualified, but it could always be a flag: `:newbrowse!`. The actual command name can be bikesheded -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 19:21:52 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 19:21:52 -0000 Subject: [GHC] #11801: RFC: Make browse command display everything unqualified In-Reply-To: <051.96966883eb9438134bafa36e0302f412@haskell.org> References: <051.96966883eb9438134bafa36e0302f412@haskell.org> Message-ID: <066.8693b440085c847b590b3769372561d4@haskell.org> #11801: RFC: Make browse command display everything unqualified -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature request | Status: new Priority: lowest | Milestone: Component: GHCi | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11208 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by thomie): * related: => #11208 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 21:11:25 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 21:11:25 -0000 Subject: [GHC] #11801: RFC: Make browse command display everything unqualified In-Reply-To: <051.96966883eb9438134bafa36e0302f412@haskell.org> References: <051.96966883eb9438134bafa36e0302f412@haskell.org> Message-ID: <066.26b188e167d725bae96d1bad1f5038b5@haskell.org> #11801: RFC: Make browse command display everything unqualified -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature request | Status: new Priority: lowest | Milestone: Component: GHCi | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11208 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Don?t resort to configurability (or additional commands) until we are sure that there is not a design that works for everyone :-) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 21:57:01 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 21:57:01 -0000 Subject: [GHC] #11795: Performance issues with replicateM_ In-Reply-To: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> References: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> Message-ID: <062.1db7e397c9865c92c80c515c1301573d@haskell.org> #11795: Performance issues with replicateM_ -------------------------------------+------------------------------------- Reporter: snoyberg | Owner: snoyberg Type: bug | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Runtime | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2086 Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Great. So it inlines bodily, and specialises to the particular call site. That is precisely what I speculated in my Phab comment. So yes, it'd good to make a Note in the code which says what my comment says, and points to this ticket for more detail. I've learned that it's extremely helpful leaving breadcrumbs like this in the code, so the next time someone is fiddling with that code, they do so in the light of earlier learning. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 22:32:26 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 22:32:26 -0000 Subject: [GHC] #11805: Ability to use record fields for automatic derivation of user-defined classes. In-Reply-To: <048.a8bf80140dcd34cf9bcb7b67908c1fa7@haskell.org> References: <048.a8bf80140dcd34cf9bcb7b67908c1fa7@haskell.org> Message-ID: <063.1e9719902cef4f296ff0a2ef6ec27d1f@haskell.org> #11805: Ability to use record fields for automatic derivation of user-defined classes. -------------------------------------+------------------------------------- Reporter: Tientuine | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Tientuine): I appreciate the prompt reply. I was not aware of the OverloadedRecordFields proposal (at least, not the third part). I had done a bit of research using the Wiki page on ExtensibleRecords as a starting point, but this proposal was not mentioned there. It seems that Parts 1 and 3 of OverloadedRecords together accomplish everything I was looking for (and more, of course) from my own proposal. By making a subclass of two HasField magic-classes, it would be easy to define a class like //Desc// from my example above, which comprises multiple fields and has a name that is lighter-weight and domain-specific. Obviously, it's a big win over my proposal that we would still be able to use the field-update syntax. Since I don't see any advantage of my proposal over the functionality provided by OverloadedRecordFields, I suppose this Ticket can be closed (unless someone else sees any value in it). Should I close it myself? Not sure about the protocol. I'm looking forward to the completed OverloadedRecordFields proposal! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 7 23:49:10 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 07 Apr 2016 23:49:10 -0000 Subject: [GHC] #11810: Filtering of cost-center profiler output no longer works In-Reply-To: <046.2e4d78063f10b676d001d04121ff9588@haskell.org> References: <046.2e4d78063f10b676d001d04121ff9588@haskell.org> Message-ID: <061.3b77f4861d47b9ae6642faeaff6c4dc0@haskell.org> #11810: Filtering of cost-center profiler output no longer works -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: closed Priority: highest | Milestone: 8.0.1 Component: Profiling | Version: 8.0.1-rc3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2090 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => closed * resolution: => fixed Comment: Merged to `master` and to `ghc-8.0` as e1bd51875a13688814e0bf6633f5feab4c6f52b0. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 02:15:54 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 02:15:54 -0000 Subject: [GHC] #11529: Show instance of Char should print literals for non-ascii printable charcters In-Reply-To: <045.b2e132b07816c9ef2342eb20bb4deb49@haskell.org> References: <045.b2e132b07816c9ef2342eb20bb4deb49@haskell.org> Message-ID: <060.13acf0031ce543f72653197906adff11@haskell.org> #11529: Show instance of Char should print literals for non-ascii printable charcters -------------------------------------+------------------------------------- Reporter: nushio | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nushio): I believe there is an ambiguity in the specification {{{ showLitChar :: Char -> ShowS "Convert a character to a string using only printable characters }}} whether "printable" means ASCII printable or Unicode printable. How shall we solve the ambiguity? By the way, I use `map fromEnum` to investigate the content of the string when lack of appropriate font or when I am debugging a pretty printer. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 08:21:08 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 08:21:08 -0000 Subject: [GHC] #11781: Improve common sub-expression In-Reply-To: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> References: <046.d41bb7973b2b27b60de694c658d90193@haskell.org> Message-ID: <061.edc6e2e67225529cb7dffaf64ea9f140@haskell.org> #11781: Improve common sub-expression -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2074 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Joachim Breitner ): In [changeset:"eca86485cdd8441bf50f34133553b630a2baa7f3/ghc" eca8648/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="eca86485cdd8441bf50f34133553b630a2baa7f3" GHC.Base: Use thenIO in instance Applicative IO Since recent changes to CSE, the previous definition were no longer CSEd with thenIO, which resulted in extra steps in the simplifier and hence slightly larger compile times. See ticket:11781#comment:7. Differential Revision: https://phabricator.haskell.org/D2092 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 08:38:22 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 08:38:22 -0000 Subject: [GHC] #11812: Template Haskell can induce non-unique Uniques Message-ID: <047.c1baa8985653a0b59eeec1328ee66507@haskell.org> #11812: Template Haskell can induce non-unique Uniques -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Template | Version: 8.1 Haskell | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- When quoting a Template Haskell expression (or type), you can get your hands on renamed variables. These variables have assigned Uniques. If you then use the same variable locally in ''different'' top-level expressions, chaos can ensue. It's certainly expected that something bizarre would happen if you used the same Unique twice within the same scope, but it surprised me that using the same Unique twice in different scopes would cause a problem. Below is the rather hard-won reduced test case: {{{ {-# LANGUAGE TemplateHaskell, PolyKinds, RankNTypes, TypeFamilies #-} module Bug where import Language.Haskell.TH import Data.Type.Equality type Const a b = a $( do ForallT [PlainTV n] _ _ <- [t| forall n. n |] let noBang = Bang NoSourceUnpackedness NoSourceStrictness return [ClosedTypeFamilyD (TypeFamilyHead (mkName "F1") [ KindedTV (mkName "a") (VarT n) , PlainTV (mkName "b") ] (KindSig (VarT n)) Nothing) [TySynEqn [VarT (mkName "a"), VarT (mkName "b")] (ConT ''Const `AppT` VarT (mkName "a") `AppT` (ConT (mkName "T1") `AppT` VarT (mkName "a") `AppT` VarT (mkName "b")))] ,DataD [] (mkName "T1") [ KindedTV (mkName "a") (VarT n) , PlainTV (mkName "b") , PlainTV (mkName "c")] Nothing [NormalC (mkName "K1") [(noBang, ConT ''(:~:) `AppT` VarT (mkName "c") `AppT` (ConT (mkName "F1") `AppT` VarT (mkName "a") `AppT` VarT (mkName "b")))]] []]) }}} This blob produces {{{ type family F1 (a :: n_auRf) b :: n_auRf where F1 a b = Const a (T1 a b) data T1 (a :: n_auRf) b c = K1 ((:~:) c (F1 a b)) }}} which compiles fine when typed in directly. Note that this hinges on the `SigTv` behavior of kind variables in non-CUSK declarations, but I don't think that's the nub of the problem. What happens is this: during renaming, the `n`s are renamed to have the same `Unique`, because `n` is `Exact`. Type-checking invents `SigTv`s for each `n`. Naturally, both `n`s have ''different'' `IORef`s stored in their `TcTyVarDetails`. When the two `n`s are compared during checking, though, their `Unique`s are the same, and so nothing happens -- even though they should be unified. The upshot is that we get one logical variable `n` with different `IORef`s in different occurrences, causing chaos. It might be reasonable to punt on this, but we should document in the manual what the problem is. It puzzled me for quite a while when the problem came up in real code! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 08:39:05 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 08:39:05 -0000 Subject: [GHC] #11813: Template Haskell's Exact names don't shadow correctly Message-ID: <047.ec4624f6991f35a477e6b09cde05435e@haskell.org> #11813: Template Haskell's Exact names don't shadow correctly -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Template | Version: 8.1 Haskell | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Having two `Exact` names shadow one another confuses the renamer. In particular, if an `Exact` name is used twice in kind annotations of a type declaration, the `hsq_implicit` field of the `HsQTyVars` gets a duplicate. I've been unable to cause harm with this, but it's definitely wrong as is. Fix en route. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 08:41:18 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 08:41:18 -0000 Subject: [GHC] #11814: Insufficient in-scope-sets Message-ID: <047.796364da21ee40afb75e08d9ee70f961@haskell.org> #11814: Insufficient in-scope-sets -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- I found two spots where we were making insufficient `InScopeSet`s (while updating `singletons` for 8.0), in `mkCastTy` and `mkWWargs`. I don't have a reduced test case for either; if you really want one, just try compiling `singletons` once it's updated. Fix en route. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 09:09:27 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 09:09:27 -0000 Subject: [GHC] #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol In-Reply-To: <044.47110be31f0548a4f623e31c109dd321@haskell.org> References: <044.47110be31f0548a4f623e31c109dd321@haskell.org> Message-ID: <059.a19b7d337c62598fec6e8573e587ea26@haskell.org> #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol -------------------------------------+------------------------------------- Reporter: jeiea | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 (Linking) | Resolution: | Keywords: Operating System: Windows | Architecture: x86_64 Type of failure: Compile-time | (amd64) crash | Test Case: Blocked By: | Blocking: Related Tickets: #11223 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by jeiea): It is simplified drastically. I found just using foreign imported rgb function from other package emits same error. But I don't know whether its cause is same to original project. {{{ >stack build child1-0.1.0.0: configure child1-0.1.0.0: build child1-0.1.0.0: copy/register ghc-bug-maybe-0.1.0.0: configure ghc-bug-maybe-0.1.0.0: build Completed 2 action(s). -- While building package ghc-bug-maybe-0.1.0.0 using: C:\AppData\Roaming\stack\setup-exe-cache\x86_64-windows\setup- Simple-Cabal-1.22.5.0-ghc-7.10.3.exe --builddir=.stack-work\dist\2672c1f3 build lib:ghc-bug-maybe exe:ghc-bug-maybe-exe --ghc-options " -ddump-hi -ddump-to-file" Process exited with code: ExitFailure 1 Logs have been written to: D:\ghc-bug-maybe-2\.stack-work\logs\ghc- bug-maybe-0.1.0.0.log Configuring ghc-bug-maybe-0.1.0.0... Preprocessing library ghc-bug-maybe-0.1.0.0... [1 of 1] Compiling Lib ( src\Lib.hs, .stack- work\dist\2672c1f3\build\Lib.o ) In-place registering ghc-bug-maybe-0.1.0.0... Preprocessing executable 'ghc-bug-maybe-exe' for ghc-bug- maybe-0.1.0.0... [1 of 1] Compiling Main ( app\Main.hs, .stack- work\dist\2672c1f3\build\ghc-bug-maybe-exe\ghc-bug-maybe-exe-tmp\Main.o ) Linking .stack-work\dist\2672c1f3\build\ghc-bug-maybe-exe\ghc-bug- maybe-exe.exe ... D:\ghc-bug-maybe2\.stack-work\install\b67103b8\lib\x86_64-windows- ghc-7.10.3\child1-0.1.0.0-CPbTpkFzTQ4DOsiuVDCvQJ/libHSchild1-0.1.0.0-CPbTpkFzTQ4DOsiuVDCvQJ.a(Lib.o):fake:(.text+0x6f): undefined reference to `rgb' collect2.exe: error: ld returned 1 exit status }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 09:09:48 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 09:09:48 -0000 Subject: [GHC] #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol In-Reply-To: <044.47110be31f0548a4f623e31c109dd321@haskell.org> References: <044.47110be31f0548a4f623e31c109dd321@haskell.org> Message-ID: <059.c6309258fabbbec846728937628deb0c@haskell.org> #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol -------------------------------------+------------------------------------- Reporter: jeiea | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 (Linking) | Resolution: | Keywords: Operating System: Windows | Architecture: x86_64 Type of failure: Compile-time | (amd64) crash | Test Case: Blocked By: | Blocking: Related Tickets: #11223 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by jeiea): * Attachment "ghc-bug-maybe-2.7z" added. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 09:09:57 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 09:09:57 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) Message-ID: <047.a500f487fe67f459851db750fa12afab@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature | Status: new request | Priority: low | Milestone: Component: | Version: libraries/base | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- A recurring pattern is to get a list of all consecutive elements of a list, for further processing. I propose adding the following function to `Data.List` for this: {{{ mapConsecutives :: (a -> a -> b) -> [a] -> [b] mapConsecutives _ [] = [] mapConsecutives f xs = zipWith f xs (tail xs) }}} Since it requires pattern matching, to separate the empty case, it is not practical to inline at each use site. Sidenote: A similar function `mapAdjacent` is available in the `utility- ht` library (with a partial implementation(!)) [1]. I realise that `Data.List` is often imported unqualified and hence additions may cause trouble. I would have raised this on the libraries mailing list first, but the guidelines for proposals pointed me here. [1] http://hackage.haskell.org/package/utility-ht-0.0.11/docs/Data-List- HT.html#v:mapAdjacent -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 09:16:13 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 09:16:13 -0000 Subject: [GHC] #11801: RFC: Make browse command display everything unqualified In-Reply-To: <051.96966883eb9438134bafa36e0302f412@haskell.org> References: <051.96966883eb9438134bafa36e0302f412@haskell.org> Message-ID: <066.8ca625cd2cb5b346b842794e0c5b92f4@haskell.org> #11801: RFC: Make browse command display everything unqualified -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature request | Status: new Priority: lowest | Milestone: Component: GHCi | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11208 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): > My thought would be to display everything unqualified, Let?s get more concrete. Assume we have this module: {{{#!hs module Foo import Prelude hiding (Either) import qualified Prelude import Bar (OtherType) type SomeType = .. type Either a b = .. foo :: SomeType -> OtherType -> Either a b -> Maybe a -> Prelude.Either a b }}} then currently `:browse Foo` (with only `Prelude` imported, but not `Bar` or `Foo`) would give this {{{#!hs > :browse Foo Foo.foo :: SomeType -> Bar.OtherType -> Foo.Either a b -> Maybe a -> Either a b }}} Your suggestion (everything unqualified) would be {{{#!hs > :browse Foo type SomeType type Either a b foo :: SomeType -> OtherType -> Either a b -> Maybe a -> Either a b }}} while mine would yield: {{{#!hs > :browse Foo type SomeType type Either a b foo :: SomeType -> Bar.OtherType -> Foo.Either a b -> Maybe a -> Either a b }}} Note how my variant of your proposal * avoids disambiguities in the types of symbols, if there are name clashes with type in scope * still indicates modules of symbols that are neither in scope nor from the browsed module * still avoids lots of module prefixes -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 09:26:19 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 09:26:19 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.284262d8758e5ddf42b5d7c4fd995a3f@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Fun fact: The definition is equivalent to {{{#!hs mapConsecutives :: (a -> a -> b) -> [a] -> [b] mapConsecutives f xs = zipWith f xs (tail xs) }}} because of lazyness and `zipWith _ [] _ = []`. But it might still not be worth inlining it, as it cannot not fuse with `xs` for various reasons. No strong opinion on this function, but I would not object. Is there a better name that immediatelly gives away what it does? Also, in the interest of smaller building blocks, should we maybe provide {{{#!hs consecutiveElements:: [a] -> [(a,a)] consecutiveElements xs = zip xs (tail xs) }}} instead? Again, better name wanted. It also has a slightly more helpful type signature. Or provide both, similar to `zip` and `zipWith`. How about the names `zipConsecutive` and `zipConsecutiveWith`? By their analogies to `zip` and `zipWith`, the usage should be pretty clear. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 11:27:22 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 11:27:22 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.92e4c2fbb32423e1ca935ac22a6796a4@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by holmisen): Ah, I never thought of the laziness making `tail` safe here. Really good to know. `zipConsecutive` and `zipConsecutiveWith` looks good. Should not be too likely to collide with other names for users who import `Data.List`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 11:37:41 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 11:37:41 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.4ae7d1172a338c3616d500ee1e31cec7@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by nomeata): * cc: dfeuer (added) Comment: If we indeed provide this function here, we might as well want to invest the effort to provide a well-engineered implementation. You could try to find out if * an explicit recursion function is significantly faster and * if it is possible to write `zipConsecutive` as a good consumer or good producer or both, in terms of list fusion. David Feuer might be interested in thinking about the second point. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 14:07:10 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 14:07:10 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.099d603609230ec53152309ad3fac3cd@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by holmisen): Some basic benchmarking using criterion to compare both functions implemented by zip and zipWith versus explicit recursion did not show much difference. Explicit recursion seem to be very slightly faster on my setup (compiling with -O). However, this was my first time using criterion, so I could have made all sorts of silly mistakes. I do not know how to measure the list fusion producer/consumer behavior. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 14:15:39 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 14:15:39 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.ee07d4759ee539f52fa01b8ae97c5f35@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Feel free to push your code somewhere (e.g. a github gist) for review. It might be educating to look at the Core code (`-ddump-simpl`). -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 14:19:17 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 14:19:17 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.4fc57060e1e5ef7c19e788b0c358b1a7@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by dfeuer): Replying to [comment:3 nomeata]: > If we indeed provide this function here, we might as well want to invest the effort to provide a well-engineered implementation. You could try to find out if > > * an explicit recursion function is significantly faster and > * if it is possible to write `zipConsecutive` as a good consumer or good producer or both, in terms of list fusion. > > David Feuer might be interested in thinking about the second point. I thought about something quite similar very recently! The fusion-enabled version would look something like this, with all the usual `RULES` noise added: {{{#!hs zipConsecutiveWith :: (a -> a -> b) -> [a] -> [b] zipConsecutiveWith f xs = build builder where builder c n = foldr go (`seq` n) xs Nothing go x r Nothing = r (Just x) go x r (Just prev) = f prev x `c` r (Just x) }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 14:22:08 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 14:22:08 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.4a5e03930ca0675aa230ca4e9f1d8362@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by dfeuer): For educational porpoises, note that GHC is quite good at recognizing that the recursive call always receives a `Just` value, so it can use a worker- wrapper transformation to avoid all the `Maybe` business. I don't know if the `seq` is strictly necessary here, but times I've left that out of similar forms I've ended up regretting it eventually. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 14:23:12 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 14:23:12 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.5b0159c29167268fbd57b23229d66abd@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Right, I expected something like this with `Nothing` and `Just`, which made me less hopeful for good performance. Are you sure that GHC is able to w/w the worker here and avoid the Maybes? Maybe with argument constructor specialization... I should just try it out. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 15:04:16 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 15:04:16 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.6ed43b227f96cc0a25df39bd3db1dde9@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by holmisen): Replying to [comment:5 nomeata]: > Feel free to push your code somewhere (e.g. a github gist) for review. This is what I used: http://lpaste.net/159278 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 15:33:25 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 15:33:25 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.1079f82323abd27a71032ac926c5cab0@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Thanks. With large lists, `-O2` and `zipConsWith`, there is a significant difference (15% faster). With just `-O`, the difference is smaller (10%), but still there. But the libraries are built with `-O2` anyways. So I?d be in favor of the explicitly recursive variants. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 16:04:24 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 16:04:24 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.b944ee128efe91fe9afa410a7c31f33d@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by holmisen): Thank you. I could update the proposal description with an edit explaining that two functions (zipConsecutives and zipConsecutivesWith) be added. Then I am not sure how to proceed. Should I just wait for a while to let this settle or should I make a patch or some other thing? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 16:26:00 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 16:26:00 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.be94985d37a0f23aa41d1561b5acea3d@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by dfeuer): I'd like to see some numbers for the fusion-capable version in various contexts. Also, I'm not fully convinced that this particular function is of sufficient general utility to include in `Data.List`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 16:47:16 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 16:47:16 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.7cad542d7b6a77740321451077067ac7@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by holmisen): Replying to [comment:12 dfeuer]: > I'd like to see some numbers for the fusion-capable version in various contexts. Also, I'm not fully convinced that this particular function is of sufficient general utility to include in `Data.List`. I have thought about compiling a list of use cases for this in a blog post or similar. Maybe now I'll actually get around to do that. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 20:15:07 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 20:15:07 -0000 Subject: [GHC] #11656: Alllow static pointers to local closed definitions In-Reply-To: <044.9cd8af9f533a09aabdba922a1db355ab@haskell.org> References: <044.9cd8af9f533a09aabdba922a1db355ab@haskell.org> Message-ID: <059.5e18f70fa34bc70bf00091b248f03c6c@haskell.org> #11656: Alllow static pointers to local closed definitions -------------------------------------+------------------------------------- Reporter: mboes | Owner: | facundo.dominguez Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: 11698 | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by facundo.dominguez): * owner: => facundo.dominguez -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 20:23:15 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 20:23:15 -0000 Subject: [GHC] #11656: Alllow static pointers to local closed definitions In-Reply-To: <044.9cd8af9f533a09aabdba922a1db355ab@haskell.org> References: <044.9cd8af9f533a09aabdba922a1db355ab@haskell.org> Message-ID: <059.9b227fa826e927c2b2413784eb841601@haskell.org> #11656: Alllow static pointers to local closed definitions -------------------------------------+------------------------------------- Reporter: mboes | Owner: | facundo.dominguez Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: 11698 | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by facundo.dominguez): There is a working implementation in https://github.com/ghc/ghc/compare/master...tweag:fd/float-static I hope to submit a phabricator revision next week. Currently have to update the documentation, improve error messages and update linter. I would be thankful for any suggestion about which part of the linter to modify in order to produce errors when applications of the {{{StaticPtr}}} constructor appear nested within other expressions. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 8 20:30:26 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 08 Apr 2016 20:30:26 -0000 Subject: [GHC] #11656: Alllow static pointers to local closed definitions In-Reply-To: <044.9cd8af9f533a09aabdba922a1db355ab@haskell.org> References: <044.9cd8af9f533a09aabdba922a1db355ab@haskell.org> Message-ID: <059.007091b898aeafb7f574f95c236351b9@haskell.org> #11656: Alllow static pointers to local closed definitions -------------------------------------+------------------------------------- Reporter: mboes | Owner: | facundo.dominguez Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: 11698 | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): > I would be thankful for any suggestion about which part of the linter to modify in order to produce errors when applications of the {{{StaticPtr}}} constructor appear nested within other expressions. It's a bit awkward with the current structure of `CoreLint`. I best might be * Make `lintCoreExpr` complain if if it finds a `StaticPtr` constructor * Make the non-recursive case of `lint_bind` (in `lintCorBindings`) call a new function `lintTopNonRec` or something. * `lintTopNonRec` can have a case for `(StaticPtr e1 e2)` on its RHS, and allow it. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 9 10:30:07 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 09 Apr 2016 10:30:07 -0000 Subject: [GHC] #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol In-Reply-To: <044.47110be31f0548a4f623e31c109dd321@haskell.org> References: <044.47110be31f0548a4f623e31c109dd321@haskell.org> Message-ID: <059.ff3226bc99fb45860aa532ceb0d61563@haskell.org> #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol -------------------------------------+------------------------------------- Reporter: jeiea | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 (Linking) | Resolution: | Keywords: Operating System: Windows | Architecture: x86_64 Type of failure: Compile-time | (amd64) crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Phyx-): * related: #11223 => Comment: I can't seem to reproduce this even on `7.10.3`. {{{ $ ghc --interactive Lib GHCi, version 7.10.3: http://www.haskell.org/ghc/ :? for help [1 of 1] Compiling Lib ( Lib.hs, interpreted ) Ok, modules loaded: Lib. *Lib> :browse main :: IO () *Lib> main 460035 hello *Lib> }}} I'm not sure what stack is doing, but in your cabal file you specify a `Lib.c` and a `Lib.hs` in the same folder. What is most likely happening is that both compile to `Lib.o` and the wrong object file is loaded. The package doesn't compile either on a normal compile. try renaming `Lib.hs` to something else. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 9 13:01:30 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 09 Apr 2016 13:01:30 -0000 Subject: [GHC] #11806: GHC does not warn for mistakenly empty case In-Reply-To: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> References: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> Message-ID: <060.73a606b38d377eecc9cfc7a60feca347@haskell.org> #11806: GHC does not warn for mistakenly empty case -------------------------------------+------------------------------------- Reporter: dfeuer | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC accepts | Unknown/Multiple invalid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by gkaracha): Replying to [ticket:11806 dfeuer]: > {{{#!hs > {-# LANGUAGE EmptyCase #-} > {-# OPTIONS_GHC -Wall -fwarn-incomplete-uni-patterns #-} > > oops :: Int -> a > oops x = case x of {} > }}} > > Since `Int` is inhabited, I would expect a warning, but I get none. Since empty case is typically used in situations where programmers want GHC to see an absurdity, this seems most unfortunate. Indeed. Yet, I feel like there is a big misconception here, from the you said > Since `Int` is inhabited It is indeed inhabited, but **like any other type in Haskell**, where every type is inhabited. That is, for the following (see #11390) a warning should also be expected: {{{#!hs silly1 :: Void -> Void silly1 x = case x of {} }}} There have been separate discussions on this (see related tickets #10746, #7669, #11390) and I think that we have a design choice to make here. Unless you force the argument in some other way like: {{{#!hs silly2 :: Void -> Void silly2 x = x `seq` case x of {} }}} or {{{#!hs silly3 :: Void -> Void silly3 (!x) = case x of {} }}} then it is indeed non-exhaustive. This means that in almost all cases, an empty case expression will issue a warning (which I think is the right thing to do). Of course, in `silly2` and `silly3` the warning is too conservative but remember that type inhabitation is undecidable. Hence, I see two choices here. We can: 1. Always issue a non-exhaustive warning for empty case expressions, or 2. Never issue a non-exhaustive warning for empty case expressions. I am pointing this out because before #7669 we would issue the warning you seek here and it has been intentionally changed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 9 13:02:08 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 09 Apr 2016 13:02:08 -0000 Subject: [GHC] #11806: GHC does not warn for mistakenly empty case In-Reply-To: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> References: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> Message-ID: <060.841ec676ebabc82f1b4e3b170435d2d2@haskell.org> #11806: GHC does not warn for mistakenly empty case -------------------------------------+------------------------------------- Reporter: dfeuer | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC accepts | Unknown/Multiple invalid program | Test Case: Blocked By: | Blocking: Related Tickets: #10746, #7669, | Differential Rev(s): #11390 | Wiki Page: | -------------------------------------+------------------------------------- Changes (by gkaracha): * related: => #10746, #7669, #11390 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 9 13:23:05 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 09 Apr 2016 13:23:05 -0000 Subject: [GHC] #11806: GHC does not warn for mistakenly empty case In-Reply-To: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> References: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> Message-ID: <060.2bd8e40d3f86876c39f412284d5fec0e@haskell.org> #11806: GHC does not warn for mistakenly empty case -------------------------------------+------------------------------------- Reporter: dfeuer | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: GHC accepts | Unknown/Multiple invalid program | Test Case: Blocked By: | Blocking: Related Tickets: #10746, #7669, | Differential Rev(s): #11390 | Wiki Page: | -------------------------------------+------------------------------------- Changes (by gkaracha): * keywords: => PatternMatchWarnings -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 9 13:23:44 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 09 Apr 2016 13:23:44 -0000 Subject: [GHC] #7669: Empty case causes warning In-Reply-To: <047.310ed8158a885c379e88cd726513d398@haskell.org> References: <047.310ed8158a885c379e88cd726513d398@haskell.org> Message-ID: <062.23b083d9ae296746bb5b12aea529443a@haskell.org> #7669: Empty case causes warning -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 7.7 Resolution: duplicate | Keywords: EmptyCase, | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Incorrect | Test Case: warning at compile-time | deSugar/should_compile/T7669 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by gkaracha): * keywords: EmptyCase => EmptyCase, PatternMatchWarnings -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 9 15:14:31 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 09 Apr 2016 15:14:31 -0000 Subject: [GHC] #11485: Very unhelpful message resulting from kind mismatch In-Reply-To: <050.625a7e9c1404b85e4c1b2b4e1408e546@haskell.org> References: <050.625a7e9c1404b85e4c1b2b4e1408e546@haskell.org> Message-ID: <065.32a61ef7303c1d5ea4fa6de80092a18a@haskell.org> #11485: Very unhelpful message resulting from kind mismatch -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1-rc1 checker) | Resolution: fixed | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * status: new => closed * resolution: => fixed Comment: Luckily, this seems to have been fixed. As of the time of writing, GHC 8.0 gives you the following error now: {{{ $ /opt/ghc/8.0.1/bin/ghci import DtGHCi, version 8.0.0.20160406: http://www.haskell.org/ghc/ :? for help Loaded GHCi configuration from /home/ryanglscott/.ghci ?> import Data.Typeable ?> tyConOf :: Typeable a => Proxy a -> TyCon; tyConOf = typeRepTyCon . typeRep ?> tcList :: TyCon; tcList = tyConOf (Proxy :: Proxy []) :3:36: error: ? Couldn't match type ?* -> *? with ?*? Expected type: Proxy [] Actual type: Proxy [] Use -fprint-explicit-kinds to see the kind arguments ? In the first argument of ?tyConOf?, namely ?(Proxy :: Proxy [])? In the expression: tyConOf (Proxy :: Proxy []) In an equation for ?tcList?: tcList = tyConOf (Proxy :: Proxy []) ?> :set -fprint-explicit-kinds ?> tcList :: TyCon; tcList = tyConOf (Proxy :: Proxy []) :5:36: error: ? Couldn't match type ?* -> *? with ?*? Expected type: Proxy * [] Actual type: Proxy (* -> *) [] ? In the first argument of ?tyConOf?, namely ?(Proxy :: Proxy [])? In the expression: tyConOf (Proxy :: Proxy []) In an equation for ?tcList?: tcList = tyConOf (Proxy :: Proxy []) }}} It even tells you about `-fprint-explicit-kinds`, which makes it abundantly clear that the error resulted from a kind mismatch. Hooray! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 9 15:58:34 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 09 Apr 2016 15:58:34 -0000 Subject: [GHC] #11806: GHC does not warn for mistakenly empty case In-Reply-To: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> References: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> Message-ID: <060.abc24f1b28de4f0346f36c3131732d0c@haskell.org> #11806: GHC does not warn for mistakenly empty case -------------------------------------+------------------------------------- Reporter: dfeuer | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: GHC accepts | Unknown/Multiple invalid program | Test Case: Blocked By: | Blocking: Related Tickets: #10746, #7669, | Differential Rev(s): #11390 | Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): gkaracha, you are right that dfeuer?s working is unfortunate. He probably should have said ?inhabited by a value? (in contrast to ?inhabited by ??). I don?t follow your argument about `silly1` and your conclusion. I would say that an empty case should issue an warning whenever the type has a constructor (and in with GADTs, if GHC cannot prove this constructor to have an impossible type). -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 9 17:07:15 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 09 Apr 2016 17:07:15 -0000 Subject: [GHC] #11806: GHC does not warn for mistakenly empty case In-Reply-To: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> References: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> Message-ID: <060.419f4d74c8fe6ea3aebc8c1511c5c9b1@haskell.org> #11806: GHC does not warn for mistakenly empty case -------------------------------------+------------------------------------- Reporter: dfeuer | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: GHC accepts | Unknown/Multiple invalid program | Test Case: Blocked By: | Blocking: Related Tickets: #10746, #7669, | Differential Rev(s): #11390 | Wiki Page: | -------------------------------------+------------------------------------- Comment (by dfeuer): nomeata speaks my mind. When I said "inhabited", I meant properly inhabited. Empty case should issue a warning under the conditions he indicates. If the type of the scrutinee is not apart from the result types of all constructors, then I've made a mistake and I want to know about it. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 9 17:28:08 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 09 Apr 2016 17:28:08 -0000 Subject: [GHC] #11546: Compiler warning: cast from pointer to integer of different size In-Reply-To: <050.2c1fef46d020babab1aa4b0f7ab8074e@haskell.org> References: <050.2c1fef46d020babab1aa4b0f7ab8074e@haskell.org> Message-ID: <065.f792df7c3c12de72097431afffb7b643@haskell.org> #11546: Compiler warning: cast from pointer to integer of different size -------------------------------------+------------------------------------- Reporter: wereHamster | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by wereHamster): The cast is from OSThreadId (pthread_t) to TaskId (StgWord64). Musl defines the former as `TYPEDEF struct __pthread * pthread_t`. pthread_t is not required to be an arithmetic type (it can be a struct), so musl does not violate POSIX (see http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_types.h.html, scroll to the very bottom, Issue 6). Alternatives: - Cast to (size_t) first, just like in the case of `defined(freebsd_HOST_OS) || defined(darwin_HOST_OS)` (see the implementation of the serialiseTaskId function). A dirty solution which may not work on platforms where pthread_t truly is a struct and not a pointer/integer. - Make TaskId a type alias for OSThreadId (because AFAICS the two are equal). - Allocate our own (numeric) Thread Ids and store them in TLS (on POSIX platforms), to be independent of the implementation of pthread_t. - Simply give up on platforms where pthread_t is not an alias for an arithmetic type (probably difficult to detect at compile / configure time). -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 9 17:56:01 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 09 Apr 2016 17:56:01 -0000 Subject: [GHC] #11155: Trivial thunk gives "undefined reference to stg_ap_0_upd_info" In-Reply-To: <046.d8196c999608fededc5ef9d4e2e29843@haskell.org> References: <046.d8196c999608fededc5ef9d4e2e29843@haskell.org> Message-ID: <061.c32bdb4e581f9cc2d9c8c5f21f6db039@haskell.org> #11155: Trivial thunk gives "undefined reference to stg_ap_0_upd_info" -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: closed Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 7.10.2 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: | simplCore/should_compile/T11155 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by wereHamster): Ran into this trying to build HEAD today on Mac OS X 10.11.3. But a slightly different message: {{{ Warning: -rtsopts and -with-rtsopts have no effect with -no-hs-main. Call hs_init_ghc() from your main() function to set these options. Undefined symbols for architecture x86_64: "_stg_sel_17_upd_info", referenced from: _s1xPf_info in UI.dyn_o _s1xQA_info in UI.dyn_o _s1xZU_info in UI.dyn_o _s1y0r_info in UI.dyn_o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) `gcc' failed in phase `Linker'. (Exit code: 1) make[1]: *** [ghc/stage2/build/tmp/ghc-stage2] Error 1 make: *** [all] Error 2 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 9 20:17:30 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 09 Apr 2016 20:17:30 -0000 Subject: [GHC] #10524: PolyKinds doesn't interact well with DeriveFunctor In-Reply-To: <050.7408f13045aa603e186c148218ece722@haskell.org> References: <050.7408f13045aa603e186c148218ece722@haskell.org> Message-ID: <065.ba7341a17c6cfa02eb330f6a6d503375@haskell.org> #10524: PolyKinds doesn't interact well with DeriveFunctor -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: #10561 | Differential Rev(s): Phab:D2097 Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * status: new => patch * differential: => Phab:D2097 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 9 21:47:55 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 09 Apr 2016 21:47:55 -0000 Subject: [GHC] #11806: GHC does not warn for mistakenly empty case In-Reply-To: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> References: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> Message-ID: <060.fde3044293330eb9d56ed32849c4b89f@haskell.org> #11806: GHC does not warn for mistakenly empty case -------------------------------------+------------------------------------- Reporter: dfeuer | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: GHC accepts | Unknown/Multiple invalid program | Test Case: Blocked By: | Blocking: Related Tickets: #10746, #7669, | Differential Rev(s): #11390 | Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Indeed. Another way to see it is via my examples in comment:1. It is extremely unexpected that removing one alternative from an exhaustive Boolean `case` would yield a warning, but removing both alternatives does not. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 9 22:55:00 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 09 Apr 2016 22:55:00 -0000 Subject: [GHC] #11806: GHC does not warn for mistakenly empty case In-Reply-To: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> References: <045.a53e37d7bede62af6f41a0d27fdeab33@haskell.org> Message-ID: <060.020708cf1ab2cf378dcb28e0aca88782@haskell.org> #11806: GHC does not warn for mistakenly empty case -------------------------------------+------------------------------------- Reporter: dfeuer | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: duplicate | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: GHC accepts | Unknown/Multiple invalid program | Test Case: Blocked By: | Blocking: Related Tickets: #10746, #7669, | Differential Rev(s): #11390 | Wiki Page: | -------------------------------------+------------------------------------- Changes (by dfeuer): * status: new => closed * resolution: => duplicate Comment: This appears to be a duplicate of #10746 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 9 23:04:05 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 09 Apr 2016 23:04:05 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.752cf390c83d0bd1abc9d4348b0b9b8f@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by dfeuer): * related: #7669 => #7669, #11806 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 04:13:30 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 04:13:30 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.bcb2bbb40dd03c7171709f4be2c51c0f@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by dfeuer): * cc: gkaracha (added) Comment: simonpj indicated in the duplicate #11806 that gkaracha is in charge of some of this. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 04:23:21 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 04:23:21 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.2e1266ddd91072e3643e6052d72c6f59@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by dfeuer): I don't actually understand most of this code, but it *looks* like the problem is probably in the `checkMatches'` function in `compiler/deSugar/Check.hs`. Specifically, there's a guard {{{#!hs | null matches = return ([], [], []) }}} that looks fishy. I don't have things set up properly to build GHC at the moment, but my guess is that simply removing this clause and going straight to the `otherwise` will fix the bug. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 05:35:35 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 05:35:35 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.9ba3e77eb8b9ae8e92c469b26e037476@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by erikd): Yep, removing that (and the `| otherwise` pattern guard seems to fix it. At @deuer 's suggestion I'm going to stick this fix (with a test case) up on Phabricator. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 05:59:01 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 05:59:01 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.93cf71ab366cfa2243197803b1215a52@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by erikd): Hmm, wit this fix, building base fails due to: {{{ absurd :: Void -> a absurd a = case a of {} }}} which triggers: {{{ libraries/base/Data/Void.hs:66:12: warning: [-Wincomplete-patterns] Pattern match(es) are non-exhaustive In a case alternative: Patterns not matched: _ }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 06:12:27 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 06:12:27 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.930341b985af83965d5aa2a70d6ac332@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by dfeuer): Replying to [comment:11 erikd]: > Hmm, wit this fix, building base fails due to: > > {{{ > absurd :: Void -> a > absurd a = case a of {} > }}} > > which triggers: > > {{{ > libraries/base/Data/Void.hs:66:12: warning: [-Wincomplete-patterns] > Pattern match(es) are non-exhaustive > In a case alternative: Patterns not matched: _ > }}} Argh! That seems surprising. I'd have expected `mkInitialUncovered` to have produced an empty list there. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 07:46:21 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 07:46:21 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.9b7d58bc77f1b66fe032b40a3bf3a630@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): The discussion in #11806 is worth reading -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 08:30:46 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 08:30:46 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.1366186e4da1a8578e9eb6443f57f420@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by dfeuer): If I understand it correctly, empty case *always* forces its scrutinee, and thus should be considered complete if that is guaranteed to diverge. I don't really understand gkaracha's argument to the contrary, but he knows much more about this than I do, so I could be missing some key point. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 09:18:36 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 09:18:36 -0000 Subject: [GHC] #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol In-Reply-To: <044.47110be31f0548a4f623e31c109dd321@haskell.org> References: <044.47110be31f0548a4f623e31c109dd321@haskell.org> Message-ID: <059.918b3eac423d43a5a66733885bac79d3@haskell.org> #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol -------------------------------------+------------------------------------- Reporter: jeiea | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 (Linking) | Resolution: | Keywords: Operating System: Windows | Architecture: x86_64 Type of failure: Compile-time | (amd64) crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by jeiea): Followed your instruction after {{{stack clean}}}, still same error message occurred. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 12:36:15 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 12:36:15 -0000 Subject: [GHC] #11759: can't decompose ghc.exe path In-Reply-To: <045.78646c85aa5779cba5b2cf0a5492deb5@haskell.org> References: <045.78646c85aa5779cba5b2cf0a5492deb5@haskell.org> Message-ID: <060.66c2bf969aea46d23ce6411e60dc86ab@haskell.org> #11759: can't decompose ghc.exe path -------------------------------------+------------------------------------- Reporter: erisco | Owner: Phyx- Type: feature request | Status: new Priority: normal | Milestone: 8.2.1 Component: Driver | Version: 7.8.3 Resolution: | Keywords: Operating System: Windows | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Phyx-): * owner: => Phyx- * component: Compiler => Driver * type: bug => feature request * architecture: x86_64 (amd64) => Unknown/Multiple * milestone: => 8.2.1 Comment: Thanks for the report. I've fixed this in HEAD, but the fix will only work on Vista+. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 13:00:15 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 13:00:15 -0000 Subject: [GHC] #11759: can't decompose ghc.exe path In-Reply-To: <045.78646c85aa5779cba5b2cf0a5492deb5@haskell.org> References: <045.78646c85aa5779cba5b2cf0a5492deb5@haskell.org> Message-ID: <060.848f2d229602a116c4bb87d201be7236@haskell.org> #11759: can't decompose ghc.exe path -------------------------------------+------------------------------------- Reporter: erisco | Owner: Phyx- Type: feature request | Status: patch Priority: normal | Milestone: 8.2.1 Component: Driver | Version: 7.8.3 Resolution: | Keywords: Operating System: Windows | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2101 Wiki Page: | -------------------------------------+------------------------------------- Changes (by Phyx-): * status: new => patch * differential: => Phab:D2101 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 13:14:54 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 13:14:54 -0000 Subject: [GHC] #4114: Add a flag to remove/delete intermediate files generated by GHC In-Reply-To: <044.5bde4abfdaa56d5ae586d71d6ff93b9d@haskell.org> References: <044.5bde4abfdaa56d5ae586d71d6ff93b9d@haskell.org> Message-ID: <059.8b6e52ec541d0163b0774a47605b9c36@haskell.org> #4114: Add a flag to remove/delete intermediate files generated by GHC -------------------------------------+------------------------------------- Reporter: guest | Owner: kaiha Type: feature request | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 6.10.4 Resolution: | Keywords: newcomer Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #2258 | Differential Rev(s): Phab:D2021 Wiki Page: | Phab:D2050 -------------------------------------+------------------------------------- Comment (by kaiha): Is there a reason why this ticket is still open? Must I reassign it to someone? Is it me who should set this ticket to close? Or is there still something missing? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 13:15:53 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 13:15:53 -0000 Subject: [GHC] #11816: Refactor SymbolInfo out of Linker.c Message-ID: <044.2e959aba1a89ef8ffe1336bae5217af4@haskell.org> #11816: Refactor SymbolInfo out of Linker.c -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Type: task | Status: new Priority: normal | Milestone: 8.2.1 Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: #11223 Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- #11223 added a type `SymbolInfo` to `ObjectCode`. This is adding a larger memory overhead to the RTS then need by. `SymbolInfo` is used to determine if a symbol is weak or not. This information can be moved into it's own structure inside `ObjectCode` like a map. Since the majority of the symbols will not be weak this map should be fairly small. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 13:17:34 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 13:17:34 -0000 Subject: [GHC] #11816: Refactor SymbolInfo out of Linker.c In-Reply-To: <044.2e959aba1a89ef8ffe1336bae5217af4@haskell.org> References: <044.2e959aba1a89ef8ffe1336bae5217af4@haskell.org> Message-ID: <059.c7ae8988b1a7313f4ba30320ff19f307@haskell.org> #11816: Refactor SymbolInfo out of Linker.c -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Type: task | Status: new Priority: normal | Milestone: 8.2.1 Component: Runtime System | Version: 8.1 (Linker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11223 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Phyx-): * component: Compiler => Runtime System (Linker) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 13:20:32 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 13:20:32 -0000 Subject: [GHC] #11817: Add proper support for weak symbols to the runtime linker Message-ID: <044.9d336eb495121fb8a216ccf15f54097a@haskell.org> #11817: Add proper support for weak symbols to the runtime linker -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Type: feature | Status: new request | Priority: normal | Milestone: 8.2.1 Component: Runtime | Version: 8.1 System (Linker) | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: #11223 Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Currently weak symbols support is only partially supported by the runtime linker. The current support is mostly there to provide `COMDAT` support. In #11223 this support has been extended but there is still some work needed to finish weak symbols support. Also there needs some investigation into how this support should look like. E.g. are we only supporting linking weak symbols in C or do we want to support it in Haskell as well. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 13:22:58 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 13:22:58 -0000 Subject: [GHC] #11788: Enable Thin Library support for the Runtime linker on Windows. In-Reply-To: <044.fc1813135ac93d3129200c89e883b0fe@haskell.org> References: <044.fc1813135ac93d3129200c89e883b0fe@haskell.org> Message-ID: <059.6821fc9838954c69cc5d3594f4b086e0@haskell.org> #11788: Enable Thin Library support for the Runtime linker on Windows. -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Phyx- Type: feature request | Status: new Priority: normal | Milestone: 8.2.1 Component: Runtime System | Version: 7.10.3 (Linker) | Resolution: | Keywords: Operating System: Windows | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Phyx-): Some test have already been defined in `testsuite\tests\rts\T11223\all.T` but they may need to be modified slightly. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 13:23:13 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 13:23:13 -0000 Subject: [GHC] #11788: Enable Thin Library support for the Runtime linker on Windows. In-Reply-To: <044.fc1813135ac93d3129200c89e883b0fe@haskell.org> References: <044.fc1813135ac93d3129200c89e883b0fe@haskell.org> Message-ID: <059.4254bb403091b061c331140faa8fa40d@haskell.org> #11788: Enable Thin Library support for the Runtime linker on Windows. -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Phyx- Type: feature request | Status: new Priority: normal | Milestone: 8.2.1 Component: Runtime System | Version: 7.10.3 (Linker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Phyx-): * os: Windows => Unknown/Multiple -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 13:24:38 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 13:24:38 -0000 Subject: [GHC] #11788: Enable Thin Library support for the Runtime linker on Windows. In-Reply-To: <044.fc1813135ac93d3129200c89e883b0fe@haskell.org> References: <044.fc1813135ac93d3129200c89e883b0fe@haskell.org> Message-ID: <059.525750a548a9724e7033ed36d997b3b2@haskell.org> #11788: Enable Thin Library support for the Runtime linker on Windows. -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Phyx- Type: feature request | Status: new Priority: normal | Milestone: 8.2.1 Component: Runtime System | Version: 7.10.3 (Linker) | Resolution: | Keywords: Operating System: Windows | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Phyx-): * os: Unknown/Multiple => Windows -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 13:24:57 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 13:24:57 -0000 Subject: [GHC] #11817: Add proper support for weak symbols to the runtime linker In-Reply-To: <044.9d336eb495121fb8a216ccf15f54097a@haskell.org> References: <044.9d336eb495121fb8a216ccf15f54097a@haskell.org> Message-ID: <059.4272d92d2bfcd37c328ecebab140e9be@haskell.org> #11817: Add proper support for weak symbols to the runtime linker -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Type: feature request | Status: new Priority: normal | Milestone: 8.2.1 Component: Runtime System | Version: 8.1 (Linker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11223 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Phyx-): Some test have already been defined in `testsuite\tests\rts\T11223\all.T` but they may need to be modified slightly. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 13:39:45 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 13:39:45 -0000 Subject: [GHC] #11803: Users guide's `_static` directory isn't installed to correct location In-Reply-To: <046.1c3e61f00c1cbfba6de5620e23cb83f4@haskell.org> References: <046.1c3e61f00c1cbfba6de5620e23cb83f4@haskell.org> Message-ID: <061.97269586fe2106e4014fc469a6922376@haskell.org> #11803: Users guide's `_static` directory isn't installed to correct location -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: closed Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => closed * resolution: => fixed Comment: This is fixed by the commit in comment:1, merged to `ghc-8.0` in 88e9816f6c6d336f6fa6ef2fc7bab24537758637. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 16:04:09 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 16:04:09 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.b21f111c65ed819d9a1e82ec7bdd6edb@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by gkaracha): I guess my wording was not clear in #11806 after all, I will try to elaborate here in more detail. :-) == Current state == Indeed the guard in `checkMatches'` is responsible for the current behaviour on empty case expressions: {{{ | null matches = return ([], [], []) }}} By default, the new checker would issue a non-exhaustive warning for empty cases, which is correct. Yet, there has been a request (#7669) to **not** issue a warning in these cases. Hence, Simon changed this with commit 9162d159a62d19d4b371b7348eb1b524001fddcd. I have added the above guard in the new implementation to keep the same behaviour (even though I strongly disagree with it) and by removing it we get the default behaviour, which #11806 & #10746 request. == Laziness == Replying to [comment:12 dfeuer]: > Replying to [comment:11 erikd]: > > Hmm, wit this fix, building base fails due to: > > > > {{{ > > absurd :: Void -> a > > absurd a = case a of {} > > }}} > > > > which triggers: > > > > {{{ > > libraries/base/Data/Void.hs:66:12: warning: [-Wincomplete-patterns] > > Pattern match(es) are non-exhaustive > > In a case alternative: Patterns not matched: _ > > }}} > > Argh! That seems surprising. I'd have expected `mkInitialUncovered` to have produced an empty list there. This is the right behaviour! The call `(absurd undefined) :: Int` will crash, not because of evaluating `undefined` but because the match is non- exhaustive, try it out and see! About `mkInitialUncovered`, it should **not** produce an empty list: If you check our paper (https://people.cs.kuleuven.be/~george.karachalias/papers/p424-karachalias.pdf, paragraph Initialisation, Section 4.2), you will see that U_0 is not empty, independently of the argument types. Replying to [comment:14 dfeuer]: > If I understand it correctly, empty case *always* forces its scrutinee, and thus should be considered complete if that is guaranteed to diverge. I don't really understand gkaracha's argument to the contrary, but he knows much more about this than I do, so I could be missing some key point. This is probably the key point that is not clear. The part `case x of` does not force `x`, the patterns that appear after do that. This means that, for example, `case x of { y -> ... }` does not force x. == Type Inhabitation == All the related tickets give me the impression that it is expected for `f` to be non-exhaustive and `g` to be exhaustive, which is not in accordance with Haskell's operational semantics. {{{#!hs f :: Int -> a f x = case x of {} g :: Void -> a g x = case x of {} }}} Unless you force `x` in another way, both `case x of {}` are equally non- exhaustive. In OCaml for example this is different, and this is precisely why the OCaml community identifies the pattern match checking as a type inhabitation problem http://www.math.nagoya-u.ac.jp/~garrigue/papers/gadtspm.pdf, in contrast to what we do. Nevertheless, there are ways in Haskell to force arguments explicitly (e.g. via `seq`) which means that it becomes an inhabitation problem for us as well (like for `g'` below) in some cases. {{{#!hs g' :: Void -> a g' x = x `seq` case x of {} }}} Indeed, this kind of reasoning we lack at the moment. I can imagine that if the strictness analysis phase came before our checking we would be able to use this information and improve our reasoning for cases like `g'`, by checking type inhabitation, where possible. == Conclusion == Personally, I am really happy that the guard from `checkMatches'` is finally removed, and I surely vote for non-exhaustive warnings in empty case expressions, including function `absurd` above which **is** non- exhaustive. I'd be happy to see how we can make `g'` issue no warnings, but this, I think, is a quite different problem. Sorry for the long post, I just hope things are more clear now :-) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 16:13:50 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 16:13:50 -0000 Subject: [GHC] #10914: Bad symbol resolution on Darwin when using DYLD_FORCE_FLAT_NAMESPACE=1 In-Reply-To: <047.9268eb7f03934b85eb39681f4890afc7@haskell.org> References: <047.9268eb7f03934b85eb39681f4890afc7@haskell.org> Message-ID: <062.0f4cdc711ad7a8105091e51e3a621b7c@haskell.org> #10914: Bad symbol resolution on Darwin when using DYLD_FORCE_FLAT_NAMESPACE=1 -------------------------------------+------------------------------------- Reporter: jacereda | Owner: Type: bug | Status: new Priority: high | Milestone: Component: Runtime System | Version: 7.10.2 (Linker) | Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 | (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by jacereda): Just upgraded to 10.11 and 7.10.3 works fine here. Should it be closed? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 16:57:21 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 16:57:21 -0000 Subject: [GHC] #11809: Template Haskell record splices are not renamer-resolved correctly. In-Reply-To: <047.405dec4fbee13ac6686a46a36b32cd28@haskell.org> References: <047.405dec4fbee13ac6686a46a36b32cd28@haskell.org> Message-ID: <062.7d9e292890da614ec1666130a163a46a@haskell.org> #11809: Template Haskell record splices are not renamer-resolved correctly. -------------------------------------+------------------------------------- Reporter: bollmann | Owner: bollmann Type: bug | Status: merge Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1 Resolution: | Keywords: Template | Haskell Renamer Records Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2091 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => merge -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 17:01:41 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 17:01:41 -0000 Subject: [GHC] #11623: Wrong error message for type family definition that is wrong in multiple ways In-Reply-To: <047.ac7120cde85232bfd7b39a31762350cf@haskell.org> References: <047.ac7120cde85232bfd7b39a31762350cf@haskell.org> Message-ID: <062.6000611d935e59c342127179ac7179ae@haskell.org> #11623: Wrong error message for type family definition that is wrong in multiple ways -------------------------------------+------------------------------------- Reporter: rwbarton | Owner: rdragon Type: bug | Status: merge Priority: low | Milestone: Component: Compiler (Type | Version: 8.1 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2089 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => merge -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 17:02:24 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 17:02:24 -0000 Subject: [GHC] #11623: Wrong error message for type family definition that is wrong in multiple ways In-Reply-To: <047.ac7120cde85232bfd7b39a31762350cf@haskell.org> References: <047.ac7120cde85232bfd7b39a31762350cf@haskell.org> Message-ID: <062.86b3f09ff08e76c8d3fa0afda6f7ecb3@haskell.org> #11623: Wrong error message for type family definition that is wrong in multiple ways -------------------------------------+------------------------------------- Reporter: rwbarton | Owner: rdragon Type: bug | Status: merge Priority: low | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.1 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2089 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: => 8.0.1 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 17:02:33 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 17:02:33 -0000 Subject: [GHC] #11809: Template Haskell record splices are not renamer-resolved correctly. In-Reply-To: <047.405dec4fbee13ac6686a46a36b32cd28@haskell.org> References: <047.405dec4fbee13ac6686a46a36b32cd28@haskell.org> Message-ID: <062.da8fff21defec25b2fdb2cc7f749ffab@haskell.org> #11809: Template Haskell record splices are not renamer-resolved correctly. -------------------------------------+------------------------------------- Reporter: bollmann | Owner: bollmann Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Template Haskell | Version: 8.0.1 Resolution: | Keywords: Template | Haskell Renamer Records Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2091 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: => 8.0.1 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 17:11:07 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 17:11:07 -0000 Subject: [GHC] #11795: Performance issues with replicateM_ In-Reply-To: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> References: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> Message-ID: <062.8f2221a457cbf86aea680bf0f4d63f12@haskell.org> #11795: Performance issues with replicateM_ -------------------------------------+------------------------------------- Reporter: snoyberg | Owner: snoyberg Type: bug | Status: merge Priority: normal | Milestone: Component: libraries/base | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Runtime | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2086 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => merge -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 17:11:14 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 17:11:14 -0000 Subject: [GHC] #11795: Performance issues with replicateM_ In-Reply-To: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> References: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> Message-ID: <062.10eef7ca8986b2e4556fce017f52e75a@haskell.org> #11795: Performance issues with replicateM_ -------------------------------------+------------------------------------- Reporter: snoyberg | Owner: snoyberg Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: libraries/base | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Runtime | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2086 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: => 8.0.1 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 17:11:37 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 17:11:37 -0000 Subject: [GHC] #11804: Export zonkEvBinds from TcHsSyn. In-Reply-To: <044.2b412afff7a50994854cf1ad8bdb7882@haskell.org> References: <044.2b412afff7a50994854cf1ad8bdb7882@haskell.org> Message-ID: <059.04b0366e9998ce025c66e52901567f60@haskell.org> #11804: Export zonkEvBinds from TcHsSyn. -------------------------------------+------------------------------------- Reporter: conal | Owner: Type: feature request | Status: merge Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 7.11 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => merge * version: 8.1 => 7.11 * milestone: => 8.0.1 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 17:12:40 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 17:12:40 -0000 Subject: [GHC] #11463: Template Haskell applies too many arguments to kind synonym In-Reply-To: <050.c7d753a5f21fb330e97bd8d6b7fe7cde@haskell.org> References: <050.c7d753a5f21fb330e97bd8d6b7fe7cde@haskell.org> Message-ID: <065.43a3a5bc4192a96de802d0ecfb3fe922@haskell.org> #11463: Template Haskell applies too many arguments to kind synonym -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Template Haskell | Version: 8.0.1-rc1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2081 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => merge * milestone: => 8.0.1 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 17:13:57 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 17:13:57 -0000 Subject: [GHC] #11732: Deriving Generic1 interacts poorly with TypeInType In-Reply-To: <047.27a25c470c88bbba69595642672c1832@haskell.org> References: <047.27a25c470c88bbba69595642672c1832@haskell.org> Message-ID: <062.e658caf751753643d601e7b789be89e3@haskell.org> #11732: Deriving Generic1 interacts poorly with TypeInType -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: merge Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: TypeInType, | Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #5939 | Differential Rev(s): Phab:D2061 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => merge -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 17:14:03 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 17:14:03 -0000 Subject: [GHC] #11732: Deriving Generic1 interacts poorly with TypeInType In-Reply-To: <047.27a25c470c88bbba69595642672c1832@haskell.org> References: <047.27a25c470c88bbba69595642672c1832@haskell.org> Message-ID: <062.9f59b4d90acb5d48f1283dbb1c5f4f9e@haskell.org> #11732: Deriving Generic1 interacts poorly with TypeInType -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.1 Resolution: | Keywords: TypeInType, | Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #5939 | Differential Rev(s): Phab:D2061 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: => 8.0.1 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 17:24:01 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 17:24:01 -0000 Subject: [GHC] #11680: Out-of-scope suggestion given for an out-of-scope variable when using TH In-Reply-To: <042.98f1e89f02393a599dc5a3ef57e2d85f@haskell.org> References: <042.98f1e89f02393a599dc5a3ef57e2d85f@haskell.org> Message-ID: <057.22830691e9dead471af5ee32aa2cca0f@haskell.org> #11680: Out-of-scope suggestion given for an out-of-scope variable when using TH -------------------------------------+------------------------------------- Reporter: jme | Owner: jme Type: bug | Status: patch Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1-rc2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2000 Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): Hmm, I'm a bit on the fence as to whether we should include this in 8.0.1 given the size of the diff. Conceptually it seems relatively low-risk, but still merging such changes so late in the game makes me a bit nervous. goldfire and jme, what do you think? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 17:30:28 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 17:30:28 -0000 Subject: [GHC] #11818: Haddock's Sphinx documentation breaks `make install` if doc building is disabled Message-ID: <046.6f9689393de814a115d9a946997a1ef8@haskell.org> #11818: Haddock's Sphinx documentation breaks `make install` if doc building is disabled -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- slyfox reported that `make install` fails on his setup which lacks `sphinx`, {{{ /usr/bin/install -c -m 644 libraries/prologue.txt "/var/tmp/portage/dev- lang/ghc-9999/image/usr/share/doc/ghc-9999/html/libraries/" /usr/bin/install -c -m 755 libraries/gen_contents_index "/var/tmp/portage /dev-lang/ghc-9999/image/usr/share/doc/ghc-9999/html/libraries/" for i in utils/haddock/doc/haddock; do \ cp -Rp $i "/var/tmp/portage/dev- lang/ghc-9999/image/usr/share/doc/ghc-9999/html"; \ done cp: cannot stat 'utils/haddock/doc/haddock': No such file or directory ghc.mk:936: recipe for target 'install_docs' failed make[1]: *** [install_docs] Error 1 Makefile:129: recipe for target 'install' failed }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 17:36:06 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 17:36:06 -0000 Subject: [GHC] #11818: Haddock's Sphinx documentation breaks `make install` if doc building is disabled In-Reply-To: <046.6f9689393de814a115d9a946997a1ef8@haskell.org> References: <046.6f9689393de814a115d9a946997a1ef8@haskell.org> Message-ID: <061.ad7784bdb73411cbcf5c49979baa0cb2@haskell.org> #11818: Haddock's Sphinx documentation breaks `make install` if doc building is disabled -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by slyfox): * cc: slyfox (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 19:50:34 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 19:50:34 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.f5848d152dac9c5d93cafa44b4cb903a@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by dfeuer): Replying to [comment:15 gkaracha]: > Replying to [comment:14 dfeuer]: > All the related tickets give me the impression that it is expected for `f` to be non-exhaustive and `g` to be exhaustive, which is not in accordance with Haskell's operational semantics. > {{{#!hs > f :: Int -> a > f x = case x of {} > > g :: Void -> a > g x = case x of {} > }}} > > Unless you force `x` in another way, both `case x of {}` are equally non-exhaustive. It seems your argument may be valid, but your premise is false! Using GHCi 7.10.3, {{{#!hs Prelude> :set -XEmptyCase -XEmptyDataDecls Prelude> data Void Prelude> let absurd :: Void -> a; absurd x = case x of Prelude> absurd (error "Really?") *** Exception: Really? }}} As you can see, the scrutinee is forced, producing the desired exception, ''not'' a pattern match failure. This is explained in the note on "Empty case alternatives" in `compiler/deSugar/Match.hs`: > The list of `EquationInfo` can be empty, arising from > > `case x of {}` or `\case {}` > > In that situation we desugar to > > `case x of { _ -> error "pattern match failure" }` > > The ''desugarer'' isn't certain whether there really should be no > alternatives, so it adds a default case, as it always does. A later > pass may remove it if it's inaccessible. (See also Note [Empty case > alternatives] in `CoreSyn`.) > > We do ''not'' desugar simply to > > `error "empty case"` > > or some such, because `x` might be bound to `(error "hello")`, in which > case we want to see that `"hello"` exception, not `(error "empty case")`. Note that in the above text, > `case x of { _ -> error "pattern match failure" }` represents a ''Core'' `case` expression, not a ''Haskell'' case expression, so it always forces its scrutinee, regardless of what patterns it may or may not contain. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 20:56:19 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 20:56:19 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.0812572cb34f74f6ae65ec28952dc5fe@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by dfeuer): To summarize, empty case is desugared specially. It therefore needs a special case for coverage checking, but ''not'' the trivial one we currently have. I suspect the right thing is probably to avoid including `_|_` in `mkInitialUncovered` when checking an empty `case`, whatever that involves. You may need to do something else if you want to catch an overlapping trivial pattern in since cases, but even if you miss that it's no big deal. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 20:59:14 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 20:59:14 -0000 Subject: [GHC] #11790: (More) missing instances for Identity and Const In-Reply-To: <045.44b1fa024af740b88eaa1765c2d36b9a@haskell.org> References: <045.44b1fa024af740b88eaa1765c2d36b9a@haskell.org> Message-ID: <060.2e7ffa2629fd9124cd80f0b192ec2168@haskell.org> #11790: (More) missing instances for Identity and Const -------------------------------------+------------------------------------- Reporter: duairc | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2079 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * cc: core-libraries-committe (added) * type: bug => feature request @@ -6,1 +6,1 @@ - {{{ + {{{#!hs New description: I made a similar ([https://ghc.haskell.org/trac/ghc/ticket/11210 #11210]) issue a few months ago and submitted a [https://phabricator.haskell.org/D1626 patch] which was accepted. There are some more instances I want to add: {{{#!hs instance Num a => Num (Identity a) instance Real a => Real (Identity a) instance Integral a => Integral (Identity a) instance Fractional a => Fractional (Identity a) instance Floating a => Floating (Identity a) instance RealFrac a => RealFrac (Identity a) instance RealFloat a => RealFloat (Identity a) instance Bits a => Bits (Identity a) instance FiniteBits a => FiniteBits (Identity a) instance IsString => IsString (Identity a) instance Num a => Num (Const a b) instance Real a => Real (Const a b) instance Integral a => Integral (Const a b) instance Fractional a => Fractional (Const a b) instance Floating a => Floating (Const a b) instance RealFrac a => RealFrac (Const a b) instance RealFloat a => RealFloat (Const a b) instance Bits a => Bits (Const a b) instance FiniteBits a => FiniteBits (Const a b) instance IsString => IsString (Const a b) }}} -- Comment: It would be nice to get approval from the CLC on this. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 21:39:31 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 21:39:31 -0000 Subject: [GHC] #4275: add tests for and fix "-dynload wrapper", or remove it In-Reply-To: <044.2165d0d5e03868820b9e3cd33d39f3a9@haskell.org> References: <044.2165d0d5e03868820b9e3cd33d39f3a9@haskell.org> Message-ID: <059.beb4c525a6fd9e37068fe1108a4b44e2@haskell.org> #4275: add tests for and fix "-dynload wrapper", or remove it -------------------------------------+--------------------------------- Reporter: igloo | Owner: Type: bug | Status: closed Priority: high | Milestone: 7.0.1 Component: Compiler | Version: 6.13 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: -------------------------------------+--------------------------------- Comment (by Ben Gamari ): In [changeset:"f3beed35309e4e8b60aa3f11372d1e00324eb046/ghc" f3beed35/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="f3beed35309e4e8b60aa3f11372d1e00324eb046" Remove left-over shell-tools.c The last user of this file was the "-dynload wrapper" which was removed in 169f5972d5398e75c4cf7f831b6ce703288ec73c for addressing #4275 Reviewers: austin, erikd, bgamari Reviewed By: bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2098 GHC Trac Issues: #4275 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 21:39:31 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 21:39:31 -0000 Subject: [GHC] #11795: Performance issues with replicateM_ In-Reply-To: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> References: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> Message-ID: <062.1e69668f17d4b54a00afa753ee0a0480@haskell.org> #11795: Performance issues with replicateM_ -------------------------------------+------------------------------------- Reporter: snoyberg | Owner: snoyberg Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: libraries/base | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Runtime | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2086 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"c4a7520ef3a0b5e0e33d66ae1d628af93e0d7590/ghc" c4a7520e/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="c4a7520ef3a0b5e0e33d66ae1d628af93e0d7590" Provide an optimized replicateM_ implementation #11795 In my testing, the worker/wrapper transformation applied here significantly decreases the number of allocations performed when using replicateM_. Additionally, this version of the function behaves correctly for negative numbers (namely, it will behave the same as replicateM_ 0, which is what previous versions of base have done). Reviewers: bgamari, simonpj, hvr, austin Reviewed By: bgamari, simonpj, austin Subscribers: nomeata, simonpj, mpickering, thomie Differential Revision: https://phabricator.haskell.org/D2086 GHC Trac Issues: #11795 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 21:39:31 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 21:39:31 -0000 Subject: [GHC] #11804: Export zonkEvBinds from TcHsSyn. In-Reply-To: <044.2b412afff7a50994854cf1ad8bdb7882@haskell.org> References: <044.2b412afff7a50994854cf1ad8bdb7882@haskell.org> Message-ID: <059.53f06eb5abacede1f626b85c02db3190@haskell.org> #11804: Export zonkEvBinds from TcHsSyn. -------------------------------------+------------------------------------- Reporter: conal | Owner: Type: feature request | Status: merge Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 7.11 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"5a1add134fdb2ab4d91b0f66de1dc89f0cd69354/ghc" 5a1add13/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="5a1add134fdb2ab4d91b0f66de1dc89f0cd69354" Export zonkEvBinds from TcHsSyn. Needed for constructing correct constraint-satisfying code (particularly type class instances) in a Core-to-Core transformation. Reviewers: simonpj, austin, bgamari Reviewed By: austin, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2088 GHC Trac Issues: #11804 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 21:39:31 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 21:39:31 -0000 Subject: [GHC] #5939: Standalone deriving Generic on type with instantiated arguments In-Reply-To: <046.39c4656124687218c6452298280d108a@haskell.org> References: <046.39c4656124687218c6452298280d108a@haskell.org> Message-ID: <061.015628ff32ca445986ac00a74d71a5e4@haskell.org> #5939: Standalone deriving Generic on type with instantiated arguments -------------------------------------+------------------------------------- Reporter: dreixel | Owner: dreixel Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.5 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: | GenCannotDoRep0 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"7443e5c8dae24b83f5f4975c7accce02b819029c/ghc" 7443e5c8/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="7443e5c8dae24b83f5f4975c7accce02b819029c" Remove the instantiation check when deriving Generic(1) Previously, deriving `Generic(1)` bailed out when attempting to instantiate visible type parameters (#5939), but this instantiation check was quite fragile and doesn't interact well with `-XTypeInType`. It has been decided that `Generic(1)` shouldn't be subjected to this check anyway, so it has been removed, and `gen_Generic_binds`'s machinery has been updated to substitute the type variables in a generated `Rep`/`Rep1` instance with the user-supplied type arguments. In addition, this also refactors `Condition` in `TcDeriv` a bit. Namely, since we no longer need `tc_args` to check any conditions, the `[Type]` component of `Condition` has been removed. Fixes #11732. Test Plan: ./validate Reviewers: goldfire, kosmikus, simonpj, bgamari, austin Reviewed By: simonpj, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2061 GHC Trac Issues: #5939, #11732 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 21:39:31 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 21:39:31 -0000 Subject: [GHC] #11732: Deriving Generic1 interacts poorly with TypeInType In-Reply-To: <047.27a25c470c88bbba69595642672c1832@haskell.org> References: <047.27a25c470c88bbba69595642672c1832@haskell.org> Message-ID: <062.986f7907562dac5cbf4512fa864493e4@haskell.org> #11732: Deriving Generic1 interacts poorly with TypeInType -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.1 Resolution: | Keywords: TypeInType, | Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #5939 | Differential Rev(s): Phab:D2061 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"7443e5c8dae24b83f5f4975c7accce02b819029c/ghc" 7443e5c8/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="7443e5c8dae24b83f5f4975c7accce02b819029c" Remove the instantiation check when deriving Generic(1) Previously, deriving `Generic(1)` bailed out when attempting to instantiate visible type parameters (#5939), but this instantiation check was quite fragile and doesn't interact well with `-XTypeInType`. It has been decided that `Generic(1)` shouldn't be subjected to this check anyway, so it has been removed, and `gen_Generic_binds`'s machinery has been updated to substitute the type variables in a generated `Rep`/`Rep1` instance with the user-supplied type arguments. In addition, this also refactors `Condition` in `TcDeriv` a bit. Namely, since we no longer need `tc_args` to check any conditions, the `[Type]` component of `Condition` has been removed. Fixes #11732. Test Plan: ./validate Reviewers: goldfire, kosmikus, simonpj, bgamari, austin Reviewed By: simonpj, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2061 GHC Trac Issues: #5939, #11732 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 21:39:31 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 21:39:31 -0000 Subject: [GHC] #11809: Template Haskell record splices are not renamer-resolved correctly. In-Reply-To: <047.405dec4fbee13ac6686a46a36b32cd28@haskell.org> References: <047.405dec4fbee13ac6686a46a36b32cd28@haskell.org> Message-ID: <062.884d879bcefe16795ea3395b731fb8c3@haskell.org> #11809: Template Haskell record splices are not renamer-resolved correctly. -------------------------------------+------------------------------------- Reporter: bollmann | Owner: bollmann Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Template Haskell | Version: 8.0.1 Resolution: | Keywords: Template | Haskell Renamer Records Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2091 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"2f82da761defba2cfdc55ca08d774ca7e1240463/ghc" 2f82da7/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="2f82da761defba2cfdc55ca08d774ca7e1240463" Fix Template Haskell bug reported in #11809. Record selectors of data types spliced in with Template Haskell are not renamer-resolved correctly in GHC HEAD. The culprit is `newRecordSelector` which violates notes `Note [Binders in Template Haskell] in Convert.hs` and `Note [Looking up Exact RdrNames] in RnEnv.hs`. This commit fixes `newRecordSelector` accordingly. Test Plan: ./validate Reviewers: thomie, mpickering, bgamari, austin, simonpj, goldfire Reviewed By: goldfire Differential Revision: https://phabricator.haskell.org/D2091 GHC Trac Issues: #11809 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 21:39:31 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 21:39:31 -0000 Subject: [GHC] #11818: Haddock's Sphinx documentation breaks `make install` if doc building is disabled In-Reply-To: <046.6f9689393de814a115d9a946997a1ef8@haskell.org> References: <046.6f9689393de814a115d9a946997a1ef8@haskell.org> Message-ID: <061.fc192e6d9519c4e9b0d4c54669681302@haskell.org> #11818: Haddock's Sphinx documentation breaks `make install` if doc building is disabled -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"cf5ff08fdb2e730d74037c6ea7dcac1dbfb7a4be/ghc" cf5ff08f/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="cf5ff08fdb2e730d74037c6ea7dcac1dbfb7a4be" Bump haddock submodule Fixes #11818, where haddock's documentation broke `make install` when Sphinx is not available. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 21:39:31 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 21:39:31 -0000 Subject: [GHC] #11680: Out-of-scope suggestion given for an out-of-scope variable when using TH In-Reply-To: <042.98f1e89f02393a599dc5a3ef57e2d85f@haskell.org> References: <042.98f1e89f02393a599dc5a3ef57e2d85f@haskell.org> Message-ID: <057.e21502ce83a276ff9a5d5ff286b08032@haskell.org> #11680: Out-of-scope suggestion given for an out-of-scope variable when using TH -------------------------------------+------------------------------------- Reporter: jme | Owner: jme Type: bug | Status: patch Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1-rc2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2000 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"470d4d5b8e7cbcc176b1f3ac26ce0d95acd35a78/ghc" 470d4d5b/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="470d4d5b8e7cbcc176b1f3ac26ce0d95acd35a78" Fix suggestions for unbound variables (#11680) When the typechecker generates the error message for an out-of-scope variable, it now uses the GlobalRdrEnv with respect to which the variable is unbound, not the GlobalRdrEnv which is available at the time the error is reported. Doing so ensures we do not provide suggestions which themselves are out-of-scope (because they are bound in a later inter-splice group). Nonetheless, we do note in the error message if an unambiguous, exact match to the out-of-scope variable is found in a later inter-splice group, and we specify where that match is not in scope. Test Plan: ./validate Reviewers: goldfire, austin, bgamari Reviewed By: goldfire Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2000 GHC Trac Issues: #11680 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 21:56:39 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 21:56:39 -0000 Subject: [GHC] #11680: Out-of-scope suggestion given for an out-of-scope variable when using TH In-Reply-To: <042.98f1e89f02393a599dc5a3ef57e2d85f@haskell.org> References: <042.98f1e89f02393a599dc5a3ef57e2d85f@haskell.org> Message-ID: <057.97d460a0f26d8486b89bc97fd73d6180@haskell.org> #11680: Out-of-scope suggestion given for an out-of-scope variable when using TH -------------------------------------+------------------------------------- Reporter: jme | Owner: jme Type: bug | Status: patch Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1-rc2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2000 Wiki Page: | -------------------------------------+------------------------------------- Comment (by jme): Replying to [comment:7 bgamari]: I think waiting until 8.0.2 to include it is fine. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 23:41:59 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 23:41:59 -0000 Subject: [GHC] #11223: Runtime linker performs eager loading of all object files In-Reply-To: <044.1eba10cc2ab875f8ad0571288cc4efc5@haskell.org> References: <044.1eba10cc2ab875f8ad0571288cc4efc5@haskell.org> Message-ID: <059.93b58dac418ec07794101e6f78253c2f@haskell.org> #11223: Runtime linker performs eager loading of all object files -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Phyx- Type: task | Status: patch Priority: normal | Milestone: 8.2.1 Component: Runtime System | Version: 7.10.3 (Linker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: #10726 #11317 | Differential Rev(s): Phab:D1805 #11748 | Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"90538d86af579595987826cd893828d6f379f35a/ghc" 90538d86/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="90538d86af579595987826cd893828d6f379f35a" Change runtime linker to perform lazy loading of symbols/sections The Runtime Linker is currently eagerly loading all object files on all platforms which do not use the system linker for `GHCi`. The problem with this approach is that it requires all symbols to be found. Even those of functions never used/called. This makes the number of libraries required to link things like `mingwex` quite high. To work around this the `rts` was relying on a trick. It itself was compiled with `MingW64-w`'s `GCC`. So it was already linked against `mingwex`. As such, it re-exported the symbols from itself. While this worked it made it impossible to link against `mingwex` in user libraries. And with this means no `C99` code could ever run in `GHCi` on Windows without having the required symbols re-exported from the rts. Consequently this rules out a large number of packages on Windows. SDL2, HMatrix etc. After talking with @rwbarton I have taken the approach of loading entire object files when a symbol is needed instead of doing the dependency tracking on a per symbol basis. This is a lot less fragile and a lot less complicated to implement. The changes come down to the following steps: 1) modify the linker to and introduce a new state for ObjectCode: `Needed`. A Needed object is one that is required for the linking to succeed. The initial set consists of all Object files passed as arguments to the link. 2) Change `ObjectCode`'s to be indexed but not initialized or resolved. This means we know where we would load the symbols, but haven't actually done so. 3) Mark any `ObjectCode` belonging to `.o` passed as argument as required: ObjectState `NEEDED`. 4) During `Resolve` object calls, mark all `ObjectCode` containing the required symbols as `NEEDED` 5) During `lookupSymbol` lookups, (which is called from `linkExpr` and `linkDecl` in `GHCI.hs`) is the symbol is in a not-yet-loaded `ObjectCode` then load the `ObjectCode` on demand and return the address of the symbol. Otherwise produce an unresolved symbols error as expected. 6) On `unloadObj` we then change the state of the object and remove it's symbols from the `reqSymHash` table so it can be reloaded. This change affects all platforms and OSes which use the runtime linker. It seems there are no real perf tests for `GHCi`, but performance shouldn't be impacted much. We gain a lot of time not loading all `obj` files, and we lose some time in `lookupSymbol` when we're finding sections that have to be loaded. The actual finding itself is O(1) (Assuming the hashtnl is perfect) It also consumes slighly more memory as instead of storing just the address of a symbol I also store some other information, like if the symbol is weak or not. This change will break any packages relying on renamed POSIX functions that were re-named and re-exported by the rts. Any packages following the proper naming for functions as found on MSDN will work fine. Test Plan: ./validate on all platforms which use the Runtime linker. Reviewers: thomie, rwbarton, simonmar, erikd, bgamari, austin, hvr Reviewed By: erikd Subscribers: kgardas, gridaphobe, RyanGlScott, simonmar, rwbarton, #ghc_windows_task_force Differential Revision: https://phabricator.haskell.org/D1805 GHC Trac Issues: #11223 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 10 23:57:14 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 10 Apr 2016 23:57:14 -0000 Subject: [GHC] #11819: Full validation issues for 8.0.1 Message-ID: <046.98f1b24d795b2e584c0708ff1e99ff8b@haskell.org> #11819: Full validation issues for 8.0.1 -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- `./validate --slow` gave rise to some failures. Re-running them resulted in, {{{ make fulltest TEST="overloadedrecfldsrun04 overloadedlabelsrun04 SplicesUsed scc003 T5654b-O1 T5654b-O0 T9646 T5550 T2120 Rules1 T7837 T10697_decided_3 qq007 qq008 qq009 T9078 overflow3 overflow2 overflow1 T10728 T7919 forkprocess01 TH_spliceViewPat T8089 haddock.Cabal" ... Unexpected results from: TEST="overloadedrecfldsrun04 overloadedlabelsrun04 SplicesUsed scc003 T5654b-O1 T5654b-O0 T9646 T5550 T2120 Rules1 T7837 T10697_decided_3 qq007 qq008 qq009 T9078 overflow3 overflow2 overflow1 T10728 T7919 TH_spliceViewPat T8089 haddock.Cabal" OVERALL SUMMARY for test run started at Sun Apr 10 19:55:59 2016 EDT 0:02:54 spent to go through 25 total tests, which gave rise to 186 test cases, of which 40 were skipped 0 had missing libraries 110 expected passes 0 expected failures 0 caused framework failures 0 unexpected passes 35 unexpected failures 1 unexpected stat failures Unexpected failures: ../../libraries/array/tests T2120 [bad stdout] (profasm,profthreaded) ../../libraries/base/tests T8089 [bad profile] (profasm,profthreaded) indexed-types/should_compile Rules1 [exit code non-0] (profasm) indexed-types/should_compile T7837 [stderr mismatch] (profasm) overloadedrecflds/should_run overloadedlabelsrun04 [exit code non-0] (profasm,profthreaded) overloadedrecflds/should_run overloadedrecfldsrun04 [exit code non-0] (profasm,profthreaded) partial-sigs/should_compile SplicesUsed [exit code non-0] (profasm) profiling/should_run T5654b-O0 [exit code non-0] (prof) profiling/should_run T5654b-O1 [exit code non-0] (profasm) profiling/should_run scc003 [bad profile] (prof) quasiquotation/qq007 qq007 [exit code non-0] (profasm) quasiquotation/qq008 qq008 [exit code non-0] (profasm) quasiquotation/qq009 qq009 [exit code non-0] (profasm) quotes/TH_spliceViewPat TH_spliceViewPat [exit code non-0] (profasm,profthreaded) rts T10728 [bad stdout] (profasm,threaded2,profthreaded) rts T10728 [bad stdout or stderr] (ghci) rts T7919 [exit code non-0] (profasm,profthreaded) rts T9078 [exit code non-0] (profasm) rts overflow1 [bad profile] (profasm,profthreaded) rts overflow2 [bad profile] (profasm,profthreaded) rts overflow3 [bad profile] (profasm,profthreaded) simplCore/T9646 T9646 [bad stdout or stderr] (ghci) simplCore/should_compile T5550 [exit code non-0] (profasm) th T10697_decided_3 [bad stdout or stderr] (ghci) Unexpected stat failures: perf/haddock haddock.Cabal [stat not good enough] (normal) }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 00:07:35 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 00:07:35 -0000 Subject: [GHC] #11108: Weak references related crash In-Reply-To: <046.1b25661a2ebf5aa23d3a93aae541239e@haskell.org> References: <046.1b25661a2ebf5aa23d3a93aae541239e@haskell.org> Message-ID: <061.cf921f72c5bed84e976d3bb9254d36ce@haskell.org> #11108: Weak references related crash -------------------------------------+------------------------------------- Reporter: Saulzar | Owner: jme Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Runtime System | Version: 7.10.2 Resolution: | Keywords: Operating System: Linux | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: #11746 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by akio): * cc: akio (added) Comment: Oh... it sounds like I messed things up when I implemented per-generation weak pointer lists. Please let me know if there is anything I can help with. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 00:20:23 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 00:20:23 -0000 Subject: [GHC] #11795: Performance issues with replicateM_ In-Reply-To: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> References: <047.c6dc91bc6d3dd4caa1c7ab5720dcc3ac@haskell.org> Message-ID: <062.563054349994140e612151a0f7c63264@haskell.org> #11795: Performance issues with replicateM_ -------------------------------------+------------------------------------- Reporter: snoyberg | Owner: snoyberg Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: libraries/base | Version: 7.10.3 Resolution: fixed | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Runtime | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2086 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: Merged to `ghc-8.0` as 7c6bc78fe1110be426de0bf95157f114d216b3aa. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 00:21:11 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 00:21:11 -0000 Subject: [GHC] #11804: Export zonkEvBinds from TcHsSyn. In-Reply-To: <044.2b412afff7a50994854cf1ad8bdb7882@haskell.org> References: <044.2b412afff7a50994854cf1ad8bdb7882@haskell.org> Message-ID: <059.068803ae5d1bfc56cf0b2c878598779c@haskell.org> #11804: Export zonkEvBinds from TcHsSyn. -------------------------------------+------------------------------------- Reporter: conal | Owner: Type: feature request | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 7.11 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: Merged to `ghc-8.0` in ea173634a219e1191144a8c924d88fc6579d4274. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 00:24:36 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 00:24:36 -0000 Subject: [GHC] #11732: Deriving Generic1 interacts poorly with TypeInType In-Reply-To: <047.27a25c470c88bbba69595642672c1832@haskell.org> References: <047.27a25c470c88bbba69595642672c1832@haskell.org> Message-ID: <062.be0dc320a13854c7ffbfa84c90d728b3@haskell.org> #11732: Deriving Generic1 interacts poorly with TypeInType -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.1 Resolution: fixed | Keywords: TypeInType, | Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #5939 | Differential Rev(s): Phab:D2061 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: Merged to `ghc-8.0 ` as a2b9c53e5e4756c23fe3d4f6f3face7ae2efafc6. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 00:27:37 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 00:27:37 -0000 Subject: [GHC] #11680: Out-of-scope suggestion given for an out-of-scope variable when using TH In-Reply-To: <042.98f1e89f02393a599dc5a3ef57e2d85f@haskell.org> References: <042.98f1e89f02393a599dc5a3ef57e2d85f@haskell.org> Message-ID: <057.3032d5b24b5b3296ded5fa2b6caf384d@haskell.org> #11680: Out-of-scope suggestion given for an out-of-scope variable when using TH -------------------------------------+------------------------------------- Reporter: jme | Owner: jme Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Template Haskell | Version: 8.0.1-rc2 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2000 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => closed * resolution: => fixed * milestone: => 8.0.1 Comment: Too late; already merged as f93c9517a2c6e158e4a5c5bc7a3d3f88cb4ed119. Thanks jme! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 00:29:23 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 00:29:23 -0000 Subject: [GHC] #11223: Runtime linker performs eager loading of all object files In-Reply-To: <044.1eba10cc2ab875f8ad0571288cc4efc5@haskell.org> References: <044.1eba10cc2ab875f8ad0571288cc4efc5@haskell.org> Message-ID: <059.70f454d91dc99b0faa05f2da75b64379@haskell.org> #11223: Runtime linker performs eager loading of all object files -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Phyx- Type: task | Status: closed Priority: normal | Milestone: 8.0.1 Component: Runtime System | Version: 7.10.3 (Linker) | Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: #10726 #11317 | Differential Rev(s): Phab:D1805 #11748 | Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => closed * resolution: => fixed * milestone: 8.2.1 => 8.0.1 Comment: Merged to `ghc-8.0` as 068d9273f0a427cbab4ea95cfca211ec127dc785. Thanks Phyx! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 00:31:02 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 00:31:02 -0000 Subject: [GHC] #11809: Template Haskell record splices are not renamer-resolved correctly. In-Reply-To: <047.405dec4fbee13ac6686a46a36b32cd28@haskell.org> References: <047.405dec4fbee13ac6686a46a36b32cd28@haskell.org> Message-ID: <062.39210e40b2e8945f90377b0e24a0e637@haskell.org> #11809: Template Haskell record splices are not renamer-resolved correctly. -------------------------------------+------------------------------------- Reporter: bollmann | Owner: bollmann Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Template Haskell | Version: 8.0.1 Resolution: fixed | Keywords: Template | Haskell Renamer Records Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2091 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: Merged to `ghc-8.0` as e4650932ce18e04a24aba2c8de71fe19d691f5fe. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 01:06:40 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 01:06:40 -0000 Subject: [GHC] #11783: Very large slowdown when using parallel garbage collector In-Reply-To: <048.dfe418c8e00a9964b98ea3634140ac6c@haskell.org> References: <048.dfe418c8e00a9964b98ea3634140ac6c@haskell.org> Message-ID: <063.7a790f8628e7582796d079b2e96884bf@haskell.org> #11783: Very large slowdown when using parallel garbage collector -------------------------------------+------------------------------------- Reporter: luispedro | Owner: simonmar Type: bug | Status: new Priority: high | Milestone: 8.0.2 Component: Runtime System | Version: 7.10.3 Resolution: | Keywords: performance, | garbage collector Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonmar): * owner: => simonmar * priority: normal => high * milestone: => 8.0.2 Comment: I'm able to reproduce this, but I don't know what the cause is yet. Thanks for the test case! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 01:16:17 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 01:16:17 -0000 Subject: [GHC] #11623: Wrong error message for type family definition that is wrong in multiple ways In-Reply-To: <047.ac7120cde85232bfd7b39a31762350cf@haskell.org> References: <047.ac7120cde85232bfd7b39a31762350cf@haskell.org> Message-ID: <062.55515066be33a4bdfd919f3eac875af2@haskell.org> #11623: Wrong error message for type family definition that is wrong in multiple ways -------------------------------------+------------------------------------- Reporter: rwbarton | Owner: rdragon Type: bug | Status: merge Priority: low | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.1 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2089 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"46e8f199e4d3baffa306a40082fbc2fce67f779f/ghc" 46e8f199/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="46e8f199e4d3baffa306a40082fbc2fce67f779f" Fix a closed type family error message Now we check whether a closed type family's equation is headed with the correct type before we kind-check the equation. Also, instead of "expected only no parameters" we now generate the message "expected no parameters". Fixes #11623. Reviewers: simonpj, austin, bgamari Reviewed By: simonpj, bgamari Subscribers: simonpj, goldfire, thomie Differential Revision: https://phabricator.haskell.org/D2089 GHC Trac Issues: #11623 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 01:16:17 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 01:16:17 -0000 Subject: [GHC] #11790: (More) missing instances for Identity and Const In-Reply-To: <045.44b1fa024af740b88eaa1765c2d36b9a@haskell.org> References: <045.44b1fa024af740b88eaa1765c2d36b9a@haskell.org> Message-ID: <060.c18d707671b31efc127df0a00648e30d@haskell.org> #11790: (More) missing instances for Identity and Const -------------------------------------+------------------------------------- Reporter: duairc | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2079 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"8b57cac5974c9fffccbcae3104b5b5d18760749e/ghc" 8b57cac/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="8b57cac5974c9fffccbcae3104b5b5d18760749e" Added (more) missing instances for Identity and Const * `Identity` and `Const` now have `Num`, `Real`, `Integral`, `Fractional`, `Floating`, `RealFrac` and `RealFloat` instances * `Identity` and `Const` now have `Bits` and `FiniteBits` instances * `Identity` and `Const` now have `IsString` instances Reviewers: RyanGlScott, austin, hvr, bgamari, ekmett Reviewed By: ekmett Subscribers: nomeata, ekmett, RyanGlScott, thomie Differential Revision: https://phabricator.haskell.org/D2079 GHC Trac Issues: #11790 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 01:16:17 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 01:16:17 -0000 Subject: [GHC] #11463: Template Haskell applies too many arguments to kind synonym In-Reply-To: <050.c7d753a5f21fb330e97bd8d6b7fe7cde@haskell.org> References: <050.c7d753a5f21fb330e97bd8d6b7fe7cde@haskell.org> Message-ID: <065.3dcfd706f1fa71b49f01e78f68a8f275@haskell.org> #11463: Template Haskell applies too many arguments to kind synonym -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Template Haskell | Version: 8.0.1-rc1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2081 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"02a5c580b6078630842f4c3db5d92631fada21e9/ghc" 02a5c58/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="02a5c580b6078630842f4c3db5d92631fada21e9" Filter out invisible kind arguments during TH reification Previously, all kind arguments were being reified, which would cause something like this: ``` type Id a = a data Proxy (a :: Id k) = Proxy ``` to output ``` data Proxy (a :: Id * k) = Proxy ``` when `Proxy`'s `Info` is reified. The fix is simple: simply call `filterOutInvisibleTypes` on the kind arguments of a kind synonym application. Fixes #11463. Test Plan: ./validate Reviewers: austin, bgamari, goldfire Reviewed By: goldfire Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2081 GHC Trac Issues: #11463 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 01:16:17 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 01:16:17 -0000 Subject: [GHC] #10561: "deriving (Functor)" on a polykinded type produces ill-kinded instance In-Reply-To: <047.92b5c73d11a6ce75dd9ba55b0b432115@haskell.org> References: <047.92b5c73d11a6ce75dd9ba55b0b432115@haskell.org> Message-ID: <062.7fce011009d3162c5dfb041c2e4515a7@haskell.org> #10561: "deriving (Functor)" on a polykinded type produces ill-kinded instance -------------------------------------+------------------------------------- Reporter: rwbarton | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 7.11 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: | deriving/should_compile/T10561 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"aadde2b90817c577336da0d4a10ea47551d60c7e/ghc" aadde2b/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="aadde2b90817c577336da0d4a10ea47551d60c7e" Deriving Functor-like classes should unify kind variables While the deriving machinery always unifies the kind of the typeclass argument with the kind of the datatype, this proves not to be sufficient to produce well kinded instances for some poly-kinded datatypes. For example: ``` newtype Compose (f :: k2 -> *) (g :: k1 -> k2) (a :: k1) = Compose (f (g a)) deriving Functor ``` would fail because only `k1` would get unified with `*`, causing the following ill kinded instance to be generated: ``` instance (Functor (f :: k2 -> *), Functor (g :: * -> k2)) => Functor (Compose f g) where ... ``` To prevent this, we need to take the subtypes and unify their kinds with `* -> *`. Fixes #10524 for good. Test Plan: ./validate Reviewers: simonpj, hvr, austin, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2097 GHC Trac Issues: #10524, #10561 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 01:16:17 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 01:16:17 -0000 Subject: [GHC] #10524: PolyKinds doesn't interact well with DeriveFunctor In-Reply-To: <050.7408f13045aa603e186c148218ece722@haskell.org> References: <050.7408f13045aa603e186c148218ece722@haskell.org> Message-ID: <065.8b1cb61a6bf8e85cead9ec45a672ef62@haskell.org> #10524: PolyKinds doesn't interact well with DeriveFunctor -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: #10561 | Differential Rev(s): Phab:D2097 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"aadde2b90817c577336da0d4a10ea47551d60c7e/ghc" aadde2b/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="aadde2b90817c577336da0d4a10ea47551d60c7e" Deriving Functor-like classes should unify kind variables While the deriving machinery always unifies the kind of the typeclass argument with the kind of the datatype, this proves not to be sufficient to produce well kinded instances for some poly-kinded datatypes. For example: ``` newtype Compose (f :: k2 -> *) (g :: k1 -> k2) (a :: k1) = Compose (f (g a)) deriving Functor ``` would fail because only `k1` would get unified with `*`, causing the following ill kinded instance to be generated: ``` instance (Functor (f :: k2 -> *), Functor (g :: * -> k2)) => Functor (Compose f g) where ... ``` To prevent this, we need to take the subtypes and unify their kinds with `* -> *`. Fixes #10524 for good. Test Plan: ./validate Reviewers: simonpj, hvr, austin, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2097 GHC Trac Issues: #10524, #10561 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 01:50:17 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 01:50:17 -0000 Subject: [GHC] #11463: Template Haskell applies too many arguments to kind synonym In-Reply-To: <050.c7d753a5f21fb330e97bd8d6b7fe7cde@haskell.org> References: <050.c7d753a5f21fb330e97bd8d6b7fe7cde@haskell.org> Message-ID: <065.523750877b207771153368935bd0c99a@haskell.org> #11463: Template Haskell applies too many arguments to kind synonym -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Template Haskell | Version: 8.0.1-rc1 Resolution: fixed | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2081 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: Merged to `ghc-8.0` as a1fa34ced8f317dcaa63babaf50040a7d8c68827. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 01:50:39 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 01:50:39 -0000 Subject: [GHC] #11623: Wrong error message for type family definition that is wrong in multiple ways In-Reply-To: <047.ac7120cde85232bfd7b39a31762350cf@haskell.org> References: <047.ac7120cde85232bfd7b39a31762350cf@haskell.org> Message-ID: <062.925e2e9741dfb2a13d952f39d199b48b@haskell.org> #11623: Wrong error message for type family definition that is wrong in multiple ways -------------------------------------+------------------------------------- Reporter: rwbarton | Owner: rdragon Type: bug | Status: closed Priority: low | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.1 checker) | Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2089 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: Merged to `ghc-8.0` as cd35e860d1e709868c6005c8280fca95fe3dd431. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 01:51:20 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 01:51:20 -0000 Subject: [GHC] #11818: Haddock's Sphinx documentation breaks `make install` if doc building is disabled In-Reply-To: <046.6f9689393de814a115d9a946997a1ef8@haskell.org> References: <046.6f9689393de814a115d9a946997a1ef8@haskell.org> Message-ID: <061.be3037ba86fd83410e058823464da214@haskell.org> #11818: Haddock's Sphinx documentation breaks `make install` if doc building is disabled -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: closed Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => closed * resolution: => fixed Comment: Merged to `ghc-8.0` as 1321c62c4fabc4c9f2ad372dd80acd756ca78ff9. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 04:44:35 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 04:44:35 -0000 Subject: [GHC] #11108: Weak references related crash In-Reply-To: <046.1b25661a2ebf5aa23d3a93aae541239e@haskell.org> References: <046.1b25661a2ebf5aa23d3a93aae541239e@haskell.org> Message-ID: <061.16715c7da2554d4638f5eee8b34e4553@haskell.org> #11108: Weak references related crash -------------------------------------+------------------------------------- Reporter: Saulzar | Owner: jme Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Runtime System | Version: 7.10.2 Resolution: | Keywords: Operating System: Linux | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: #11746 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by jme): Replying to [comment:10 akio]: > Please let me know if there is anything I can help with. Thanks! The fix should be relatively straightforward, but if I do have any questions, I'll be sure to ask. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 05:29:12 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 05:29:12 -0000 Subject: [GHC] #11223: Runtime linker performs eager loading of all object files In-Reply-To: <044.1eba10cc2ab875f8ad0571288cc4efc5@haskell.org> References: <044.1eba10cc2ab875f8ad0571288cc4efc5@haskell.org> Message-ID: <059.3614daada3b9f06596e6ea1ee2cff31d@haskell.org> #11223: Runtime linker performs eager loading of all object files -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Phyx- Type: task | Status: closed Priority: normal | Milestone: 8.0.1 Component: Runtime System | Version: 7.10.3 (Linker) | Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: #10726 #11317 | Differential Rev(s): Phab:D1805 #11748 | Wiki Page: | -------------------------------------+------------------------------------- Comment (by Tamar Christina ): In [changeset:"c6e579bc3820afe71e51b711ee579a4d658ffbf9/ghc" c6e579b/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="c6e579bc3820afe71e51b711ee579a4d658ffbf9" Add linker notes Summary: Add linker notes following #11223 and D1805 Reviewers: austin, bgamari, erikd Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2102 GHC Trac Issues: #11223 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 05:31:52 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 05:31:52 -0000 Subject: [GHC] #11223: Runtime linker performs eager loading of all object files In-Reply-To: <044.1eba10cc2ab875f8ad0571288cc4efc5@haskell.org> References: <044.1eba10cc2ab875f8ad0571288cc4efc5@haskell.org> Message-ID: <059.435826a63f7d8ec661657851ca34b824@haskell.org> #11223: Runtime linker performs eager loading of all object files -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Phyx- Type: task | Status: closed Priority: normal | Milestone: 8.0.1 Component: Runtime System | Version: 7.10.3 (Linker) | Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: #10726 #11317 | Differential Rev(s): Phab:D1805 #11748 | Phab:D2102 Wiki Page: | -------------------------------------+------------------------------------- Changes (by Phyx-): * differential: Phab:D1805 => Phab:D1805 Phab:D2102 Comment: Cheers! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 07:49:51 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 07:49:51 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.dd9a37cfce213e58cbce0d8959300603@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Looks like the confusion was due to the lack of a proper specification of the `EmptyCase` extension, in particular about the operational semantics of it. Maybe someone feels like extending https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/syntax- extns.html#empty-case with a sentence or two on that? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 08:04:02 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 08:04:02 -0000 Subject: [GHC] #11820: bindist install script doesn't check libdw version Message-ID: <046.683737f3d510683a10e3f723af3ce933@haskell.org> #11820: bindist install script doesn't check libdw version -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Build System | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- It seems that while the source distribution's `configure` script checks for the minimum required version of `libdw`, the binary distribution does not. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 08:18:54 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 08:18:54 -0000 Subject: [GHC] #11820: Configure script doesn't check libdw version (was: bindist install script doesn't check libdw version) In-Reply-To: <046.683737f3d510683a10e3f723af3ce933@haskell.org> References: <046.683737f3d510683a10e3f723af3ce933@haskell.org> Message-ID: <061.c9795aae5d78b62f2ac37726ad08d247@haskell.org> #11820: Configure script doesn't check libdw version -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Build System | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by bgamari: @@ -1,3 +1,2 @@ - It seems that while the source distribution's `configure` script checks - for the minimum required version of `libdw`, the binary distribution does - not. + Configure checks only for `libdw`'s precense, not the minimum version we + require (0.158). New description: Configure checks only for `libdw`'s precense, not the minimum version we require (0.158). -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 08:19:54 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 08:19:54 -0000 Subject: [GHC] #11820: Configure script doesn't check libdw version In-Reply-To: <046.683737f3d510683a10e3f723af3ce933@haskell.org> References: <046.683737f3d510683a10e3f723af3ce933@haskell.org> Message-ID: <061.e8d1c843cd6ee5e55ca37ac7bec1a1fb@haskell.org> #11820: Configure script doesn't check libdw version -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: patch Priority: highest | Milestone: 8.0.1 Component: Build System | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2103 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => patch * differential: => Phab:D2103 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 08:43:46 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 08:43:46 -0000 Subject: [GHC] #11821: Internal error: not in scope during type checking, but it passed the renamer Message-ID: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> #11821: Internal error: not in scope during type checking, but it passed the renamer -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: GHC rejects Unknown/Multiple | valid program Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- While trying to get the singletons package to compile on GHC8 (https://github.com/goldfirere/singletons/pull/142), I encountered the following error while trying to track down a bug: {{{ [1 of 1] Compiling NotInScope ( NotInScope.hs, interpreted ) NotInScope.hs:22:20: error: ? GHC internal error: ?b? is not in scope during type checking, but it passed the renamer tcl_env of environment: [a1lm :-> Type variable ?b? = b, a1lA :-> Type variable ?l1? = l1, a1lB :-> Type variable ?l2? = l2, a1lC :-> Type variable ?l3? = l3, a1lE :-> Type variable ?a? = a, a1lF :-> Type variable ?l4? = l4, r1aq :-> ATcTyCon Lgo, r1aG :-> ATcTyCon Lgo1, r1aI :-> ATcTyCon Lgo2] ? In the kind ?b? In the definition of data constructor ?Lgo1KindInference? In the data declaration for ?Lgo1? }}} for the following code: {{{ {-# LANGUAGE RankNTypes, DataKinds, PolyKinds, GADTs, TypeFamilies, UndecidableInstances #-} module NotInScope where import Data.Proxy type KindOf (a :: k) = ('KProxy :: KProxy k) data TyFun :: * -> * -> * type family Apply (f :: TyFun k1 k2 -> *) (x :: k1) :: k2 data Lgo2 l1 l2 l3 (l4 :: b) (l5 :: TyFun [a] b) = forall (arg :: [a]) . KindOf (Apply (Lgo2 l1 l2 l3 l4) arg) ~ KindOf (Lgo l1 l2 l3 l4 arg) => Lgo2KindInference data Lgo1 l1 l2 l3 (l4 :: TyFun b (TyFun [a] b -> *)) = forall (arg :: b) . KindOf (Apply (Lgo1 l1 l2 l3) arg) ~ KindOf (Lgo2 l1 l2 l3 arg) => Lgo1KindInference type family Lgo f z0 xs0 (a1 :: b) (a2 :: [a]) :: b where Lgo f z0 xs0 z '[] = z Lgo f z0 xs0 z ('(:) x xs) = Apply (Apply (Lgo1 f z0 xs0) (Apply (Apply f z) x)) xs }}} Note that the above code works fine in GHC 7.10.2. There are two options to make the code compile on GHC8-rc3: * Remove the kind annotations on the {{{forall arg .}}} binders * Or make the following changes using TypeInType: {{{ {-# LANGUAGE RankNTypes, DataKinds, PolyKinds, GADTs, TypeFamilies, UndecidableInstances, TypeInType #-} module NotInScope where import Data.Proxy import GHC.Types type KindOf (a :: k) = ('KProxy :: KProxy k) data TyFun :: * -> * -> * type family Apply (f :: TyFun k1 k2 -> *) (x :: k1) :: k2 data Lgo2 a b l1 l2 l3 (l4 :: b) (l5 :: TyFun [a] b) = forall (arg :: [a]) . KindOf (Apply (Lgo2 a b l1 l2 l3 l4) arg) ~ KindOf (Lgo a b l1 l2 l3 l4 arg) => Lgo2KindInference data Lgo1 a b l1 l2 l3 (l4 :: TyFun b (TyFun [a] b -> *)) = forall (arg :: b) . KindOf (Apply (Lgo1 a b l1 l2 l3) arg) ~ KindOf (Lgo2 a b l1 l2 l3 arg) => Lgo1KindInference type family Lgo a b f z0 xs0 (a1 :: b) (a2 :: [a]) :: b where Lgo a b f z0 xs0 z '[] = z Lgo a b f z0 xs0 z ('(:) x xs) = Apply (Apply (Lgo1 a b f z0 xs0) (Apply (Apply f z) x)) xs }}} I'm sorry I didn't create a smaller test case. Let me know if one is required and I'll try. The error seems to be related to the recursive aspect of the three definitions and how implicit kind variables are handled in ghc8. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 11:24:31 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 11:24:31 -0000 Subject: [GHC] #10962: Improved arithmetic primops In-Reply-To: <050.9a384d25dddf3580aebe73d3e27aa54b@haskell.org> References: <050.9a384d25dddf3580aebe73d3e27aa54b@haskell.org> Message-ID: <065.7275f1f04966b90537a12b0a58b0582a@haskell.org> #10962: Improved arithmetic primops -------------------------------------+------------------------------------- Reporter: nkaretnikov | Owner: nkaretnikov Type: task | Status: patch Priority: normal | Milestone: 8.2.1 Component: Compiler | Version: 7.11 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1966 Wiki Page: | wiki:ImprovedArithmeticPrimops | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => patch * differential: => Phab:D1966 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 11:26:12 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 11:26:12 -0000 Subject: [GHC] #11776: RTS segfaults when printing profiling information which refers to unloaded objects In-Reply-To: <046.fc47333743fc6f4f1fd8d834c9aff42c@haskell.org> References: <046.fc47333743fc6f4f1fd8d834c9aff42c@haskell.org> Message-ID: <061.a387da747a867ce3121ffad0313e8eab@haskell.org> #11776: RTS segfaults when printing profiling information which refers to unloaded objects -------------------------------------+------------------------------------- Reporter: afarmer | Owner: afarmer Type: bug | Status: patch Priority: normal | Milestone: 8.0.2 Component: Runtime System | Version: 7.10.3 (Linker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2067 Wiki Page: | Phab:D2068 Phab:D2069 Phab:D2071 -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: => 8.0.2 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 11:29:26 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 11:29:26 -0000 Subject: [GHC] #11369: Suppress redundant-constraint warnings in case of empty classes In-Reply-To: <042.737377bf025e0f1e9e16df66e2da43c7@haskell.org> References: <042.737377bf025e0f1e9e16df66e2da43c7@haskell.org> Message-ID: <057.a78ce63a49fc532f013006b626ffb73e@haskell.org> #11369: Suppress redundant-constraint warnings in case of empty classes -------------------------------------+------------------------------------- Reporter: hvr | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler (Type | Version: 8.1 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #11370 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: 8.0.1 => 8.0.2 Comment: Bumping to 8.0.2. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 11:30:27 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 11:30:27 -0000 Subject: [GHC] #11339: Possible type-checker regression in GHC 8.0 In-Reply-To: <042.e02f929caf8d7a3c89e3acf4b77b9340@haskell.org> References: <042.e02f929caf8d7a3c89e3acf4b77b9340@haskell.org> Message-ID: <057.5d8c263caabd674d81c9edb065e024b0@haskell.org> #11339: Possible type-checker regression in GHC 8.0 -------------------------------------+------------------------------------- Reporter: hvr | Owner: simonpj Type: bug | Status: new Priority: highest | Milestone: 8.0.2 Component: Compiler (Type | Version: 8.0.1-rc1 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: 8.0.1 => 8.0.2 Comment: This will not be addressed for 8.0.1. If you encounter this bug please add a type signature. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 11:39:25 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 11:39:25 -0000 Subject: [GHC] #11820: Configure script doesn't check libdw version In-Reply-To: <046.683737f3d510683a10e3f723af3ce933@haskell.org> References: <046.683737f3d510683a10e3f723af3ce933@haskell.org> Message-ID: <061.e84fcb6ef6d1a4fa0c104167e6068b8c@haskell.org> #11820: Configure script doesn't check libdw version -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: patch Priority: highest | Milestone: 8.0.1 Component: Build System | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2103 Wiki Page: | -------------------------------------+------------------------------------- Changes (by asr): * cc: asr (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 11:44:42 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 11:44:42 -0000 Subject: [GHC] #11656: Alllow static pointers to local closed definitions In-Reply-To: <044.9cd8af9f533a09aabdba922a1db355ab@haskell.org> References: <044.9cd8af9f533a09aabdba922a1db355ab@haskell.org> Message-ID: <059.126565b3147b07408fa43151aa2b7b70@haskell.org> #11656: Alllow static pointers to local closed definitions -------------------------------------+------------------------------------- Reporter: mboes | Owner: | facundo.dominguez Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: 11698 | Blocking: Related Tickets: | Differential Rev(s): Phab:D2104 Wiki Page: | -------------------------------------+------------------------------------- Changes (by facundo.dominguez): * status: new => patch * differential: => Phab:D2104 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 11:58:09 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 11:58:09 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.b0a66a67b8e34448f91b21c6805d6a0a@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by gkaracha): Replying to [comment:16 dfeuer]: > {{{#!hs > Prelude> :set -XEmptyCase -XEmptyDataDecls > Prelude> data Void > Prelude> let absurd :: Void -> a; absurd x = case x of > Prelude> absurd (error "Really?") > *** Exception: Really? > }}} Wow! I was indeed not familiar with this unintuitive design choice, you are right. Replying to [comment:17 dfeuer]: > To summarize, empty case is desugared specially. It therefore needs a special case for coverage checking, but ''not'' the trivial one we currently have. I suspect the right thing is probably to avoid including `_|_` in `mkInitialUncovered` when checking an empty `case`, whatever that involves. You may need to do something else if you want to catch an overlapping trivial pattern in since cases, but even if you miss that it's no big deal. Overlap checking is not affected by this I think. Since this eager evaluation happens only in the `EmptyCase` case, there are no patterns to be considered redundant. Nevertheless, the case needs special treatment. The best fix I can think about this is a function {{{#!hs areInhabited :: [Id] -> TcM [ValVec] }}} which unfolds everything to WHNF if possible (recursively, I guess, if there are strict fields) and checks for satisfiability (approximately, of course, since this may not terminate). Then, `checkMatches'` could be adjusted: {{{#!hs checkMatches' :: [Id] -> [LMatch Id (LHsExpr Id)] -> DsM PmResult checkMatches' vars matches | null matches = areInhabited vars >>= \us -> return ([],us,[]) | otherwise = ... }}} Does this sound reasonable? I'd like to think this through first, but I could write such a fix. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 12:38:55 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 12:38:55 -0000 Subject: [GHC] #11760: runST with lazy blackholing breaks referential transparency In-Reply-To: <044.f9450e9011a111f1ca51def99a5b24a4@haskell.org> References: <044.f9450e9011a111f1ca51def99a5b24a4@haskell.org> Message-ID: <059.b4df2f013111bc100b6d4eac2660b347@haskell.org> #11760: runST with lazy blackholing breaks referential transparency -------------------------------------+------------------------------------- Reporter: Yuras | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonmar): Wow. Great bug. This should not happen. I believe the problem is specific to the lazy ST monad (`Control.Monad.ST.Lazy`), but your example relies on this so it's hard to test the theory. What happens is that the top-level runST thunk gets updated with `(x : xs)` where `xs` is itself a lazy ST computation that refers to mutable state. At this point it is possible for two threads to evaluate the inner thunk and get different results. We could use `noDuplicate#` in the lazy ST monad which should prevent this, but it will make lazy ST much more expensive. Maybe that's ok. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 14:52:10 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 14:52:10 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.4ed85dafca661e07fc1877571477232d@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by dfeuer): I don't think you need to go that far to satisfy many people, although maybe I'm missing something. We mostly want you to inspect all constructors of the relevant datatype that have not obviously been eliminated previously and check that their result types are apart from the type of the scrutinee. The reason for the perhaps-counterintuitive design choice is that a ''lazy'' empty `case` would be quite useless--you'd always be better off with an `error` call than such a beast! Strict empty case, on the other hand, will be quite useful once this bug is squashed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 15:54:23 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 15:54:23 -0000 Subject: [GHC] #10001: GHC crash trying to build a project within Nix-shell In-Reply-To: <047.a911662f59d5386fa0d95515f4c6d044@haskell.org> References: <047.a911662f59d5386fa0d95515f4c6d044@haskell.org> Message-ID: <062.5c68ffb5999f1aa7336591a6b7586ed9@haskell.org> #10001: GHC crash trying to build a project within Nix-shell -------------------------------------+------------------------------------- Reporter: wolftune | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.8.4 Resolution: invalid | Keywords: Operating System: Linux | Architecture: x86_64 Type of failure: Compile-time | (amd64) crash | Test Case: Blocked By: | Blocking: Related Tickets: 9825 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by siddhanathan): * status: infoneeded => closed * resolution: => invalid Comment: So turns out `TMPDIR` was not set by default on my machine (using Ubuntu), and in such situations, nix defaults to using a temporary directory in `/run` which causes the panic. Setting `TMPDIR` to `/tmp` should fix the issue. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 17:44:48 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 17:44:48 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.67713d9e3a572099b719c117e38bf9b9@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by dfeuer): Oh, I see what you mean about recursively checking strict fields to some limit. That would be very nice, yes, but it's not urgent because there's a good way to work around it: {{{#!hs data SId a = SId !a --With recursive checking foo :: SId Void -> a foo bad = case bad of --Without recursive checking foo (SId bad) = absurd bad }}} What I don't understand is what you mean about unfolding something to WHNF. If the goal is to try to determine the actual WHNF of the scrutinee, that sounds like overkill to me, unless you're doing that in other cases already. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 18:05:46 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 18:05:46 -0000 Subject: [GHC] #11790: (More) missing instances for Identity and Const In-Reply-To: <045.44b1fa024af740b88eaa1765c2d36b9a@haskell.org> References: <045.44b1fa024af740b88eaa1765c2d36b9a@haskell.org> Message-ID: <060.e4e87d952c8c75d446e34c5d928ac54b@haskell.org> #11790: (More) missing instances for Identity and Const -------------------------------------+------------------------------------- Reporter: duairc | Owner: Type: feature request | Status: closed Priority: normal | Milestone: 8.0.1 Component: libraries/base | Version: 7.10.3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2079 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => closed * resolution: => fixed * milestone: => 8.0.1 Comment: Thanks Shane! Merged to `ghc-8.0` as 7b8beba76a31b3184413e033c6f86a5dd6c70ac7. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 18:38:32 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 18:38:32 -0000 Subject: [GHC] #10886: Remove the magic from `Any` In-Reply-To: <047.f678cbb73069d1c6ee1f63fe7d449257@haskell.org> References: <047.f678cbb73069d1c6ee1f63fe7d449257@haskell.org> Message-ID: <062.8f9c64521b572cee406dfeee6e4810c4@haskell.org> #10886: Remove the magic from `Any` -------------------------------------+------------------------------------- Reporter: goldfire | Owner: goldfire Type: task | Status: closed Priority: normal | Milestone: 8.2.1 Component: Compiler | Version: 7.10.2 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2049 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => closed * resolution: => fixed -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 19:15:44 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 19:15:44 -0000 Subject: [GHC] #9868: ghc: panic! Dynamic linker not initialised In-Reply-To: <046.5f3f9e960e287bc6e82a07e7ce17a8b6@haskell.org> References: <046.5f3f9e960e287bc6e82a07e7ce17a8b6@haskell.org> Message-ID: <061.305211d2f57c106c773eb14c690bf9a6@haskell.org> #9868: ghc: panic! Dynamic linker not initialised -------------------------------------+------------------------------------- Reporter: Jamedjo | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 7.10.3 (Linker) | Resolution: | Keywords: Operating System: Linux | Architecture: x86_64 Type of failure: Compile-time | (amd64) crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by glittershark): * status: closed => new * resolution: worksforme => * version: 7.8.3 => 7.10.3 * os: MacOS X => Linux Comment: This is happening to me again on 7.10.3 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 19:32:39 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 19:32:39 -0000 Subject: [GHC] #11822: Pattern match checker exceeded (2000000) iterations Message-ID: <049.f2a29571b162949a036aa4b2a361c7f6@haskell.org> #11822: Pattern match checker exceeded (2000000) iterations -------------------------------------+------------------------------------- Reporter: j.waldmann | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: x86_64 | Type of failure: Compile-time (amd64) | performance bug Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- graphviz seems a nice benchmark (not too large, few dependencies) that highlights compiler performance problems on "trivial" source code (cf. https://hackage.haskell.org/package/graphviz-2999.18.0.2/docs/src /Data-GraphViz-Attributes-Complete.html#sameAttribute) Compilation of Compiling Data.GraphViz.Attributes.Colors.X11 and Data.GraphViz.Attributes.Values takes >= 1 second each, and the following happens: {{{ cabal install graphviz-2999.18.0.2 --allow-newer ... [17 of 31] Compiling Data.GraphViz.Attributes.Complete ( Data/GraphViz/Attributes/Complete.hs, dist/dist-sandbox- e6f2c124/build/Data/GraphViz/Attributes/Complete.o ) Data/GraphViz/Attributes/Complete.hs:1013:1: warning: Pattern match checker exceeded (2000000) iterations in an equation for ?sameAttribute?. (Use -fmax-pmcheck-iterations=n to set the maximun number of iterations to n) }}} I do welcome that ghc emits this warning - I expect you want its occurence to be reported as a bug? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 19:50:56 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 19:50:56 -0000 Subject: [GHC] #11155: Trivial thunk gives "undefined reference to stg_ap_0_upd_info" In-Reply-To: <046.d8196c999608fededc5ef9d4e2e29843@haskell.org> References: <046.d8196c999608fededc5ef9d4e2e29843@haskell.org> Message-ID: <061.6902347bc6ea91a9ac9d81aaa275d1c2@haskell.org> #11155: Trivial thunk gives "undefined reference to stg_ap_0_upd_info" -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: closed Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 7.10.2 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: | simplCore/should_compile/T11155 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by George): I ran into this today building 8.0.1 rc3 on Mac 10.11.4 with XCode 7.3 invoking with "make -j5": Warning: -rtsopts and -with-rtsopts have no effect with -no-hs-main. Call hs_init_ghc() from your main() function to set these options. Undefined symbols for architecture x86_64: "_stg_sel_17_upd_info", referenced from: _s1xEL_info in UI.dyn_o _s1xG6_info in UI.dyn_o _s1xPC_info in UI.dyn_o _s1xQ9_info in UI.dyn_o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) `gcc' failed in phase `Linker'. (Exit code: 1) make[1]: *** [ghc/stage2/build/tmp/ghc-stage2] Error 1 make: *** [all] Error 2 bash-3.2$ -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 21:54:04 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 21:54:04 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.dc016d1c1ad18ef1df61c9bedfb5fccb@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by holmisen: @@ -24,0 +24,38 @@ + + ---- + + UPDATE FROM DISCUSSION: + + The modified proposal is to add the following two functions: + + {{{ + zipConsecutives :: [a] -> [(a,a)] + zipConsecutives xs = zip xs (tail xs) + + zipConsecutivesWith :: (a -> a -> b) -> [a] -> [b] + zipConsecutivesWith f xs = zipWith f xs (tail xs) + }}} + + with possibly more efficient implementations. The first would mainly be + for consistency with the other zip functions. + + (Maybe we could abbreviate "Consecutives" into "Consecs".) + + Some use cases that immediately comes to mind: + + {{{ + -- diff consecutive elements: + diffs = zipConsecutivesWith (flip (-)) + + -- determine if list is ascending (similar for descending and strict): + isAscending = and . zipConsecutivesWith (<=) + + -- an old friend of ours: + fibs = 1 : 1 : zipConsecutivesWith (+) fibs + + -- get the edges of a closed path defined by points (ps): + edges ps = zipConsecutivesWith makeEdge (ps ++ take 1 ps) + }}} + + The last one is from a real world case where a polygon (represented as + points) was to be translated to a list of corresponding edges. New description: A recurring pattern is to get a list of all consecutive elements of a list, for further processing. I propose adding the following function to `Data.List` for this: {{{ mapConsecutives :: (a -> a -> b) -> [a] -> [b] mapConsecutives _ [] = [] mapConsecutives f xs = zipWith f xs (tail xs) }}} Since it requires pattern matching, to separate the empty case, it is not practical to inline at each use site. Sidenote: A similar function `mapAdjacent` is available in the `utility- ht` library (with a partial implementation(!)) [1]. I realise that `Data.List` is often imported unqualified and hence additions may cause trouble. I would have raised this on the libraries mailing list first, but the guidelines for proposals pointed me here. [1] http://hackage.haskell.org/package/utility-ht-0.0.11/docs/Data-List- HT.html#v:mapAdjacent ---- UPDATE FROM DISCUSSION: The modified proposal is to add the following two functions: {{{ zipConsecutives :: [a] -> [(a,a)] zipConsecutives xs = zip xs (tail xs) zipConsecutivesWith :: (a -> a -> b) -> [a] -> [b] zipConsecutivesWith f xs = zipWith f xs (tail xs) }}} with possibly more efficient implementations. The first would mainly be for consistency with the other zip functions. (Maybe we could abbreviate "Consecutives" into "Consecs".) Some use cases that immediately comes to mind: {{{ -- diff consecutive elements: diffs = zipConsecutivesWith (flip (-)) -- determine if list is ascending (similar for descending and strict): isAscending = and . zipConsecutivesWith (<=) -- an old friend of ours: fibs = 1 : 1 : zipConsecutivesWith (+) fibs -- get the edges of a closed path defined by points (ps): edges ps = zipConsecutivesWith makeEdge (ps ++ take 1 ps) }}} The last one is from a real world case where a polygon (represented as points) was to be translated to a list of corresponding edges. -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 21:57:39 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 21:57:39 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.74f1a8b983db7d6f4f02c57186b4004d@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Good examples! I think this is ready to be be proposed on the libraries list; as described at https://wiki.haskell.org/Library_submissions#Guide_to_proposers. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 11 22:44:55 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 11 Apr 2016 22:44:55 -0000 Subject: [GHC] #11493: Merge compact normal forms In-Reply-To: <046.817f1145363bc4a821bde6cbb76b8fef@haskell.org> References: <046.817f1145363bc4a821bde6cbb76b8fef@haskell.org> Message-ID: <061.b145cdbe63c31b678603c025fe4e4a11@haskell.org> #11493: Merge compact normal forms -------------------------------------+------------------------------------- Reporter: bgamari | Owner: ezyang Type: task | Status: new Priority: normal | Milestone: 8.2.1 Component: | Version: 7.10.3 libraries/compact | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by lelf): * cc: lelf (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 02:38:57 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 02:38:57 -0000 Subject: [GHC] #11822: Pattern match checker exceeded (2000000) iterations In-Reply-To: <049.f2a29571b162949a036aa4b2a361c7f6@haskell.org> References: <049.f2a29571b162949a036aa4b2a361c7f6@haskell.org> Message-ID: <064.9d8a3ac077e15f794de39cc5397ce806@haskell.org> #11822: Pattern match checker exceeded (2000000) iterations -------------------------------------+------------------------------------- Reporter: j.waldmann | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: x86_64 Type of failure: Compile-time | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by carter): That's a pretty large data type! Does seem like an example where checking the coverage should work fine as is.... Especially since this isn't a gadt and doesn't have pattern guards right? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 08:00:27 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 08:00:27 -0000 Subject: [GHC] #11155: Trivial thunk gives "undefined reference to stg_ap_0_upd_info" In-Reply-To: <046.d8196c999608fededc5ef9d4e2e29843@haskell.org> References: <046.d8196c999608fededc5ef9d4e2e29843@haskell.org> Message-ID: <061.b8cd2c720ae72ebb43ac2d531ae56647@haskell.org> #11155: Trivial thunk gives "undefined reference to stg_ap_0_upd_info" -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: | simplCore/should_compile/T11155 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: closed => new * resolution: fixed => @@ -4,1 +4,1 @@ - {{{ + {{{#!hs New description: This error popped up when Alan was coding the solution for #11028. The error is utterly unrelated to what Alan was working on. Here's a reproducer {{{#!hs {-# OPTIONS_GHC -O -fno-full-laziness #-} module Main where foo :: Bool {-# NOINLINE foo #-} foo = error "rk" bar x = let t :: Char t = case foo of { True -> 'v'; False -> 'y' } in [t] main = print (bar ()) }}} Just compile that and you get {{{ Foo.o: In function `c1Sm_info': (.text+0x29a): undefined reference to `stg_ap_0_upd_info' }}} Why do we get that unresolved symbol? The STG code for `bar` looks like {{{ Main.bar :: forall t_aup. t_aup -> [GHC.Types.Char] [GblId, Arity=1, Str=DmdType m2, Unf=OtherCon []] = \r srt:SRT:[rf :-> Main.foo] [x_s1RR] let { sat_s1RT [Occ=Once] :: GHC.Types.Char [LclId, Str=DmdType] = \u srt:SRT:[rf :-> Main.foo] [] Main.foo; } in : [sat_s1RT GHC.Types.[]]; }}} Look at that: an updatable thunk saying `sat_s1RT = Main.foo`! The error message is terrible, but the problem is a thunk whose only payload is a single variable. Why does that happen? The Core is {{{ bar = \ (@ t_aup) _ -> let t::Char = case foo of wild_00 { } in : @ Char t ([] @ Char) }}} The `case` is needed to change `foo`'s type from `Bool` to `Char`. The Core-to-STG pass drops the empty case alternatives as useless (rightly), but leaves a bare variable as the RHS, which confuses the code generator. We should clearly substitute `Main.foo` for `t`, either in Core-to-STG, or during code generation. Why hasn't this happened before now? It is quite hard to provoke, because floating the thunk for `t` to top level stops it happening. So it only happens if you switch off full laziness (as my test case here does), or if some very delicate inlining happens after the last float-out. The latter is very rare, but it's what happened to Alan. -- Comment: The fix mentioned in comment:4 is present on the `ghc-8.0` branch as 1c9fd3f1c5522372fcaf250c805b959e8090a62c. Indeed it seems that something is still amiss here. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 08:00:33 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 08:00:33 -0000 Subject: [GHC] #11155: Trivial thunk gives "undefined reference to stg_ap_0_upd_info" In-Reply-To: <046.d8196c999608fededc5ef9d4e2e29843@haskell.org> References: <046.d8196c999608fededc5ef9d4e2e29843@haskell.org> Message-ID: <061.e84139c7290c3374e8e0e4f3d106aada@haskell.org> #11155: Trivial thunk gives "undefined reference to stg_ap_0_upd_info" -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: | simplCore/should_compile/T11155 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * priority: high => highest -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 08:23:24 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 08:23:24 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X Message-ID: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: MacOS X Architecture: x86_64 | Type of failure: Building GHC (amd64) | failed Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Several people have reported that recent `ghc-8.0` and `master` snapshots fail to build on OS X, {{{ HC [stage 1] ghc/stage2/build/tmp/ghc-stage2 Warning: -rtsopts and -with-rtsopts have no effect with -no-hs-main. Call hs_init_ghc() from your main() function to set these options. Undefined symbols for architecture x86_64: "_stg_sel_17_upd_info", referenced from: _s1s8Z_info in UI.dyn_o _s1s9w_info in UI.dyn_o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) `gcc' failed in phase `Linker'. (Exit code: 1) }}} These were originally introduced in #11555, although this appears to be a much different beast from the original issue that ticket was reporting: the symbols in question here are update closures, not application closures like in #11555. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 08:24:12 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 08:24:12 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X In-Reply-To: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> References: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> Message-ID: <061.5885b72c3c2c37b5d1a26e85799e7bd0@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): It would be likely be helpful if someone affected by the issue could post the simplified Core and STG of `UI.hs` from their stage 2 build. Running the following should do the trick, {{{ $ touch ghc/GHCi/UI.hs $ make GhcStage2HcOpts='-ddump-to-file -ddump-simpl -ddump-stg' }}} You should then find `UI.dump-{simpl,stg}` files in `ghc/GHCi`. Be sure to also take note of which symbols appear in the "referenced from" list in the linker error. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 08:25:18 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 08:25:18 -0000 Subject: [GHC] #11155: Trivial thunk gives "undefined reference to stg_ap_0_upd_info" In-Reply-To: <046.d8196c999608fededc5ef9d4e2e29843@haskell.org> References: <046.d8196c999608fededc5ef9d4e2e29843@haskell.org> Message-ID: <061.c6456ad924e43193fc5896f029143bf1@haskell.org> #11155: Trivial thunk gives "undefined reference to stg_ap_0_upd_info" -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: closed Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 7.10.2 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: | simplCore/should_compile/T11155 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => closed * resolution: => fixed Comment: This actually appears to be a much different issue from that originally reported in this ticket as the symbol in question are update closures instead of zero-arity applications. Let's track this new issue in #11823. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 08:27:33 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 08:27:33 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X In-Reply-To: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> References: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> Message-ID: <061.599ea25db475132adb084b7639625604@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by bgamari: @@ -17,1 +17,1 @@ - These were originally introduced in #11555, although this appears to be a + These were originally introduced in #11155, although this appears to be a @@ -20,1 +20,1 @@ - like in #11555. + like in #11155. New description: Several people have reported that recent `ghc-8.0` and `master` snapshots fail to build on OS X, {{{ HC [stage 1] ghc/stage2/build/tmp/ghc-stage2 Warning: -rtsopts and -with-rtsopts have no effect with -no-hs-main. Call hs_init_ghc() from your main() function to set these options. Undefined symbols for architecture x86_64: "_stg_sel_17_upd_info", referenced from: _s1s8Z_info in UI.dyn_o _s1s9w_info in UI.dyn_o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) `gcc' failed in phase `Linker'. (Exit code: 1) }}} These were originally introduced in #11155, although this appears to be a much different beast from the original issue that ticket was reporting: the symbols in question here are update closures, not application closures like in #11155. -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 08:33:34 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 08:33:34 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X In-Reply-To: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> References: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> Message-ID: <061.3b6dfd9830d91cf7da63f8ed692b3b31@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by bgamari: @@ -19,2 +19,2 @@ - the symbols in question here are update closures, not application closures - like in #11155. + the symbols in question here are updatable selector closures, not + application closures like in #11155. New description: Several people have reported that recent `ghc-8.0` and `master` snapshots fail to build on OS X, {{{ HC [stage 1] ghc/stage2/build/tmp/ghc-stage2 Warning: -rtsopts and -with-rtsopts have no effect with -no-hs-main. Call hs_init_ghc() from your main() function to set these options. Undefined symbols for architecture x86_64: "_stg_sel_17_upd_info", referenced from: _s1s8Z_info in UI.dyn_o _s1s9w_info in UI.dyn_o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) `gcc' failed in phase `Linker'. (Exit code: 1) }}} These were originally introduced in #11155, although this appears to be a much different beast from the original issue that ticket was reporting: the symbols in question here are updatable selector closures, not application closures like in #11155. -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 08:59:14 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 08:59:14 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X In-Reply-To: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> References: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> Message-ID: <061.cb4ab8328df2df38ddd4b82a3bc9fad1@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): So the cause here is that we only generate special selector frames for up to arity 15 (see `rts/StgStdThunks.cmm`). For anything higher we are supposed to use the selector closure that we generate for the type in question. For consider the following, {{{#!hs module Test where data Hello = Hello { f1, f2, f3, f4 , f5, f6, f7, f8 , f9, f10, f11, f12 , f13, f14, f15, f16 , f17 :: String } juno :: Hello -> IO () juno = putStrLn . f16 turtle :: Hello -> IO () turtle = putStrLn . f17 }}} `juno` will produce code resembling, {{{ Hi.turtle1_entry() { ... // heap/stack check throat-clearing I64[Hp - 16] = stg_sel_15_noupd_info; P64[Hp] = R2; R4 = GHC.Types.True_closure+2; R3 = Hp - 16; R2 = GHC.IO.Handle.FD.stdout_closure; call GHC.IO.Handle.Text.hPutStr2_info(R4, R3, R2) args: 8, res: 0, upd: 8; } }}} Whereas `turtle` will use a helper function, {{{ Hi.turtle1_entry() { ... // heap/stack check throat-clearing I64[Hp - 16] = sat_s16u_info; P64[Hp] = _s16a::P64; _c1dl::P64 = Hp - 16; R4 = GHC.Types.True_closure+2; R3 = _c1dl::P64; R2 = GHC.IO.Handle.FD.stdout_closure; call GHC.IO.Handle.Text.hPutStr2_info(R4, R3, R2) args: 8, res: 0, upd: 8; } sat_s16u_entry() { ... // heap/stack check throat-clearing I64[Sp - 8] = c1dp; R1 = P64[R1 + 16]; Sp = Sp - 8; if (R1 & 7 != 0) goto c1dp; else goto c1dq; c1dq: call (I64[R1])(R1) returns to c1dp, args: 8, res: 8, upd: 8; c1dp: R1 = P64[R1 + 135] & (-8); Sp = Sp + 8; call (I64[R1])(R1) args: 8, res: 0, upd: 8; } }}} I haven't yet worked out where we decide which of these forms will be used. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 09:06:52 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 09:06:52 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X In-Reply-To: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> References: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> Message-ID: <061.aed3ce8c052825d3b50807a9484b3071@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): It seems like the check responsible for determining which of these selector schemes will be used is in `StgCmmBind.mkRhsClosure`, with the maximum size being `MAX_SPEC_SELECTEE_SIZE`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 09:46:01 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 09:46:01 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X In-Reply-To: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> References: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> Message-ID: <061.54db7c74433bbf5916d5a6b712d5c4f4@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * cc: simonmar (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 10:11:24 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 10:11:24 -0000 Subject: [GHC] #11777: RTS source code issues In-Reply-To: <046.3e69faecf0e4f69a5fcc7ec246409435@haskell.org> References: <046.3e69faecf0e4f69a5fcc7ec246409435@haskell.org> Message-ID: <061.39c457c1d02bfab7985f1b08ebfeb4eb@haskell.org> #11777: RTS source code issues -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Simon Marlow ): In [changeset:"83eb4fd97a74a71e9b23b13ed656224a960fd43d/ghc" 83eb4fd/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="83eb4fd97a74a71e9b23b13ed656224a960fd43d" Small simplification (#11777) DEAD_WEAK used to have a different layout, see d61c623ed6b2d352474a7497a65015dbf6a72e12 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 10:11:24 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 10:11:24 -0000 Subject: [GHC] #11783: Very large slowdown when using parallel garbage collector In-Reply-To: <048.dfe418c8e00a9964b98ea3634140ac6c@haskell.org> References: <048.dfe418c8e00a9964b98ea3634140ac6c@haskell.org> Message-ID: <063.5f3507321bf800d3435b5962cee15365@haskell.org> #11783: Very large slowdown when using parallel garbage collector -------------------------------------+------------------------------------- Reporter: luispedro | Owner: simonmar Type: bug | Status: new Priority: high | Milestone: 8.0.2 Component: Runtime System | Version: 7.10.3 Resolution: | Keywords: performance, | garbage collector Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Simon Marlow ): In [changeset:"5c4cd0e44657d52f7ca5fee63f8765d17f1fbe85/ghc" 5c4cd0e4/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="5c4cd0e44657d52f7ca5fee63f8765d17f1fbe85" Cache the size of part_list/scavd_list (#11783) After a parallel GC, it is possible to have a long list of blocks in ws->part_list, if we did a lot of work stealing but didn't fill up the blocks we stole. These blocks persist until the next load-balanced GC, which might be a long time, and during every GC we were traversing this list to find its size. The fix is to maintain the size all the time, so we don't have to compute it. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 12:11:50 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 12:11:50 -0000 Subject: [GHC] #11811: GHC sometimes misses a CUSK In-Reply-To: <047.aa048334e27dc5846bc96224ce8abef4@haskell.org> References: <047.aa048334e27dc5846bc96224ce8abef4@haskell.org> Message-ID: <062.337f109e9f7a67a0476b29baba78fe83@haskell.org> #11811: GHC sometimes misses a CUSK -------------------------------------+------------------------------------- Reporter: goldfire | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Richard Eisenberg ): In [changeset:"b1084fd700e6bbe9d0d787046a6aabdb193982c4/ghc" b1084fd7/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="b1084fd700e6bbe9d0d787046a6aabdb193982c4" Fix #11811. Previously, I had forgotten to omit variables already in scope from the TypeInType CUSK check. Simple enough to fix. Test case: typecheck/should_compile/T11811 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 12:11:50 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 12:11:50 -0000 Subject: [GHC] #11813: Template Haskell's Exact names don't shadow correctly In-Reply-To: <047.ec4624f6991f35a477e6b09cde05435e@haskell.org> References: <047.ec4624f6991f35a477e6b09cde05435e@haskell.org> Message-ID: <062.b37718b26e4418120752143d6a165dbd@haskell.org> #11813: Template Haskell's Exact names don't shadow correctly -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Template Haskell | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Richard Eisenberg ): In [changeset:"d81cdc227cd487659995ddea577214314c9b4b97/ghc" d81cdc2/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="d81cdc227cd487659995ddea577214314c9b4b97" Teach lookupLocalRdrEnv about Exacts. (#11813) }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 12:11:50 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 12:11:50 -0000 Subject: [GHC] #11814: Insufficient in-scope-sets In-Reply-To: <047.796364da21ee40afb75e08d9ee70f961@haskell.org> References: <047.796364da21ee40afb75e08d9ee70f961@haskell.org> Message-ID: <062.0798a823a4277bc91301061d97f3fc3b@haskell.org> #11814: Insufficient in-scope-sets -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Richard Eisenberg ): In [changeset:"0b6dcf6d2ccac3b43037650279256022a352de53/ghc" 0b6dcf6/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="0b6dcf6d2ccac3b43037650279256022a352de53" Fix #11814 by throwing more stuff into InScopeSets }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 12:11:50 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 12:11:50 -0000 Subject: [GHC] #11797: Template Haskell does not quantify over extra vars in class methods In-Reply-To: <047.1a849e0397a2c031b9b89359db29506a@haskell.org> References: <047.1a849e0397a2c031b9b89359db29506a@haskell.org> Message-ID: <062.ff5f498013aee0ba44b11c5eafbfc8b0@haskell.org> #11797: Template Haskell does not quantify over extra vars in class methods -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Template Haskell | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Richard Eisenberg ): In [changeset:"dd99f2ece1bd139be02beddc6dc672862ee5ae34/ghc" dd99f2ec/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="dd99f2ece1bd139be02beddc6dc672862ee5ae34" Fix #11797. DsMeta curiously omitted quantified tyvars in certain circumstances. This patch means it doesn't. Test case: th/T11797 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 12:14:10 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 12:14:10 -0000 Subject: [GHC] #11814: Insufficient in-scope-sets In-Reply-To: <047.796364da21ee40afb75e08d9ee70f961@haskell.org> References: <047.796364da21ee40afb75e08d9ee70f961@haskell.org> Message-ID: <062.f3ed21e5148231e9608095927571466c@haskell.org> #11814: Insufficient in-scope-sets -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: merge Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * status: new => merge Comment: This should be merged -- it's needed to compile `singletons` on GHC8. Thanks! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 12:14:36 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 12:14:36 -0000 Subject: [GHC] #11814: Insufficient in-scope-sets In-Reply-To: <047.796364da21ee40afb75e08d9ee70f961@haskell.org> References: <047.796364da21ee40afb75e08d9ee70f961@haskell.org> Message-ID: <062.df81083ffd7c1ff4b3d8096601204b04@haskell.org> #11814: Insufficient in-scope-sets -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * milestone: => 8.0.1 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 12:16:29 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 12:16:29 -0000 Subject: [GHC] #11811: GHC sometimes misses a CUSK In-Reply-To: <047.aa048334e27dc5846bc96224ce8abef4@haskell.org> References: <047.aa048334e27dc5846bc96224ce8abef4@haskell.org> Message-ID: <062.0c4b45e43f9d32d6745ba0f4140df38c@haskell.org> #11811: GHC sometimes misses a CUSK -------------------------------------+------------------------------------- Reporter: goldfire | Owner: goldfire Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * status: new => merge * milestone: => 8.0.1 Comment: I think this is worth merging, as it seems to be needed to compile `singletons`. If there's a merge problem, I can probably work around it. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 12:17:23 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 12:17:23 -0000 Subject: [GHC] #11813: Template Haskell's Exact names don't shadow correctly In-Reply-To: <047.ec4624f6991f35a477e6b09cde05435e@haskell.org> References: <047.ec4624f6991f35a477e6b09cde05435e@haskell.org> Message-ID: <062.f7546d48c28669d5ae570c64c9efc993@haskell.org> #11813: Template Haskell's Exact names don't shadow correctly -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Template Haskell | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * status: new => merge * milestone: => 8.0.1 Comment: This one is a straightforward bug and should be merged. Thanks! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 12:21:44 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 12:21:44 -0000 Subject: [GHC] #11797: Template Haskell does not quantify over extra vars in class methods In-Reply-To: <047.1a849e0397a2c031b9b89359db29506a@haskell.org> References: <047.1a849e0397a2c031b9b89359db29506a@haskell.org> Message-ID: <062.07d31bd91978c5c729ac2e2eedef06d9@haskell.org> #11797: Template Haskell does not quantify over extra vars in class methods -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Template Haskell | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * status: new => merge * milestone: => 8.0.1 Comment: This has perhaps unfortunate user-facing consequences, in that kind vars in type signatures now appear in quotes. Specifically `foo :: Proxy (a :: k) -> ()` now gets quantified over `k` and `a` when being quoted. This could cause trouble for someone trying to quote and then splice, who suddenly needs `-XTypeInType` to succeed. The problem is that I don't know how to reliably (and uninvasively) tell the type vars from the kind vars. This patch is needed for `singletons`, but I can work around if it's too late to merge. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 12:22:18 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 12:22:18 -0000 Subject: [GHC] #11797: Template Haskell does not quantify over extra vars in class methods In-Reply-To: <047.1a849e0397a2c031b9b89359db29506a@haskell.org> References: <047.1a849e0397a2c031b9b89359db29506a@haskell.org> Message-ID: <062.50d774a3ab1e4bcc16aa660098c00872@haskell.org> #11797: Template Haskell does not quantify over extra vars in class methods -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Template Haskell | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: th/T11797 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * testcase: => th/T11797 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 12:22:41 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 12:22:41 -0000 Subject: [GHC] #11811: GHC sometimes misses a CUSK In-Reply-To: <047.aa048334e27dc5846bc96224ce8abef4@haskell.org> References: <047.aa048334e27dc5846bc96224ce8abef4@haskell.org> Message-ID: <062.ae2be76457d0e2f2d6f374d618cebee5@haskell.org> #11811: GHC sometimes misses a CUSK -------------------------------------+------------------------------------- Reporter: goldfire | Owner: goldfire Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: | typecheck/should_compile/T11811 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * testcase: => typecheck/should_compile/T11811 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 12:46:38 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 12:46:38 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.78d59ad6f7ab50d420fb3e2212c9db18@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by gkaracha): Replying to [comment:21 dfeuer]: > What I don't understand is what you mean about unfolding something to WHNF. If the goal is to try to determine the actual WHNF of the scrutinee, that sounds like overkill to me, unless you're doing that in other cases already. Ah, no, I think we mean the same thing. Maybe my wording was not clear. :-) For example, for `Fin`, we need to unfold the `x` to `FZ` and `FS y` to check whether the match is exhaustive or not. {{{#!hs data Fin n where FZ :: Fin (Succ n) FS :: Fin n -> Fin (Succ n) f :: Fin Zero -> a f x = case x of {} }}} For what is worth, I have a small patch that does exactly this, expanding patterns of type `T tys` (only type constructor applications) to all possible patterns (one layer unfolding only) and behaves as expected for `Void`, `Fin` and other GADTs I have tried it on. I'll put it on Phab later today :-) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 13:59:49 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 13:59:49 -0000 Subject: [GHC] #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) In-Reply-To: <047.a500f487fe67f459851db750fa12afab@haskell.org> References: <047.a500f487fe67f459851db750fa12afab@haskell.org> Message-ID: <062.18dfaa55f2fed5159c204af338fdb1be@haskell.org> #11815: Data.List: Add a function to get consecutive elements (mapConsecutives) -------------------------------------+------------------------------------- Reporter: holmisen | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: libraries/base | Version: Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by holmisen): Thanks. I'll contact the libraries list. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 14:08:20 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 14:08:20 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.389ffc29ad84488b2beac1965140d0d0@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by dfeuer): Excellent! I think one layer only is probably a good goal for right this minute. More extensive checking would likely involve more research and design decisions. Thanks a lot for working on this. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 14:19:42 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 14:19:42 -0000 Subject: [GHC] #11783: Very large slowdown when using parallel garbage collector In-Reply-To: <048.dfe418c8e00a9964b98ea3634140ac6c@haskell.org> References: <048.dfe418c8e00a9964b98ea3634140ac6c@haskell.org> Message-ID: <063.958cc7aa6f0b379c5e8921c6fd8fb519@haskell.org> #11783: Very large slowdown when using parallel garbage collector -------------------------------------+------------------------------------- Reporter: luispedro | Owner: simonmar Type: bug | Status: merge Priority: high | Milestone: 8.0.2 Component: Runtime System | Version: 7.10.3 Resolution: | Keywords: performance, | garbage collector Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonmar): * status: new => merge -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 15:23:10 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 15:23:10 -0000 Subject: [GHC] #11213: Incorrect reported pattern synonym signature In-Reply-To: <049.0060591a08c7b469b18d12224f42f93b@haskell.org> References: <049.0060591a08c7b469b18d12224f42f93b@haskell.org> Message-ID: <064.d72bb53b8c02b00ca731543e437125df@haskell.org> #11213: Incorrect reported pattern synonym signature -------------------------------------+------------------------------------- Reporter: mpickering | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 7.10.3 checker) | Keywords: Resolution: fixed | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1896 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => closed * resolution: => fixed * milestone: => 8.0.1 @@ -1,1 +1,1 @@ - {{{ + {{{#!hs New description: {{{#!hs data T where MkT :: (Show b) => b -> T --pattern ExNumPat :: () => Show b => b -> T pattern ExNumPat x = MkT x }}} GHC reports that `ExNumPat` is missing a signature (correctly) but it reports the wrong type. The correct type is the one commented out. {{{ pstest.hs:12:1: warning: Top-level binding with no type signature: ExNumPat :: forall b. Show b => b -> T }}} -- Comment: This was merged to `ghc-8.0` as f75e098a0e3f7c81cad92e6b52f6c00a6491152d. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 16:29:46 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 16:29:46 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X In-Reply-To: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> References: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> Message-ID: <061.c5369419a0fbdac9c433a48474d3cd01@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by gridaphobe): Here's a dump of the Core, STG, and C-- if you still need it. https://dl.dropboxusercontent.com/u/6177472/UI.dump.tar.gz -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 17:49:21 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 17:49:21 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X In-Reply-To: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> References: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> Message-ID: <061.f0348ec4ed3321ccaba2c81f5af0e08b@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by George): The error I am getting on rc3 is slightly different than the one in the description. Mine is: {{{ Undefined symbols for architecture x86_64: "_stg_sel_17_upd_info", referenced from: _s1xEL_info in UI.dyn_o _s1xG6_info in UI.dyn_o _s1xPC_info in UI.dyn_o _s1xQ9_info in UI.dyn_o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) `gcc' failed in phase `Linker'. (Exit code: 1) make[1]: *** [ghc/stage2/build/tmp/ghc-stage2] Error 1 make: *** [all] Error 2 }}} After doing {{{ $ touch ghc/GHCi/UI.hs $ make GhcStage2HcOpts='-ddump-to-file -ddump-simpl -ddump-stg -ddump-cmm' }}} I get: {{{ Undefined symbols for architecture x86_64: "_stg_sel_17_upd_info", referenced from: _s1rNh_info in UI.dyn_o _s1rNO_info in UI.dyn_o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) `gcc' failed in phase `Linker'. (Exit code: 1) make[1]: *** [ghc/stage2/build/tmp/ghc-stage2] Error 1 make: *** [all] Error 2 }}} Do you still want the UI.dump-{simpl,stg,cmm} files I get at this point? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 20:24:02 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 20:24:02 -0000 Subject: [GHC] #11824: GHC error in desugarer lookup Message-ID: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> #11824: GHC error in desugarer lookup -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: Compile-time Unknown/Multiple | crash Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- In GHC8-rc3, I'm getting: {{{ GHC error in desugarer lookup in CLaSH.Core.TyCon: Can't find interface-file declaration for variable $tcType Probable cause: bug in .hi-boot file, or inconsistent .hi file Use -ddump-if-trace to get an idea of which file caused the error ghc: panic! (the 'impossible' happened) (GHC version 8.0.0.20160411 for x86_64-unknown-linux): initDs IOEnv failure Please report this as a GHC bug: http://www.haskell.org/ghc/reportabug }}} To reproduce (requires stack): * git clone -b ghc8 https://github.com/clash-lang/clash-compiler.git * cd clash-compiler * git submodule update --init * stack --stack-yaml=stack-ghc8.yaml build The -ddump-if-trace of CLaSH.Core.TyCon can be found here: https://gist.github.com/christiaanb/1cd84e9941f6614321719e298cc12af0 I'm terribly sorry that the current instructions for reproducing the bug are to build my project and all its dependencies. I'm having a lot of trouble reducing the bug to a sensible/small test case, so any hints as to what might be the cause of this bug would be helpful. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 12 23:17:40 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 12 Apr 2016 23:17:40 -0000 Subject: [GHC] #11824: GHC error in desugarer lookup In-Reply-To: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> References: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> Message-ID: <061.598f1fa9c71ef636d6da86c018c4ea34@haskell.org> #11824: GHC error in desugarer lookup -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by darchon): I've managed to reduce the test case a bit, relying only on the unbound- generics package (and its transitive dependencies): * git clone https://github.com/christiaanb/IfaceError.git * cd IfaceError * stack build I will try to reduce it further to get rid of the unbound-generics dependency. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 01:20:54 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 01:20:54 -0000 Subject: =?utf-8?q?=5BGHC=5D_=2311825=3A_Pretty_printer_doesn=27t_display?= =?utf-8?b?IGZ1bmN0aW9uYWwgZGVwZW5kZW5jeSB3aXRoIOKAmOKGkuKAmQ==?= Message-ID: <051.0bf8a13abb59676639134e7a6349fbd1@haskell.org> #11825: Pretty printer doesn't display functional dependency with ??? -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: GHCi | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- {{{ % ghci -ignore-dot-ghci GHCi, version 8.1.20160117: http://www.haskell.org/ghc/ :? for help Prelude> :set -XUnicodeSyntax Prelude> import Control.Monad.Free Prelude Control.Monad.Free> :set -XUnicodeSyntax Prelude Control.Monad.Free> :i MonadFree class Monad m => MonadFree (f :: * -> *) (m :: * -> *) | m -> f where wrap :: f (m a) -> m a default wrap :: (m ~ t n, Control.Monad.Trans.Class.MonadTrans t, MonadFree f n, Functor f) => f (m a) -> m a -- Defined in ?Control.Monad.Free.Class? instance [safe] Functor f => MonadFree f (Free f) -- Defined in ?Control.Monad.Free? Prelude Control.Monad.Free> }}} should be {{{ class Monad m => MonadFree (f :: * -> *) (m :: * -> *) | m ? f where }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 01:58:13 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 01:58:13 -0000 Subject: [GHC] #11826: unsafe causes bug, news @ 11 Message-ID: <051.d2b6ea87ae6854f82ecff29408224987@haskell.org> #11826: unsafe causes bug, news @ 11 -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- I know there has been plenty of levity here lately but here goes :) I didn't expect ?isUndefined? to be safe but this may be interesting to the devs (I am obedient and report it thusly and hereby-ly per GHC's request) {{{#!haskell % ghci -ignore-dot-ghci GHCi, version 8.1.20160117: http://www.haskell.org/ghc/ :? for help Prelude> import Control.Exception Prelude Control.Exception> import System.IO.Unsafe Prelude Control.Exception System.IO.Unsafe> import Unsafe.Coerce Prelude Control.Exception System.IO.Unsafe Unsafe.Coerce> isUndefined x = unsafePerformIO $ catch ((unsafeCoerce x :: IO ()) >> return False) (const $ return True :: SomeException -> IO Bool) Prelude Control.Exception System.IO.Unsafe Unsafe.Coerce> isUndefined (succ True) True Prelude Control.Exception System.IO.Unsafe Unsafe.Coerce> isUndefined (succ False) : internal error: stg_ap_v_ret (GHC version 8.1.20160117 for x86_64_unknown_linux) Please report this as a GHC bug: http://www.haskell.org/ghc/reportabug Aborted (core dumped) % }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 07:51:31 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 07:51:31 -0000 Subject: [GHC] #11824: GHC error in desugarer lookup In-Reply-To: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> References: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> Message-ID: <061.a83d5970472ebbd60f43b4d163a4ef25@haskell.org> #11824: GHC error in desugarer lookup -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by darchon): I've reduced the test case even further and it has no more dependencies outside of base. The new steps to reproduce are: * git clone ?https://github.com/christiaanb/IfaceError.git * cd IfaceError * ghci CLaSH/Core/Type.hs The output of the ddump-if-trace is now much shorter: {{{ ghci CLaSH/Core/Type.hs GHCi, version 8.0.0.20160411: http://www.haskell.org/ghc/ :? for help [1 of 4] Compiling Unbound.Generics.LocallyNameless ( Unbound/Generics/LocallyNameless.hs, interpreted ) [2 of 4] Compiling CLaSH.Core.Type[boot] ( CLaSH/Core/Type.hs-boot, interpreted ) [3 of 4] Compiling CLaSH.Core.TyCon ( CLaSH/Core/TyCon.hs, interpreted ) loadHiBootInterface CLaSH.Core.TyCon Considering whether to load Prelude Considering whether to load GHC.Generics Considering whether to load Unbound.Generics.LocallyNameless Considering whether to load CLaSH.Core.Type {- SOURCE -} updating EPS_ Considering whether to load GHC.Base {- SYSTEM -} Considering whether to load GHC.Float {- SYSTEM -} newGlobalBinder CLaSH.Core.TyCon AlgTyConRhs CLaSH/Core/TyCon.hs:(13,1)-(15,26) AlgTyConRhs newGlobalBinder CLaSH.Core.TyCon NewTyCon CLaSH/Core/TyCon.hs:14:5-19 NewTyCon Considering whether to load GHC.Generics {- SYSTEM -} Considering whether to load Unbound.Generics.LocallyNameless {- SYSTEM -} Considering whether to load CLaSH.Core.Type {- SYSTEM -} newGlobalBinder CLaSH.Core.TyCon $tc'NewTyCon $tc'NewTyCon newGlobalBinder CLaSH.Core.TyCon $WNewTyCon CLaSH/Core/TyCon.hs:14:5-19 $WNewTyCon newGlobalBinder CLaSH.Core.TyCon NewTyCon CLaSH/Core/TyCon.hs:14:5-19 NewTyCon buildDataCon 1 NewTyCon buildDataCon 2 NewTyCon newGlobalBinder CLaSH.Core.TyCon $tcAlgTyConRhs $tcAlgTyConRhs newGlobalBinder CLaSH.Core.TyCon $fGenericAlgTyConRhs CLaSH/Core/TyCon.hs:15:13-19 $fGenericAlgTyConRhs newGlobalBinder CLaSH.Core.TyCon $fAlphaAlgTyConRhs CLaSH/Core/TyCon.hs:15:21-25 $fAlphaAlgTyConRhs newGlobalBinder CLaSH.Core.TyCon Rep_AlgTyConRhs CLaSH/Core/TyCon.hs:(13,1)-(15,26) Rep_AlgTyConRhs newGlobalBinder CLaSH.Core.TyCon $trModule CLaSH/Core/TyCon.hs:1:1 $trModule Considering whether to load GHC.Types {- SYSTEM -} checkWiredInTyCon Double CLaSH.Core.TyCon Considering whether to load GHC.Types {- SYSTEM -} Need decl for $tcType Considering whether to load CLaSH.Core.Type {- SYSTEM -} GHC error in desugarer lookup in CLaSH.Core.TyCon: Can't find interface-file declaration for variable $tcType Probable cause: bug in .hi-boot file, or inconsistent .hi file Use -ddump-if-trace to get an idea of which file caused the error ghc: panic! (the 'impossible' happened) (GHC version 8.0.0.20160411 for x86_64-unknown-linux): initDs IOEnv failure Please report this as a GHC bug: http://www.haskell.org/ghc/reportabug }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 08:11:29 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 08:11:29 -0000 Subject: [GHC] #11824: GHC error in desugarer lookup In-Reply-To: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> References: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> Message-ID: <061.86c814e2fa6f2b461d1a2bdf15e8f194@haskell.org> #11824: GHC error in desugarer lookup -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by darchon): I've managed to reduce it even furter. I now have: Unbound/Generics/LocallyNameless.hs: {{{#!hs module Unbound.Generics.LocallyNameless where import Data.Typeable (Typeable) data Name a = Name class Alpha a where isTerm :: a -> Bool instance Typeable a => Alpha (Name a) where isTerm _ = False }}} CLaSH/Core/Type.hs: {{{#!hs module CLaSH.Core.Type where import Unbound.Generics.LocallyNameless (Alpha (..),Name) import CLaSH.Core.TyCon data Type = VarTy type TyName = Name Type instance Alpha Type where isTerm VarTy = False }}} CLaSH/Core/Type.hs-boot {{{#!hs module CLaSH.Core.Type where import Unbound.Generics.LocallyNameless (Name) data Type type TyName = Name Type }}} CLaSH/Core/TyCon.hs {{{#!hs {-# OPTIONS_GHC -ddump-if-trace #-} module CLaSH.Core.TyCon where import Unbound.Generics.LocallyNameless (Alpha (..)) import {-# SOURCE #-} CLaSH.Core.Type (TyName) data AlgTyConRhs = NewTyCon TyName instance Alpha AlgTyConRhs where isTerm (NewTyCon nm) = isTerm nm }}} And the output of -ddump-if-trace is: {{{ ghci CLaSH/Core/Type.hs GHCi, version 8.0.0.20160411: http://www.haskell.org/ghc/ :? for help [1 of 4] Compiling Unbound.Generics.LocallyNameless ( Unbound/Generics/LocallyNameless.hs, interpreted ) [2 of 4] Compiling CLaSH.Core.Type[boot] ( CLaSH/Core/Type.hs-boot, interpreted ) [3 of 4] Compiling CLaSH.Core.TyCon ( CLaSH/Core/TyCon.hs, interpreted ) loadHiBootInterface CLaSH.Core.TyCon Considering whether to load Prelude Considering whether to load Unbound.Generics.LocallyNameless Considering whether to load CLaSH.Core.Type {- SOURCE -} updating EPS_ Considering whether to load GHC.Base {- SYSTEM -} Considering whether to load GHC.Float {- SYSTEM -} newGlobalBinder CLaSH.Core.TyCon AlgTyConRhs CLaSH/Core/TyCon.hs:(7,1)-(8,19) AlgTyConRhs newGlobalBinder CLaSH.Core.TyCon NewTyCon CLaSH/Core/TyCon.hs:8:5-19 NewTyCon Considering whether to load Unbound.Generics.LocallyNameless {- SYSTEM -} Considering whether to load CLaSH.Core.Type {- SYSTEM -} Considering whether to load Unbound.Generics.LocallyNameless {- SYSTEM -} Considering whether to load Unbound.Generics.LocallyNameless {- SYSTEM -} newGlobalBinder CLaSH.Core.TyCon $tc'NewTyCon $tc'NewTyCon newGlobalBinder CLaSH.Core.TyCon $WNewTyCon CLaSH/Core/TyCon.hs:8:5-19 $WNewTyCon newGlobalBinder CLaSH.Core.TyCon NewTyCon CLaSH/Core/TyCon.hs:8:5-19 NewTyCon buildDataCon 1 NewTyCon buildDataCon 2 NewTyCon newGlobalBinder CLaSH.Core.TyCon $tcAlgTyConRhs $tcAlgTyConRhs newGlobalBinder CLaSH.Core.TyCon $fAlphaAlgTyConRhs CLaSH/Core/TyCon.hs:10:10-26 $fAlphaAlgTyConRhs newGlobalBinder CLaSH.Core.TyCon $trModule CLaSH/Core/TyCon.hs:1:1 $trModule Need decl for $tcType Considering whether to load CLaSH.Core.Type {- SYSTEM -} GHC error in desugarer lookup in CLaSH.Core.TyCon: Can't find interface-file declaration for variable $tcType Probable cause: bug in .hi-boot file, or inconsistent .hi file Use -ddump-if-trace to get an idea of which file caused the error ghc: panic! (the 'impossible' happened) (GHC version 8.0.0.20160411 for x86_64-unknown-linux): initDs IOEnv failure Please report this as a GHC bug: http://www.haskell.org/ghc/reportabug }}} It seems to be a combination of the Typeable constraint, and the .hs-boot file. Because when I remove the Typeable constraint from: {{{#!hs instance Typeable a => Alpha (Name a) where isTerm _ = False }}} in Unbound/Generics/LocallyNameless.hs everything compiles successfully. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 08:23:09 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 08:23:09 -0000 Subject: [GHC] #11824: GHC error in desugarer lookup In-Reply-To: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> References: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> Message-ID: <061.6be8899a228203da27696f0d1bf716d5@haskell.org> #11824: GHC error in desugarer lookup -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by darchon): I wanted to report a separate (but perhaps related) error. When I change Unbound/Generics/LocallyNameless.hs to {{{#!hs module Unbound.Generics.LocallyNameless where import Data.Typeable (Typeable) data Name a = Name class Alpha a where isTerm :: a -> Bool instance Alpha (Name a) where isTerm _ = False }}} and CLaSH/Core/Type.hs to {{{#!hs module CLaSH.Core.Type where import Unbound.Generics.LocallyNameless (Alpha (..),Name) import CLaSH.Core.TyCon data Type = VarTy type TyName = Name Type instance Alpha Type where isTerm Foo = False }}} I get: {{{ ~/devel/IfaceError(master *) $ ghci CLaSH/Core/Type.hs GHCi, version 8.1.20160412: http://www.haskell.org/ghc/ :? for help [1 of 4] Compiling Unbound.Generics.LocallyNameless ( Unbound/Generics/LocallyNameless.hs, interpreted ) [2 of 4] Compiling CLaSH.Core.Type[boot] ( CLaSH/Core/Type.hs-boot, interpreted ) [3 of 4] Compiling CLaSH.Core.TyCon ( CLaSH/Core/TyCon.hs, interpreted ) [4 of 4] Compiling CLaSH.Core.Type ( CLaSH/Core/Type.hs, interpreted ) CLaSH/Core/Type.hs:11:10: error: Not in scope: data constructor ?Foo? *** Exception: expectJust showModule CallStack (from HasCallStack): error, called at compiler/utils/Maybes.hs:47:27 in ghc:Maybes }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 08:42:41 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 08:42:41 -0000 Subject: [GHC] #11826: unsafe causes bug, news @ 11 In-Reply-To: <051.d2b6ea87ae6854f82ecff29408224987@haskell.org> References: <051.d2b6ea87ae6854f82ecff29408224987@haskell.org> Message-ID: <066.ff034f35035eadb8f743c479effa2c99@haskell.org> #11826: unsafe causes bug, news @ 11 -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Well, `unsafeCoerce` can certainly cause seg-faults. Is there more to it than that? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 08:47:46 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 08:47:46 -0000 Subject: [GHC] #11824: GHC error in desugarer lookup In-Reply-To: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> References: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> Message-ID: <061.5b0406364c6915ad651d57045ad5cbe3@haskell.org> #11824: GHC error in desugarer lookup -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): Hmm, I suspect the issue here is that we are not emitting the `Typeable` `TyCon` bindings into `hi-boot` files. This means things blow up when when the typechecker goes to construct `Typeable` evidence when only a `SOURCE` import of the module defining the type in question is in scope. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 10:32:24 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 10:32:24 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X In-Reply-To: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> References: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> Message-ID: <061.3cb525f90560eed3931edee269a662cb@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): Great, thanks everyone who contributed dumps. This is quite bizarre: the pattern match in question appears to be selecting the 20th field of a `GHCiState` constructor (citing the STG), {{{#!hs let { sat_s1rNg :: [GHC.Types.Char] = \u srt:SRT:[] [] case ipv146_s1rMI of _ { GHCi.UI.Monad.GHCiState _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ds36_s1rNa _ _ _ _ _ -> ds36_s1rNa; }; } in GHC.CString.unpackAppendCString# "'\n"# sat_s1rNg; }}} Somehow this emits this C--, {{{ c1Mzv: _s1rMI::P64 = P64[_s1rNh::P64 + 16]; I64[Hp - 16] = stg_sel_17_upd_info; P64[Hp] = _s1rMI::P64; _c1Mzq::P64 = Hp - 16; R3 = _c1Mzq::P64; R2 = c1Mzr_str; call GHC.CString.unpackAppendCString#_info(R3, R2) args: 8, res: 0, upd: 8; }}} Which is truly strange in light of the check in `mkRhsClosure`, {{{#!hs mkRhsClosure dflags bndr _cc _bi [NonVoid the_fv] upd_flag [] expr | let strip = snd . stripStgTicksTop (not . tickishIsCode) , StgCase (StgApp scrutinee [{-no args-}]) _ -- ignore bndr (AlgAlt _) [(DataAlt _, params, sel_expr)] <- strip expr , StgApp selectee [{-no args-}] <- strip sel_expr , the_fv == scrutinee -- Scrutinee is the only free variable , let (_, _, params_w_offsets) = mkVirtConstrOffsets dflags (addIdReps params) -- Just want the layout , Just the_offset <- assocMaybe params_w_offsets (NonVoid selectee) , let offset_into_int = bytesToWordsRoundUp dflags the_offset - fixedHdrSizeW dflags , offset_into_int <= mAX_SPEC_SELECTEE_SIZE dflags -- Offset is small enough = let lf_info = mkSelectorLFInfo bndr offset_into_int (isUpdatable upd_flag) in cgRhsStdThunk bndr lf_info [StgVarArg the_fv] }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 10:49:29 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 10:49:29 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X In-Reply-To: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> References: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> Message-ID: <061.54eafe540e8681ae1bf28148ac9321dd@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): gridaphobe, could you describe your environment a bit? Are you possibly using a similar toolchain to George? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 11:06:06 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 11:06:06 -0000 Subject: [GHC] #11824: GHC error in desugarer lookup In-Reply-To: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> References: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> Message-ID: <061.6a21d313942a94900735c0c8a7674929@haskell.org> #11824: GHC error in desugarer lookup -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: patch Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2107, Wiki Page: | Phab:D2108 -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => patch * differential: => Phab:D2107, Phab:D2108 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 11:34:52 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 11:34:52 -0000 Subject: [GHC] #11824: GHC error in desugarer lookup In-Reply-To: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> References: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> Message-ID: <061.fca1cdcdb55ea126b3d61f05597705a7@haskell.org> #11824: GHC error in desugarer lookup -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: patch Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2107, Wiki Page: | Phab:D2108 -------------------------------------+------------------------------------- Comment (by darchon): Thanks for the patch! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 11:43:49 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 11:43:49 -0000 Subject: [GHC] #11827: InteractiveEval error handling gets a boot ModSummary instead of normal ModSummary Message-ID: <046.24c2998367c5a8124c7521e8ac11ef2c@haskell.org> #11827: InteractiveEval error handling gets a boot ModSummary instead of normal ModSummary -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: Incorrect Unknown/Multiple | warning at compile-time Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Given: A.hs {{{#!hs module A where data A = A f :: A -> Bool f C = False }}} A.hs-boot {{{#!hs module A where data A f :: A -> Bool }}} B.hs {{{#!hs module B where import {-# SOURCE #-} A data B = B A g :: B -> Bool g (B a) = f a }}} ghci reports: {{{ $ ghci B.hs GHCi, version 8.0.0.20160411: http://www.haskell.org/ghc/ :? for help [1 of 3] Compiling A[boot] ( A.hs-boot, interpreted ) [2 of 3] Compiling A ( A.hs, interpreted ) A.hs:6:3: error: Not in scope: data constructor ?C? *** Exception: expectJust showModule CallStack (from HasCallStack): error, called at compiler/utils/Maybes.hs:48:27 in ghc:Maybes > }}} So instead of a normal error telling me that the C constructor does not exist, I get an additional exception from expectJust because something went wrong in GHCs internal error reporting routine. Looking at https://github.com/ghc/ghc/blob/master/compiler/main/InteractiveEval.hs#L956, the expectJust exception is due to the fact that while reporting an error about A.hs, GHCi somehow got a hold of the ModSummary of A.hs-boot instead of A.hs -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 11:44:50 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 11:44:50 -0000 Subject: [GHC] #11827: InteractiveEval error handling gets a boot ModSummary instead of normal ModSummary In-Reply-To: <046.24c2998367c5a8124c7521e8ac11ef2c@haskell.org> References: <046.24c2998367c5a8124c7521e8ac11ef2c@haskell.org> Message-ID: <061.396a4d7c8502f542b42d078f8247a694@haskell.org> #11827: InteractiveEval error handling gets a boot ModSummary instead of normal ModSummary -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * cc: ezyang (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 11:47:12 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 11:47:12 -0000 Subject: [GHC] #11827: InteractiveEval error handling gets a boot ModSummary instead of normal ModSummary In-Reply-To: <046.24c2998367c5a8124c7521e8ac11ef2c@haskell.org> References: <046.24c2998367c5a8124c7521e8ac11ef2c@haskell.org> Message-ID: <061.8cb0e5221c00c1f24fbfa2e29d20850e@haskell.org> #11827: InteractiveEval error handling gets a boot ModSummary instead of normal ModSummary -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Edward, might you look at this? (Or declare it out of your scope.) Thanks! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 11:49:04 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 11:49:04 -0000 Subject: [GHC] #11827: InteractiveEval error handling gets a boot ModSummary instead of normal ModSummary In-Reply-To: <046.24c2998367c5a8124c7521e8ac11ef2c@haskell.org> References: <046.24c2998367c5a8124c7521e8ac11ef2c@haskell.org> Message-ID: <061.21aba07c37ac008c1f231a23a7800b63@haskell.org> #11827: InteractiveEval error handling gets a boot ModSummary instead of normal ModSummary -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by darchon): * cc: ezyang (removed) Comment: Maybe I'm inferring too much, looking at the output of ghc 7.10.3: {{{ $ ghci B.hs GHCi, version 7.10.3: http://www.haskell.org/ghc/ :? for help B.hs:3:23: Warning: {-# SOURCE #-} unnecessary in import of ?A? [1 of 3] Compiling A[boot] ( A.hs-boot, interpreted ) [2 of 3] Compiling A ( A.hs, interpreted ) A.hs:6:3: Not in scope: data constructor ?C? Failed, modules loaded: A, A. }}} I see that two 'A' modules are loaded, the first one probably being the A .hs-boot file. So perhaps 'isModuleInterpreted' is not getting "wrong" ModSummary, but it is some other type of regression with regards to reporting errors when hs-boot files are involved. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 11:49:38 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 11:49:38 -0000 Subject: [GHC] #11827: InteractiveEval error handling gets a boot ModSummary instead of normal ModSummary In-Reply-To: <046.24c2998367c5a8124c7521e8ac11ef2c@haskell.org> References: <046.24c2998367c5a8124c7521e8ac11ef2c@haskell.org> Message-ID: <061.05570b221538214847d526eb1889a9e8@haskell.org> #11827: InteractiveEval error handling gets a boot ModSummary instead of normal ModSummary -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by darchon): * cc: ezyang (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 11:58:40 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 11:58:40 -0000 Subject: [GHC] #11828: Linker.c doesn't build on OS X due to signedness mismatch Message-ID: <046.1b7a067e9bfa8ecb8f2e615c66ebe297@haskell.org> #11828: Linker.c doesn't build on OS X due to signedness mismatch -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- {{{ rts/Linker.c:6978:59: error: error: assigning to 'unsigned char *' from 'char *' converts between pointers to integer types with different sign [-Werror,-Wpointer-sign] oc->symbols[curSymbol].addr = addr; ^ ~~~~ }}} Apparently introduced by -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 11:59:35 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 11:59:35 -0000 Subject: [GHC] #11828: Linker.c doesn't build on OS X due to signedness mismatch In-Reply-To: <046.1b7a067e9bfa8ecb8f2e615c66ebe297@haskell.org> References: <046.1b7a067e9bfa8ecb8f2e615c66ebe297@haskell.org> Message-ID: <061.b20a20763555f89468510b85db978c43@haskell.org> #11828: Linker.c doesn't build on OS X due to signedness mismatch -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.1 Component: Runtime System | Version: 8.0.1-rc3 (Linker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Building GHC | Unknown/Multiple failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * component: Compiler => Runtime System (Linker) * priority: normal => high * failure: None/Unknown => Building GHC failed * version: 7.10.3 => 8.0.1-rc3 * milestone: => 8.0.1 @@ -9,1 +9,1 @@ - Apparently introduced by + Apparently introduced by 90538d86af579595987826cd893828d6f379f35a. New description: {{{ rts/Linker.c:6978:59: error: error: assigning to 'unsigned char *' from 'char *' converts between pointers to integer types with different sign [-Werror,-Wpointer-sign] oc->symbols[curSymbol].addr = addr; ^ ~~~~ }}} Apparently introduced by 90538d86af579595987826cd893828d6f379f35a. -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 12:25:33 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 12:25:33 -0000 Subject: [GHC] #11828: Linker.c doesn't build on OS X due to signedness mismatch In-Reply-To: <046.1b7a067e9bfa8ecb8f2e615c66ebe297@haskell.org> References: <046.1b7a067e9bfa8ecb8f2e615c66ebe297@haskell.org> Message-ID: <061.7ccbcf5e15fd969cb3dcf5563f7e592e@haskell.org> #11828: Linker.c doesn't build on OS X due to signedness mismatch -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: patch Priority: high | Milestone: 8.0.1 Component: Runtime System | Version: 8.0.1-rc3 (Linker) | Resolution: | Keywords: Operating System: MacOS X | Architecture: Type of failure: Building GHC | Unknown/Multiple failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2110 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => patch * differential: => Phab:D2110 * os: Unknown/Multiple => MacOS X -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 12:26:06 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 12:26:06 -0000 Subject: [GHC] #11223: Runtime linker performs eager loading of all object files In-Reply-To: <044.1eba10cc2ab875f8ad0571288cc4efc5@haskell.org> References: <044.1eba10cc2ab875f8ad0571288cc4efc5@haskell.org> Message-ID: <059.61d7165c311ff18716dc6d46221d9e64@haskell.org> #11223: Runtime linker performs eager loading of all object files -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Phyx- Type: task | Status: closed Priority: normal | Milestone: 8.0.1 Component: Runtime System | Version: 7.10.3 (Linker) | Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: #10726 #11317 | Differential Rev(s): Phab:D1805 #11748 | Phab:D2102 Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): This introduced a minor regression; see #11828. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 14:14:31 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 14:14:31 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X In-Reply-To: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> References: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> Message-ID: <061.22847b4485c887441c033a30fbda7f29@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by George): I think this may be a toolchain issue, IIRC, i had no build problems with RC2 when I was not using any of the current toolchain. I just tried rc2 with my current toolchain and get essentially the same error: {{{ "_stg_sel_17_upd_info", referenced from: _s1x56_info in UI.dyn_o _s1x6r_info in UI.dyn_o _s1xd1_info in UI.dyn_o _s1xem_info in UI.dyn_o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) `gcc' failed in phase `Linker'. (Exit code: 1) make[1]: *** [ghc/stage2/build/tmp/ghc-stage2] Error 1 make: *** [all] Error 2 }}} Replying to [comment:8 George]: > I am on MacOS 10.11.4, Xcode 7.3, and llvm 3.7.1. I didn't see this on RC2 but I don't think I was using Xcode 7.3 then. > > The error I am getting on rc3 is slightly different than the one in the description. Mine is: > {{{ > Undefined symbols for architecture x86_64: > "_stg_sel_17_upd_info", referenced from: > _s1xEL_info in UI.dyn_o > _s1xG6_info in UI.dyn_o > _s1xPC_info in UI.dyn_o > _s1xQ9_info in UI.dyn_o > ld: symbol(s) not found for architecture x86_64 > clang: error: linker command failed with exit code 1 (use -v to see invocation) > `gcc' failed in phase `Linker'. (Exit code: 1) > make[1]: *** [ghc/stage2/build/tmp/ghc-stage2] Error 1 > make: *** [all] Error 2 > }}} > After doing > {{{ > $ touch ghc/GHCi/UI.hs > $ make GhcStage2HcOpts='-ddump-to-file -ddump-simpl -ddump-stg -ddump- cmm' > }}} > I get: > {{{ > Undefined symbols for architecture x86_64: > "_stg_sel_17_upd_info", referenced from: > _s1rNh_info in UI.dyn_o > _s1rNO_info in UI.dyn_o > ld: symbol(s) not found for architecture x86_64 > clang: error: linker command failed with exit code 1 (use -v to see invocation) > `gcc' failed in phase `Linker'. (Exit code: 1) > make[1]: *** [ghc/stage2/build/tmp/ghc-stage2] Error 1 > make: *** [all] Error 2 > }}} > Dumpfiles at [https://drive.google.com/file/d/0B_TQiA8d1y6fXzR0aThvRzBkZHc/view?usp=sharing] -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 15:12:30 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 15:12:30 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X In-Reply-To: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> References: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> Message-ID: <061.3decb464b735f8313130a83a1f7bc57c@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by gridaphobe): It looks like I have a very similar environment to George: - OSX 10.11.4 - XCode 7.3 - Apple LLVM version 7.3.0 (clang-703.0.29) - Bootstrapped with GHC 7.10.3 (via nixpkgs) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 15:49:45 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 15:49:45 -0000 Subject: [GHC] #11744: Latest Xcode update violates POSIX compliance of `nm -P` In-Reply-To: <042.af01bf0c9281d3187ce47b8cda7a587e@haskell.org> References: <042.af01bf0c9281d3187ce47b8cda7a587e@haskell.org> Message-ID: <057.cf1b2f723ca4f57467124475f5b19183@haskell.org> #11744: Latest Xcode update violates POSIX compliance of `nm -P` ---------------------------------+---------------------------------------- Reporter: hvr | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Build System | Version: Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Comment (by bgamari): Someone should really bring this up with the Apple folks. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 16:27:26 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 16:27:26 -0000 Subject: [GHC] #10318: Cycles in class declaration (via superclasses) sometimes make sense. In-Reply-To: <045.d1ea23f42aeb71ba3ba0dcf3c978cb36@haskell.org> References: <045.d1ea23f42aeb71ba3ba0dcf3c978cb36@haskell.org> Message-ID: <060.967b499387bab3a24899da3c2e65ad3b@haskell.org> #10318: Cycles in class declaration (via superclasses) sometimes make sense. -------------------------------------+------------------------------------- Reporter: ekmett | Owner: Type: feature request | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler (Type | Version: 7.10.1 checker) | Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: indexed- valid program | types/should_compile/T10318 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by bgamari: @@ -4,2 +4,1 @@ - {{{ - + {{{#!hs @@ -32,1 +31,1 @@ - {{{ + {{{#!hs @@ -58,1 +57,1 @@ - {{{ + {{{#!hs New description: I'd like to be able to say the following, to describe the notion of an integral domain in Haskell: {{{#!hs -- | Product of non-zero elements always non-zero. -- Every integral domain has a field of fractions. -- The field of fractions of any field is itself. class (Frac (Frac a) ~ Frac a, Fractional (Frac a), IntegralDomain (Frac a)) => IntegralDomain a where type Frac a :: * embed :: a -> Frac a instance IntegralDomain Integer where type Frac Integer = Rational embed = fromInteger instance IntegralDomain Rational where type Frac Rational = Rational embed = id }}} But GHC gets scared when it sees the cyclic reference that `IntegralDomain` instances depend on an IntegralDomain superclass, which really is cyclic in the (Frac a) case here, and that is kind of the point. =) Right now the best approximation of the correct answer that I have for this situation is to lie and claim the constraint is weaker: {{{#!hs -- | Product of non-zero elements always non-zero class (Frac (Frac a) ~ Frac a, Fractional (Frac a)) => AlmostIntegralDomain a where type Frac a :: * embed :: a -> Frac a class (AlmostIntegralDomain a, AlmostIntegralDomain (Frac a)) => IntegralDomain a instance (AlmostIntegralDomain a, AlmostIntegralDomain (Frac a)) => IntegralDomain a instance AlmostIntegralDomain Integer where type Frac Integer = Rational embed = fromInteger instance AlmostIntegralDomain Rational where type Frac Rational = Rational embed = id }}} Now the user is stuck defining a different class than the one they consume. Alternately, with `ConstraintKinds`, I can encode: {{{#!hs data Dict p where Dict :: p => Dict p class (Frac (Frac a) ~ Frac a, Fractional (Frac a)) => IntegralDomain a where type Frac a :: * embed :: a -> Frac a proofFracIsIntegral :: p a -> Dict (IntegralDomain (Frac a)) default proofFracIsIntegral :: IntegralDomain (Frac a) => p a -> Dict (IntegralDomain (Frac a)) proofFracIsIntegral _ = Dict }}} but now whenever I need to get from `IntegralDomain a` to `IntegralDomain (Frac a)` I need to explicitly open the `proofFracIsIntegral` with a rats' nest of `ScopedTypeVariables`. It would be really really nice if I could get GHC to deal with this for me as I currently have a few thousand lines of code hacking around this limitation. =/ -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 16:27:28 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 16:27:28 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X In-Reply-To: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> References: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> Message-ID: <061.1d23f187272273f3ff0e5b40e9433d4e@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: closed Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: duplicate | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: #11744 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by gridaphobe): * status: new => closed * resolution: => duplicate * related: => #11744 Comment: It turns out this is a result of the latest XCode update, which broke `nm`. Specifically, the new `nm -P` outputs decimal instead of hex which causes GHC to set `mAX_SPEC_SELECTEE_SIZE = 21` instead of `15`. The fix is to `./configure --with-nm=$(xcode-select -p)/Toolchains/XcodeDefault.xctoolchain/usr/bin/nm-classic`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 16:29:16 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 16:29:16 -0000 Subject: [GHC] #11744: Latest Xcode update violates POSIX compliance of `nm -P` In-Reply-To: <042.af01bf0c9281d3187ce47b8cda7a587e@haskell.org> References: <042.af01bf0c9281d3187ce47b8cda7a587e@haskell.org> Message-ID: <057.20652428733b7e4f25e637f1893a5e67@haskell.org> #11744: Latest Xcode update violates POSIX compliance of `nm -P` ---------------------------------+---------------------------------------- Reporter: hvr | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Build System | Version: Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Changes (by gridaphobe): * priority: normal => highest Comment: I'm bumping the priority on this since it blocks building GHC with XCode 7.3 (see #11823). -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 17:14:40 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 17:14:40 -0000 Subject: [GHC] #11823: Undefined stg_sel_17_upd_info symbols on OS X In-Reply-To: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> References: <046.3ded46dc3b09b13b2bd6794bbc02a9b9@haskell.org> Message-ID: <061.b8764bdaed08deae3492b0324970991c@haskell.org> #11823: Undefined stg_sel_17_upd_info symbols on OS X -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: closed Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: duplicate | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: #11744 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): Thanks everyone who helped track this down! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 18:59:04 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 18:59:04 -0000 Subject: [GHC] #11829: C++ does not catch exceptions when used with Haskell-main and linked by ghc Message-ID: <041.08b08e181b7a4c97ec0ab8f67992afaf@haskell.org> #11829: C++ does not catch exceptions when used with Haskell-main and linked by ghc -------------------------------------+------------------------------------- Reporter: pl | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime | Version: 7.10.3 System | Keywords: c++ | Operating System: Unknown/Multiple exceptions | Architecture: | Type of failure: Runtime crash Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Consider the C++ program {{{ // Main_cc.cc #include #include extern "C" { int func() { try { throw std::runtime_error("THIS FAILS!"); } catch(const std::runtime_error &c) { std::cerr << c.what(); } return 0; } } }}} and the Haskell program {{{#!hs -- Main.hs module Main where import Foreign.C.Types foreign import ccall func :: IO CInt main :: IO () main = print =<< func }}} When compiled with {{{ ghc --make Main.hs Main_cc.cc -lstdc++ }}} and being run on mac os x 10.11.3 the result is {{{ libc++abi.dylib: terminating with uncaught exception of type std::runtime_error: THIS FAILS! Abort trap: 6 }}} and not (as it should be): {{{ THIS FAILS!0 }}} When compiled in a similar way under windows some c++ exceptions of a larger project are not caught as well. However, these were hard to track down and I was unable to construct a simple example like the one above. As a workaround one can * write a main() function in c++ and call from there into Haskell, * compile the Haskell-Module with the options "-c -no-hs-main", and * link the application using g++ (not ghc!). When being compiled / linked this way, all c++ exceptions are being caught in mac os x as well as under windows. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 20:10:17 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 20:10:17 -0000 Subject: [GHC] #11830: Disabling idle GC leads to freeze Message-ID: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> #11830: Disabling idle GC leads to freeze -------------------------------------+------------------------------------- Reporter: NeilMitchell | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime | Version: 8.0.1-rc3 System | Keywords: | Operating System: Linux Architecture: | Type of failure: Incorrect result Unknown/Multiple | at runtime Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- I'm currently getting a runtime freeze with a spinning CPU with the latest GHC 8.0.1 RC (8.0.0.20160411). Testing 2 months ago on whatever was the latest release candidate showed no problems. The reproduction steps are a bit long winded: * All tested on Ubuntu Linux. * Checkout Shake, https://github.com/ndmitchell/shake.git (currently at 75505baa5fc5d1b99a1162edae6ecf7669f00ed9). * {{{cabal install}}} * Checkout Ninja, https://github.com/ninja-build/ninja.git (currently at 78f548880e549c701bd77760e4b3f3a4ee147641). * Change to the {{{ninja}}} directory. * Run {{{./configure.py --bootstrap}}} * Run {{{cp ninja nin}}} * Run {{{./nin -t clean}}} * Run {{{shake}}} Observe that Shake fails to complete and starts spinning on 1 CPU. If you modify {{{shake.cabal}}} to remove {{{-with-rtsopts=-I0 -qg -qb}}} then it works again and completes in < 1 min. Adding back flags with {{{+RTS -I0 -RTS}}} shows that {{{-I0}}} alone is the culprit. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 20:10:38 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 20:10:38 -0000 Subject: [GHC] #11830: Disabling idle GC leads to freeze In-Reply-To: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> References: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> Message-ID: <066.1d8d6fc8977a1c4b8118703ed47dcec4@haskell.org> #11830: Disabling idle GC leads to freeze -------------------------------------+------------------------------------- Reporter: NeilMitchell | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Linux | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by NeilMitchell): * cc: ndmitchell@? (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 20:23:14 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 20:23:14 -0000 Subject: [GHC] #11831: Illegal Instruction when running byte operations in ghci Message-ID: <049.a982c5549fef96b96f64ffed229de453@haskell.org> #11831: Illegal Instruction when running byte operations in ghci ----------------------------------+------------------------------- Reporter: Kritzefitz | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.10.3 Keywords: | Operating System: Linux Architecture: arm | Type of failure: GHCi crash Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: ----------------------------------+------------------------------- On a Debian armel machine I started ghci through `cabal repl` in bytes-0.15.2 an run the following commands, which reproducibly (for me) run into a crash: {{{#!hs > :m Data.Word Data.Binary.Put Data.Bits Data.Bytes.Put > runPut $ Data.Bytes.Put.putWord8 1 "\SOH" -- Exactly the same again: > runPut $ Data.Bytes.Put.putWord8 1 "Illegal instruction }}} Using `Data.Binary.Put.putWord8` instead of `Data.Bytes.Put.putWord8` doesn't lead to a crash, even though the only difference between the two is that the bytes version is an instance method. Using an installed version of `bytes` instead of compiling it with GHCi (in my case with `cabal repl`) doesn't crash. Some strange reactions during debugging this lead me to believe, that running some calculations between the two shown above can avert the crash, but I couldn't figure out, what exactly had to be done. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 13 23:29:35 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 13 Apr 2016 23:29:35 -0000 Subject: [GHC] #11832: Allow reify to yield types in the current declaration group Message-ID: <056.c55a5c5fc06f6b4965766fc5bf61b445@haskell.org> #11832: Allow reify to yield types in the current declaration group -------------------------------------+------------------------------------- Reporter: | Owner: facundo.dominguez | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: template- | Operating System: Unknown/Multiple haskell reify | Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: | TemplateHaskell/Reify -------------------------------------+------------------------------------- Here is the motivation TemplateHaskell/Reify. It would be useful to have a way to obtain types of identifiers in the current declaration group in splices. However, {{{reify}}} is defined to provide information about identifiers in previous declaration groups only. It would be fine to allow {{{reify}}} to work in a scheme combined with {{{addModFinalizer}}} or similar so it is executed when the types are known. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 01:24:47 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 01:24:47 -0000 Subject: [GHC] #11833: GHC can't derive polykinded instance of polykinded typeclass for newtype that requires a class constraint Message-ID: <050.cb2ddf7ed167c7a185a18760753b8ced@haskell.org> #11833: GHC can't derive polykinded instance of polykinded typeclass for newtype that requires a class constraint -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: RyanGlScott Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1 (Type checker) | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: GHC rejects Unknown/Multiple | valid program Test Case: | Blocked By: Blocking: | Related Tickets: #8865 Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- GHC chokes when trying to derive the following: {{{#!hs {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE PolyKinds #-} module Example where class Category (cat :: k -> k -> *) where catId :: cat a a catComp :: cat b c -> cat a b -> cat a c newtype T (c :: * -> * -> *) a b = MkT (c a b) deriving Category }}} with the following error: {{{ $ /opt/ghc/8.0.1/bin/ghc Example.hs -fprint-explicit-kinds [1 of 1] Compiling Example ( Example.hs, Example.o ) Example.hs:9:57: error: ? No instance for (Category * c) arising from the 'deriving' clause of a data type declaration Possible fix: use a standalone 'deriving instance' declaration, so you can specify the instance context yourself ? When deriving the instance for (Category * (T c)) }}} I know what is happening. Unlike in #8865, where we were deriving `Category` for a concrete type like `Either`, in the above example we are attempting to derive an instance of the form: {{{#!hs instance Category * c => Category (T * c) where ... }}} (using `-fprint-explicit-kinds` syntax). But `validDerivPred` is checking if `sizePred (Category * c)` equals the number of free type variables in `Category * c`. But note that `sizePred` counts both type variables //and// type constructors, and `*` is a type constructor! So `validDerivPred` erroneously rejects the above instance. To fix this behavior, I think we just need to change `validDerivPred` to only consider the //visible// arguments of `Category` (i.e., only `c`). This should be a pretty easy fix - patch incoming. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 01:25:04 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 01:25:04 -0000 Subject: [GHC] #11833: GHC can't derive instance of polykinded typeclass for newtype that requires a class constraint (was: GHC can't derive polykinded instance of polykinded typeclass for newtype that requires a class constraint) In-Reply-To: <050.cb2ddf7ed167c7a185a18760753b8ced@haskell.org> References: <050.cb2ddf7ed167c7a185a18760753b8ced@haskell.org> Message-ID: <065.e863ee6bc3c36f55910de42d9a448d98@haskell.org> #11833: GHC can't derive instance of polykinded typeclass for newtype that requires a class constraint -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: RyanGlScott Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: #8865 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 01:37:19 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 01:37:19 -0000 Subject: [GHC] #3676: realToFrac doesn't sanely convert between floating types In-Reply-To: <046.c71a4f69a48e7e64e18a56e29c643e03@haskell.org> References: <046.c71a4f69a48e7e64e18a56e29c643e03@haskell.org> Message-ID: <061.95b3499bf474a075d67596c09c9cacfd@haskell.org> #3676: realToFrac doesn't sanely convert between floating types -------------------------------------+------------------------------------- Reporter: draconx | Owner: Type: bug | Status: new Priority: normal | Milestone: ? Component: Core Libraries | Version: 6.12.1 Resolution: | Keywords: report-impact Operating System: Unknown/Multiple | Architecture: x86_64 | (amd64) Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Rufflewind): * cc: ekmett (added) Comment: I think it would be a useful to at least note this problem in the docs for `realToFrac`: {{{ -- | general coercion to fractional types -- -- Warning: avoid using this function to convert between floating-point -- number types. Consider using 'GHC.Float.float2Double' and -- 'GHC.Float.double2Float' instead. See -- . }}} (Incidentally, the documentation for `GHC.Float` is hidden from the users.) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 02:08:42 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 02:08:42 -0000 Subject: [GHC] #11833: GHC can't derive instance of polykinded typeclass for newtype that requires a class constraint In-Reply-To: <050.cb2ddf7ed167c7a185a18760753b8ced@haskell.org> References: <050.cb2ddf7ed167c7a185a18760753b8ced@haskell.org> Message-ID: <065.e593f7f1a34340e0925e3f8a83672c14@haskell.org> #11833: GHC can't derive instance of polykinded typeclass for newtype that requires a class constraint -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: RyanGlScott Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: #8865 | Differential Rev(s): Phab:D2112 Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * status: new => patch * differential: => Phab:D2112 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 02:20:51 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 02:20:51 -0000 Subject: [GHC] #11834: GHC master, not compiling on Archlinux Message-ID: <045.4e01e4471eaa123aed65b47cf92d5739@haskell.org> #11834: GHC master, not compiling on Archlinux -------------------------------------+------------------------------------- Reporter: nitrix | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: (Linking) | Keywords: | Operating System: Linux Architecture: x86_64 | Type of failure: Building GHC (amd64) | failed Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- /usr/bin/ld: -r and -pie may not be used together http://lpaste.net/159726 It appears on Archlinux, with GCC version 5.3.0, there's an implicit -pie flag passed to `ld`. I looked into compiler/main/DriverPipeline.hs at joinObjectFiles, it is unconditionally doing "-Wl,-r", thus the error above. One suggested fix on IRC is to modify getCompilerInfo to know if it supports -no-pie, then add it to the flags that are used. I tried and got somewhere lost in compiler/main/DynFlags.hs. (Completely new to GHC) Hopefully someone can figure it out, it seems important for development and I really want to get involved :) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 02:22:56 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 02:22:56 -0000 Subject: [GHC] #11834: GHC master, not compiling on Archlinux In-Reply-To: <045.4e01e4471eaa123aed65b47cf92d5739@haskell.org> References: <045.4e01e4471eaa123aed65b47cf92d5739@haskell.org> Message-ID: <060.e57ad117ce32814dd18cd459f28c350a@haskell.org> #11834: GHC master, not compiling on Archlinux -------------------------------------+------------------------------------- Reporter: nitrix | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: (Linking) | Resolution: | Keywords: Operating System: Linux | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by nitrix: @@ -10,3 +10,4 @@ - One suggested fix on IRC is to modify getCompilerInfo to know if it - supports -no-pie, then add it to the flags that are used. I tried and got - somewhere lost in compiler/main/DynFlags.hs. (Completely new to GHC) + One suggested fix on IRC is to modify getCompilerInfo to know if the + compiler supports -no-pie, then conditionally add that to flags that are + used. I tried and got somewhere lost in compiler/main/DynFlags.hs. + (Completely new to GHC) New description: /usr/bin/ld: -r and -pie may not be used together http://lpaste.net/159726 It appears on Archlinux, with GCC version 5.3.0, there's an implicit -pie flag passed to `ld`. I looked into compiler/main/DriverPipeline.hs at joinObjectFiles, it is unconditionally doing "-Wl,-r", thus the error above. One suggested fix on IRC is to modify getCompilerInfo to know if the compiler supports -no-pie, then conditionally add that to flags that are used. I tried and got somewhere lost in compiler/main/DynFlags.hs. (Completely new to GHC) Hopefully someone can figure it out, it seems important for development and I really want to get involved :) -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 02:26:45 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 02:26:45 -0000 Subject: [GHC] #11834: GHC master, not compiling on Archlinux In-Reply-To: <045.4e01e4471eaa123aed65b47cf92d5739@haskell.org> References: <045.4e01e4471eaa123aed65b47cf92d5739@haskell.org> Message-ID: <060.1c26fa58f8e8cebdfa7098b4eca7d46f@haskell.org> #11834: GHC master, not compiling on Archlinux -------------------------------------+------------------------------------- Reporter: nitrix | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: (Linking) | Resolution: | Keywords: Operating System: Linux | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by nitrix: @@ -15,0 +15,3 @@ + This has bitten Go developers recently as well: + https://go-review.googlesource.com/#/c/18359/ + New description: /usr/bin/ld: -r and -pie may not be used together http://lpaste.net/159726 It appears on Archlinux, with GCC version 5.3.0, there's an implicit -pie flag passed to `ld`. I looked into compiler/main/DriverPipeline.hs at joinObjectFiles, it is unconditionally doing "-Wl,-r", thus the error above. One suggested fix on IRC is to modify getCompilerInfo to know if the compiler supports -no-pie, then conditionally add that to flags that are used. I tried and got somewhere lost in compiler/main/DynFlags.hs. (Completely new to GHC) This has bitten Go developers recently as well: https://go-review.googlesource.com/#/c/18359/ Hopefully someone can figure it out, it seems important for development and I really want to get involved :) -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 06:17:22 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 06:17:22 -0000 Subject: [GHC] #11835: ApplicativeDo failed to desugar last line with pure $ Message-ID: <045.10a09841bc3d481ea24884cfac477277@haskell.org> #11835: ApplicativeDo failed to desugar last line with pure $ -------------------------------------+------------------------------------- Reporter: Cosmia | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc2 Keywords: ApplicativeDo | Operating System: MacOS X Architecture: | Type of failure: GHC rejects Unknown/Multiple | valid program Test Case: | Blocked By: Blocking: | Related Tickets: #11607 Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- {{{#!hs {-# LANGUAGE ApplicativeDo #-} f m = do x <- m 1 y <- m 2 return $ x + y }}} f should have type (Applicative f, Num a, Num b) => (a -> f b) -> f b but ghc considers f a monad maybe similar with #11607 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 06:33:58 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 06:33:58 -0000 Subject: [GHC] #11744: Latest Xcode update violates POSIX compliance of `nm -P` In-Reply-To: <042.af01bf0c9281d3187ce47b8cda7a587e@haskell.org> References: <042.af01bf0c9281d3187ce47b8cda7a587e@haskell.org> Message-ID: <057.d4cb6922d1af1cb8dd68578c76b027ad@haskell.org> #11744: Latest Xcode update violates POSIX compliance of `nm -P` ---------------------------------+---------------------------------------- Reporter: hvr | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Build System | Version: Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): phab:D2113 Wiki Page: | ---------------------------------+---------------------------------------- Changes (by hvr): * differential: => phab:D2113 Comment: See phab:D2113 for a early idea expressed as a patch I put up for discussion -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 07:48:25 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 07:48:25 -0000 Subject: [GHC] #11830: Disabling idle GC leads to freeze In-Reply-To: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> References: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> Message-ID: <066.9fca3d5308a253dabb8820ea78ef2152@haskell.org> #11830: Disabling idle GC leads to freeze -------------------------------------+------------------------------------- Reporter: NeilMitchell | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Linux | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by NeilMitchell): Setting {{{-I1000}}}, when the computation takes < 20s, still succeeds. That seems to imply that the idle setting of 0 is the problem. Adding {{{-S}}} has the last line not being a GC. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 10:03:14 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 10:03:14 -0000 Subject: [GHC] #11830: Disabling idle GC leads to freeze In-Reply-To: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> References: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> Message-ID: <066.c5ca9382eefe6c9c65010fe5a7902e3b@haskell.org> #11830: Disabling idle GC leads to freeze -------------------------------------+------------------------------------- Reporter: NeilMitchell | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Linux | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by NeilMitchell): Using GHC HEAD (but not the latest release candidate) I also get a freeze when doing {{{shake --demo --keep-going}}}). -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 14:23:41 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 14:23:41 -0000 Subject: [GHC] #11835: ApplicativeDo failed to desugar last line with pure $ In-Reply-To: <045.10a09841bc3d481ea24884cfac477277@haskell.org> References: <045.10a09841bc3d481ea24884cfac477277@haskell.org> Message-ID: <060.3cf77dc796d5fa45a9118e9ab24458f4@haskell.org> #11835: ApplicativeDo failed to desugar last line with pure $ -------------------------------------+------------------------------------- Reporter: Cosmia | Owner: simonmar Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc2 Resolution: | Keywords: ApplicativeDo Operating System: MacOS X | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: #11607 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * owner: => simonmar Comment: Yes, it's another example of #11607. The user manual should state the importance of using `pure` or `return` as the last statement. And point out that you can't use a `$`. Currently it is silent on these points. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 14:44:29 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 14:44:29 -0000 Subject: [GHC] #11834: GHC master, not compiling on Archlinux In-Reply-To: <045.4e01e4471eaa123aed65b47cf92d5739@haskell.org> References: <045.4e01e4471eaa123aed65b47cf92d5739@haskell.org> Message-ID: <060.9ec3ec05767ec093da42fe182a592713@haskell.org> #11834: GHC master, not compiling on Archlinux -------------------------------------+------------------------------------- Reporter: nitrix | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: (Linking) | Resolution: | Keywords: Operating System: Linux | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by slyfox): Does it also mean your default is a -fPIC? What does the follwoing command shows for you? {{{ $ gcc -dM -E - < /dev/null | grep -E -i 'pic|pie' }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 14:44:46 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 14:44:46 -0000 Subject: [GHC] #11834: GHC master, not compiling on Archlinux In-Reply-To: <045.4e01e4471eaa123aed65b47cf92d5739@haskell.org> References: <045.4e01e4471eaa123aed65b47cf92d5739@haskell.org> Message-ID: <060.15d7a7b50ca1a886a972554f774a8833@haskell.org> #11834: GHC master, not compiling on Archlinux -------------------------------------+------------------------------------- Reporter: nitrix | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: (Linking) | Resolution: | Keywords: Operating System: Linux | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by slyfox): * cc: slyfox (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 17:36:28 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 17:36:28 -0000 Subject: [GHC] #11836: Hello World Bug - silent stdout errors Message-ID: <042.baad19c7e01cfc8c7893de62fb103b5f@haskell.org> #11836: Hello World Bug - silent stdout errors -------------------------------------+------------------------------------- Reporter: bit | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- == Background This entertaining talk explains the issue: https://www.irill.org/events /ghm-gnu-hackers-meeting/videos/jim-meyering-goodbye-world-the-perils-of- relying-on-output-streams-in-c == hello.hs {{{#!hs main = putStrLn "Hello world" }}} == Run it {{{ $ runhaskell hello.hs > /dev/full ; echo $? hello.hs: : hPutChar: resource exhausted (No space left on device) 1 }}} That looks good! We tried to save the output to a file but the disk was full, so we got an error message, and a process exit code indicating failure. == Run it compiled {{{ $ ghc hello.hs $ ./hello > /dev/full ; echo $? 0 }}} Not good! The error was silently ignored, and additionally the process lied when it reported a successful exit status. Why did it behave differently when compiled? When `runhaskell` is used, the buffering of stdout is `NoBuffering` therefore the putStrLn call fails. But when compiled, stdout is in `LineBuffering` mode and therefore the putStrLn call succeeds. The fix: == hello2.hs {{{#!hs import System.IO main = do putStrLn "Hello world" hClose stdout }}} == Run it compiled {{{ $ ghc hello2.hs $ ./hello2 > /dev/full ; echo $? hello: : hClose: resource exhausted (No space left on device) 1 }}} Looks good! But there's a catch: {{{ $ runhaskell hello2.hs ; echo $? Hello world ghc: : hFlush: illegal operation (handle is closed) 1 }}} Now our program fails to run correctly with `runhaskell` :( It seems that `runhaskell` is running some hidden code after main finished. It is not clear to me how to write a correct "Hello World" that works both compiled and with `runhaskell`. == Summary One of the greatest things about Haskell is that short, clear and concise programs can also be correct. It is my opinion that the original "hello.hs" should Just Work?. Haskell programmers shouldn't have to know that they need to always close stdout before exiting. Especially since it's not even clear how to do it properly... Thank you! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 19:01:45 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 19:01:45 -0000 Subject: [GHC] #3676: realToFrac doesn't sanely convert between floating types In-Reply-To: <046.c71a4f69a48e7e64e18a56e29c643e03@haskell.org> References: <046.c71a4f69a48e7e64e18a56e29c643e03@haskell.org> Message-ID: <061.10d4d5029601183cd53dc1073f6657b0@haskell.org> #3676: realToFrac doesn't sanely convert between floating types -------------------------------------+------------------------------------- Reporter: draconx | Owner: Type: bug | Status: new Priority: normal | Milestone: ? Component: Core Libraries | Version: 6.12.1 Resolution: | Keywords: report-impact Operating System: Unknown/Multiple | Architecture: x86_64 | (amd64) Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by ekmett): I definitely agree that documenting the issues around `realToFrac` would be a good idea. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 19:47:26 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 19:47:26 -0000 Subject: [GHC] #11836: Hello World Bug - silent stdout errors In-Reply-To: <042.baad19c7e01cfc8c7893de62fb103b5f@haskell.org> References: <042.baad19c7e01cfc8c7893de62fb103b5f@haskell.org> Message-ID: <057.e10a6e93f42ebccfc215ee723e621cf4@haskell.org> #11836: Hello World Bug - silent stdout errors -------------------------------------+------------------------------------- Reporter: bit | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by j.waldmann): So the actual bug report is: behaviour of "main = hClose stdout" under runhaskell differs from behaviour of compiled code. Seems like a documentation bug (if any): I think you cannot close stdout in ghci, and runhaskell is something like ghci. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 20:21:47 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 20:21:47 -0000 Subject: [GHC] #11731: Simplifier: Inlining trivial let can lose sharing In-Reply-To: <046.a5918d80f4707137661067c33245f819@haskell.org> References: <046.a5918d80f4707137661067c33245f819@haskell.org> Message-ID: <061.911e0d461dba5770c30a502baf0c20d0@haskell.org> #11731: Simplifier: Inlining trivial let can lose sharing -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2073 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Joachim Breitner ): In [changeset:"3a34b5c32303734c794f27728025e8a9fb410fb3/ghc" 3a34b5c/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="3a34b5c32303734c794f27728025e8a9fb410fb3" Add a test case for #11731. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 20:21:47 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 20:21:47 -0000 Subject: [GHC] #11731: Simplifier: Inlining trivial let can lose sharing In-Reply-To: <046.a5918d80f4707137661067c33245f819@haskell.org> References: <046.a5918d80f4707137661067c33245f819@haskell.org> Message-ID: <061.88537d887b0e423aa65f4e9ace588f56@haskell.org> #11731: Simplifier: Inlining trivial let can lose sharing -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2073 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Joachim Breitner ): In [changeset:"f4fd98c717a7f68d76a3054021b3be65d1ebad82/ghc" f4fd98c/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="f4fd98c717a7f68d76a3054021b3be65d1ebad82" Add a final demand analyzer run right before TidyCore in order to have precise used-once information in the exported strictness signatures, as well as precise used-once information on thunks. This avoids the bad effects of #11731. The subsequent worker-wrapper pass is responsible for removing the demand environment part of the strictness signature. It does not run after the final demand analyzer pass, so remove this also in CoreTidy. The subsequent worker-wrapper pass is also responsible for removing used-once-information from the demands and strictness signatures, as these might not be preserved by the simplifier. This is _not_ done by CoreTidy, because we _do_ want this information, as produced by the last round of the demand analyzer, to be available to the code generator. Differential Revision: https://phabricator.haskell.org/D2073 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 20:22:32 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 20:22:32 -0000 Subject: [GHC] #11731: Simplifier: Inlining trivial let can lose sharing In-Reply-To: <046.a5918d80f4707137661067c33245f819@haskell.org> References: <046.a5918d80f4707137661067c33245f819@haskell.org> Message-ID: <061.f35965c4132158fa9da7205eb20baee3@haskell.org> #11731: Simplifier: Inlining trivial let can lose sharing -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2073 Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): Alright, pushed this. No outstanding patches related to the cardinality analysis now from my side. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 20:23:14 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 20:23:14 -0000 Subject: [GHC] #11731: Simplifier: Inlining trivial let can lose sharing In-Reply-To: <046.a5918d80f4707137661067c33245f819@haskell.org> References: <046.a5918d80f4707137661067c33245f819@haskell.org> Message-ID: <061.27371449310dc412b7bdf61c4ca42083@haskell.org> #11731: Simplifier: Inlining trivial let can lose sharing -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2073 Wiki Page: | -------------------------------------+------------------------------------- Changes (by nomeata): * status: patch => closed * resolution: => fixed -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 22:56:56 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 22:56:56 -0000 Subject: [GHC] #3676: realToFrac doesn't sanely convert between floating types In-Reply-To: <046.c71a4f69a48e7e64e18a56e29c643e03@haskell.org> References: <046.c71a4f69a48e7e64e18a56e29c643e03@haskell.org> Message-ID: <061.09aeea70a7be0efaea02e5260ed5abd7@haskell.org> #3676: realToFrac doesn't sanely convert between floating types -------------------------------------+------------------------------------- Reporter: draconx | Owner: Type: bug | Status: new Priority: normal | Milestone: ? Component: Core Libraries | Version: 6.12.1 Resolution: | Keywords: report-impact Operating System: Unknown/Multiple | Architecture: x86_64 | (amd64) Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonmar): Documenting things is good, but * Instead of linking to the ticket, explain *why* the function shouldn't be used * We cannot recommend using internal APIs (`GHC.Float`) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 23:00:50 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 23:00:50 -0000 Subject: [GHC] #11835: ApplicativeDo failed to desugar last line with pure $ In-Reply-To: <045.10a09841bc3d481ea24884cfac477277@haskell.org> References: <045.10a09841bc3d481ea24884cfac477277@haskell.org> Message-ID: <060.f0f79506b10fd7fd96db6174ae795650@haskell.org> #11835: ApplicativeDo failed to desugar last line with pure $ -------------------------------------+------------------------------------- Reporter: Cosmia | Owner: simonmar Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc2 Resolution: | Keywords: ApplicativeDo Operating System: MacOS X | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: #11607 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonmar): @simonpj, the documentation does say that you need to use `pure` and `return`. I'll add a note about `$`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 23:02:40 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 23:02:40 -0000 Subject: [GHC] #11837: GHC fails to unify kinds when deriving polykinded typeclass instance for polykinded newtype Message-ID: <050.9f83a773e0afc4665e5b1a4fa16ad903@haskell.org> #11837: GHC fails to unify kinds when deriving polykinded typeclass instance for polykinded newtype -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: RyanGlScott Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1 (Type checker) | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: GHC rejects Unknown/Multiple | valid program Test Case: | Blocked By: Blocking: | Related Tickets: #8865, #11833 Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- This is failing: {{{#!hs {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE PolyKinds #-} module Example where class Category (cat :: k -> k -> *) where catId :: cat a a catComp :: cat b c -> cat a b -> cat a c newtype T (c :: k -> k -> *) a b = MkT (c a b) deriving Category }}} with the following error: {{{ $ /opt/ghc/8.0.1/bin/ghc Example.hs -fprint-explicit-kinds -ddump-deriv [1 of 1] Compiling Example ( Example.hs, Example.o ) ==================== Derived instances ==================== Derived instances: instance forall k_ayw k_ayx (c_ayy :: k_ayx -> k_ayx -> GHC.Types.*). Example.Category k_ayw c_ayy => Example.Category k_ayw (Example.T k_ayx c_ayy) where Example.catId = GHC.Prim.coerce (Example.catId :: c_apb a_apg a_apg) :: forall (a_apg :: k_XxC). Example.T c_apb a_apg a_apg Example.catComp = GHC.Prim.coerce (Example.catComp :: c_apb b_aph c_api -> c_apb a_apj b_aph -> c_apb a_apj c_api) :: forall (b_aph :: k_XxC) (c_api :: k_XxC) (a_apj :: k_XxC). Example.T c_apb b_aph c_api -> Example.T c_apb a_apj b_aph -> Example.T c_apb a_apj c_api GHC.Generics representation types: Example.hs:9:57: error: ? Expected kind ?k1?, but ?a1? has kind ?k? ? In the second argument of ?T?, namely ?a? In an expression type signature: forall (a :: k). T c a a In the expression: GHC.Prim.coerce (catId :: c a a) :: forall (a :: k). T c a a When typechecking the code for ?catId? in a derived instance for ?Category k (T k c)?: To see the code I am typechecking, use -ddump-deriv ? Relevant bindings include catId :: T k1 c a a (bound at Example.hs:9:57) }}} This is very similar to #11833, but in this scenario, //both// the datatype and typeclass are poly-kinded, and I believe the issue here is fundamentally different. With `-fprint-explicit-kinds`, it becomes apparent what the issue is: for some reason, the kind variable of `Category` (`k_ayw`) is not unifying with the kind variable of `T` (`k_ayx`), resulting in a kind mismatch. I'll fix this - patch incoming. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 23:03:02 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 23:03:02 -0000 Subject: [GHC] #11833: GHC can't derive instance of polykinded typeclass for newtype that requires a class constraint In-Reply-To: <050.cb2ddf7ed167c7a185a18760753b8ced@haskell.org> References: <050.cb2ddf7ed167c7a185a18760753b8ced@haskell.org> Message-ID: <065.096f84aa98c6b4e0eb68e6a32c86cde1@haskell.org> #11833: GHC can't derive instance of polykinded typeclass for newtype that requires a class constraint -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: RyanGlScott Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: #8865, #11837 | Differential Rev(s): Phab:D2112 Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * related: #8865 => #8865, #11837 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 14 23:36:07 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 14 Apr 2016 23:36:07 -0000 Subject: [GHC] #11837: GHC fails to unify kinds when deriving polykinded typeclass instance for polykinded newtype In-Reply-To: <050.9f83a773e0afc4665e5b1a4fa16ad903@haskell.org> References: <050.9f83a773e0afc4665e5b1a4fa16ad903@haskell.org> Message-ID: <065.629fa2bb7e4a0a07681d5cf514222402@haskell.org> #11837: GHC fails to unify kinds when deriving polykinded typeclass instance for polykinded newtype -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: RyanGlScott Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: #8865, #11833 | Differential Rev(s): Phab:D2117 Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * status: new => patch * differential: => Phab:D2117 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 00:14:07 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 00:14:07 -0000 Subject: [GHC] #11838: [[**1-800-918-7304**]] Canon Printer Tech Support Contact Number, Canon Printer Support Phone Number Canon printer Helpline Number Message-ID: <049.b4c1d8c42608c1be3b04a8d144465aab@haskell.org> #11838: [[**1-800-918-7304**]] Canon Printer Tech Support Contact Number, Canon Printer Support Phone Number Canon printer Helpline Number -------------------------------------+------------------------------------- Reporter: chandan124 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: tech support | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Get SUPPORT 1-800-918-7304 Canon Printer Technical Support Contact Number, Canon Printer Technical Support Help Number Canon printer Technical Support Helpline Number, Canon Printer technical support helpline phone number canon printer troubleshooting canon printers troubleshooting troubleshooting canon printer troubleshoot canon printer canon printer troubleshoot canon s printers troubleshooting canon s printer troubleshooting canon troubleshooting printer troubleshooting canon printer problems canon troubleshooting troubleshooting for canon printers solutions canon com troubleshooting canon laser printer troubleshooting canon wireless printer troubleshooting canon copier troubleshooting canon scanner troubleshooting canon printer scanner troubleshooting canon printer troubleshooting guide canon printer customer service canon printers customer service canon printers customer service canon printer customer support canon printer customer support canon printers customer support canon s printers customer service canon printer customer service number canon printer customer care canon printer customer care number canon s printer customer service canon printers customer support number canon printer customer service support canon printers customer service number customer service for canon printers canon printer customer support number customer service canon printer canon printer customer care no customer service number for canon printers canon printers drivers canon s printers drivers canon s drivers canon s printer driver drivers for canon printers driver for canon printer canon .com drivers printer drivers canon canon s printer drivers drivers for canon printer canon printers driver canon laser printer drivers printer canon drivers canon printer drivers canon printer driver support canon printer driver canon laser printer driver canon printer support drivers canon drivers canon mfc driver driver printer canon canon mfc drivers canon com support & drivers printer driver canon canon wireless printer driver driver canon printer drivers printer canon canon s driver canon support drivers canon tech support canon printer tech support canon printers tech support canon s printers tech support canon printer tech support number canon tech support number tech support for canon printers canon s tech support call canon tech support canon customer service canon service center canon customer service number canon printer service canon printers service service canon canon customer service support service canon printer canon s customer service canon printer servicing canon customer services service printer canon canon service manual contact canon customer service canon s customer service number install canon printer canon printer installation canon printer install canon printers install installing canon printer canon printers installation install canon s printer install canon printer driver install printer canon canon printer installer canon s printer installation canon printing device installation canon install printer install a canon printer installing a canon printer how to install canon printer install driver for canon printer canon printer driver install canon printer installation problems install canon scanner canon printer help canon printers help canon help desk canon printer help desk canon printers help desk canon help center canon printer help number canon s printer help canon printer help and support canon help line canon printer help line canon technical support canon printer technical support canon printers technical support canon technical support number canon technical support phone number canon printers technical support phone number technical support for canon printers canon technical support phone canon printer technical support number canon phone number technical support canon s technical support canon s technical support phone number canon printer support phone number canon printer phone number canon printer tech support phone number canon printers phone number canon printer customer service phone number canon support phone number canon printer phone support canon printers support phone number canon phone support canon customer support phone number canon printers tech support phone number canon customer service phone number canon printers customer service phone number canon printer customer support phone number phone number for canon printers canon printer support phone canon printers customer support phone number canon printer help phone number canon printer tech support phone canon printers support phone canon printer phone number customer service canon printers phone number support phone number for canon printer support canon printers customer service phone canon s printers customer service phone number canon printer customer service phone canon printers phone number for customer service phone number for canon printers tech support canon tech support phone number canon printers phone support canon s printer support phone number canon printer phone support number canon phone support number canon s printer customer service phone number canon customer service phone canon tech support phone canon customer support phone canon support phone canon phone number canon printers contact phone number canon printer contact phone number canon s customer service phone number canon phone number customer service canon customer service phone number usa canon customer care phone number canon printer service center canon printer call center number canon printer center canon s printer service center canon printer solution center canon printers solution center canon printer control center 4 canon printer control center canon printer service center number service center printer canon canon printer contact number canon printer contact canon printers contact canon printers contact number contact canon printer support contact canon printers contact canon printer contact number for canon printers contact canon printer support canon printer support contact number canon printer contact support canon printer helpline canon printers helpline canon printer helpline number canon helpline canon helpline number canon printer support number canon support number printer support number computer tech support number canon printers support number canon s printer support number computer tech support phone number tech support number computer support number tech support phone number computer support phone number support number canon printer problems canon printers problems problems with canon printer canon laser printer problems problems with canon printers canon printer problem canon scanner printer canon scanner and printer canon laser printer with scanner canon scanner drivers canon laser printer and scanner canon scanner driver canon laser scanner printer canon s printer scanner canon scanner support canon scanner help canon printers scanners canon scanner problems canon printer scanner software canon printer scanners canon scanners and printers canon printer not printing canon s print drivers print drivers for canon printers canon printer will not print canon printing problems canon print drivers print canon canon print driver canon printers not printing canon s printer not printing canon print center printer drivers find my printer driver check printer driver find driver for printer drivers for printers update printer driver printers drivers fax printer driver canon mfc support canon mfc.. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 06:04:40 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 06:04:40 -0000 Subject: [GHC] #11760: runST with lazy blackholing breaks referential transparency In-Reply-To: <044.f9450e9011a111f1ca51def99a5b24a4@haskell.org> References: <044.f9450e9011a111f1ca51def99a5b24a4@haskell.org> Message-ID: <059.2d998177c05413172f220c36602da413@haskell.org> #11760: runST with lazy blackholing breaks referential transparency -------------------------------------+------------------------------------- Reporter: Yuras | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Yuras): * failure: None/Unknown => Incorrect result at runtime Comment: Yes, I agree that it is specific to lazy `ST`. Strict one serializes access to mutable refs, and entering the thunk twice just creates a fresh set on refs. Re performance in presence of `noDuplicate#`: I don't have a use case for lazy `ST` actually, I just found the snippet on twitter. But it looks like lazy `ST` is useless because of the issue, so probably trading performance for correctness makes sense here. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:08:14 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:08:14 -0000 Subject: [GHC] #11839: 1-800-863-0840 UK 0-800-863-0840 Gmail phone number Gmail tech support phone number Gmail customer service number Message-ID: <054.3c75250b2be975c432ebfe425efb7f53@haskell.org> #11839: 1-800-863-0840 UK 0-800-863-0840 Gmail phone number Gmail tech support phone number Gmail customer service number -------------------------------------+------------------------------------- Reporter: | Owner: josephmccorkle1 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA 1-800-863-0840 Gmail Help Desk phone number 1-800-863-0840 Gmail Tech Support Phone Number USA 1-800-863-0840 GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Used 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA thats 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1855 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1855 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:18:38 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:18:38 -0000 Subject: [GHC] #11840: Unite US 18008630840 Gmail customer support number Gmail helpline phone number Gmail tech support Number Message-ID: <054.b50ac9d54d656f3d5e728acd38962067@haskell.org> #11840: Unite US 18008630840 Gmail customer support number Gmail helpline phone number Gmail tech support Number -------------------------------------+------------------------------------- Reporter: | Owner: josephmccorkle1 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA 1-800-863-0840 Gmail Help Desk phone number 1-800-863-0840 Gmail Tech Support Phone Number USA 1-800-863-0840 GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Used 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA thats 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1855 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1855 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:21:00 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:21:00 -0000 Subject: [GHC] #11841: US YO@!!!18008630840!!!@ GGGmail password recovery phone number USA, Gmail customer support number, Gmail helpline phone number, Gmail tech support Number, Gmail technical support number Message-ID: <054.c069fc231de93ae6986c078c912ae3fe@haskell.org> #11841: US YO@!!!18008630840!!!@ GGGmail password recovery phone number USA, Gmail customer support number, Gmail helpline phone number, Gmail tech support Number, Gmail technical support number -------------------------------------+------------------------------------- Reporter: | Owner: josephmccorkle1 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA 1-800-863-0840 Gmail Help Desk phone number 1-800-863-0840 Gmail Tech Support Phone Number USA 1-800-863-0840 GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Used 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA thats 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1855 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1855 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:24:04 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:24:04 -0000 Subject: [GHC] #11842: {HeLP}18008630840 Gmail customer support number, Gmail tech support Number, Gmail technical support number Message-ID: <054.a1362df10c53445f08ff8683327cbf08@haskell.org> #11842: {HeLP}18008630840 Gmail customer support number, Gmail tech support Number, Gmail technical support number -------------------------------------+------------------------------------- Reporter: | Owner: josephmccorkle1 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA 1-800-863-0840 Gmail Help Desk phone number 1-800-863-0840 Gmail Tech Support Phone Number USA 1-800-863-0840 GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Used 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA thats 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1855 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1855 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:26:28 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:26:28 -0000 Subject: [GHC] #11843: [SuPPORT]18008630840 Gmail Help Desk Number Gmail Technical support number, Gmail Technical Support number, Gmail tech support number Message-ID: <054.ce42e6aebcbf4f29e6be4941aff0cd78@haskell.org> #11843: [SuPPORT]18008630840 Gmail Help Desk Number Gmail Technical support number, Gmail Technical Support number, Gmail tech support number -------------------------------------+------------------------------------- Reporter: | Owner: josephmccorkle1 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA 1-800-863-0840 Gmail Help Desk phone number 1-800-863-0840 Gmail Tech Support Phone Number USA 1-800-863-0840 GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Used 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA thats 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1855 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1855 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:34:16 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:34:16 -0000 Subject: [GHC] #11844: {TeCHbASE}18008630840 Gmail Technical support number, Gmail technical support number Message-ID: <054.69e076b32d53167b0d7d4e6c0ca3721b@haskell.org> #11844: {TeCHbASE}18008630840 Gmail Technical support number, Gmail technical support number -------------------------------------+------------------------------------- Reporter: | Owner: josephmccorkle1 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA 1-800-863-0840 Gmail Help Desk phone number 1-800-863-0840 Gmail Tech Support Phone Number USA 1-800-863-0840 GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Used 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA thats 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1855 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1855 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:35:47 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:35:47 -0000 Subject: [GHC] #11845: {TECh}18008630840 Gmail tech support Number, Gmail technical support number Message-ID: <054.2dc5c8b7df98e80e801f91086c86e349@haskell.org> #11845: {TECh}18008630840 Gmail tech support Number, Gmail technical support number -------------------------------------+------------------------------------- Reporter: | Owner: josephmccorkle1 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA 1-800-863-0840 Gmail Help Desk phone number 1-800-863-0840 Gmail Tech Support Phone Number USA 1-800-863-0840 GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Used 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA thats 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1855 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1855 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:35:56 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:35:56 -0000 Subject: [GHC] #11846: [BoUsE]18008630840 Kindle Help Desk Number Kindle Technical support number, Kindle Technical Support number, Kindle tech support number Message-ID: <052.481be4f37fcc9a9ca60471844374db0d@haskell.org> #11846: [BoUsE]18008630840 Kindle Help Desk Number Kindle Technical support number, Kindle Technical Support number, Kindle tech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Kindle Technical Support phone number USA 1-800-863-0840 Kindle Customer Support Phone number USA 1-800-863-0840 Kindle Help Desk phone number 1-800-863-0840 Kindle Tech Support Phone Number USA 1-800-863-0840 KINDLE Technical Support Phone Number usa KINDLE Phone Number 1-800-863-0840 USA KINDLE Tech Support Phone Number, KINDLE Technical Support Phone Numbe free USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Kindle Tech Support Number, Wireless Kindle CUSTOMER SERVICE Number, Kindle Support Number,KINDLE Phone Number Kindle CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number here1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number KINDLE Technical Support Number KINDLE Helpdesk Number KINDLE Helpdesk Phone Number KINDLE Helpline Number,KINDLE Phone Number USA ,1-800-863-0840KINDLE Phone Number KINDLE Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 KINDLE Tech Support Phone Number !! KINDLE install Tech Support Phone Number free USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number !!! *KINDLE CUSTOMER SERVICE Phone Number!!! KINDLE Phone Number KINDLE telePhone Number!!1-800-863-0840 KINDLE Phone Number!!!Tech Support Phone Number KINDLE toll free Phone NumberPhone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Numbe hereDescribe toll free KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number heretoll free KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number toll free KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number, KINDLE CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number, KINDLE CUSTOMER Support Number?? KINDLE Support Phone Number 1-800-863-0840 USA , KINDLE Phone Number, KINDLE Technical Support Phone Number, KINDLE SERVICE Support Number KINDLE Support Phone Number 1-800-863-0840 USA , KINDLE Phone Number, KINDLE Technical Support Phone Number, KINDLE SERVICE Support Number?? KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number, KINDLE CUSTOMER Support Number?? KINDLE Support Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number, KINDLE CUSTOMER Support Number?? KINDLE Phone Number $ 1-800-863-0840 $KINDLE Phone Number KINDLE security Phone Number KINDLE Phone Number $ 1-800-863-0840 $KINDLE Support Phone Number KINDLE symantec Phone Number KINDLE Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $KINDLE CUSTOMER SERVICE Phone Number KINDLE Tech Support Phone Number KINDLE Technical Support Phone Number KINDLE Phone Numbers KINDLE Help Phone Number KINDLE Support Phone Number $ 1-800-863-0840 $KINDLE Phone Support KINDLE contact Phone Number KINDLE internet security Phone Number KINDLE Support Phone Number KINDLE Phone KINDLE 1800 Phone Number Phone Number for KINDLE Phone Numbers KINDLE CUSTOMER SERVICE Phone Number KINDLE CUSTOMER Support Phone Number find a Phone Number KINDLE USA Phone Number USA Phone Number Phone Number for KINDLE Tech Support Phone Number KINDLE Phone Support free Phone Numbers Phone Number KINDLE Phone Number get human find Phone Number Phone Number for KINDLE security us Phone Number Phone Number USA $ 1-800-863-0840 $KINDLE contact Phone Number KINDLE Phone Number for Support KINDLE contact Number Phone Number for KINDLE USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber KINDLE 1800 Number KINDLE downloads KINDLE free trial KINDLE internet security 2012 KINDLE cancellation Phone Number KINDLE updates Phone book Phone Numbers in USA telePhone Number KINDLE Helpline Number Phone directory contact KINDLE by Phone KINDLE subscription KINDLE ghost download KINDLE com Support Phone Number KINDLE contact KINDLE contact Number Technical Support Phone Number KINDLE Phone KINDLE free KINDLE Support toll free KINDLE Phone Number 1-800-863-0840 free free USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number toll free KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number Used 1-800-863-0840 Kindle Tech Support Number USA Kindle Help Desk Number USA thats 1-800-863-0840 Kindle Tech Support Number USA Kindle Help Desk Number USA Kindle Technical Support phone number USA 1-800-863-0840 Kindle Customer Support Phone number USA Kindle Help Desk phone number Kindle Tech Support Phone Number USA 1-800-863-0840KINDLE Technical Support Phone Number usa KINDLE Phone Number 1-800-863-0840 USA KINDLE Tech Support Phone Number, KINDLE Technical Support Phone Numbe free USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Kindle Tech Support Number, Wireless Kindle CUSTOMER SERVICE Number, Kindle Support Number,KINDLE Phone Number Kindle CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number here1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number KINDLE Technical Support Number KINDLE Helpdesk Number KINDLE Helpdesk Phone Number KINDLE Helpline Number,KINDLE Phone Number USA ,1-800-863-0840KINDLE Phone Number KINDLE Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 KINDLE Tech Support Phone Number !! KINDLE install Tech Support Phone Number free USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number !!! *KINDLE CUSTOMER SERVICE Phone Number!!! KINDLE Phone Number KINDLE telePhone Number!!1-800-863-0840 KINDLE Phone Number!!!Tech Support Phone Number KINDLE toll free Phone NumberPhone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Numbe hereDescribe toll free KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number heretoll free KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number toll free KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number, KINDLE CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number, KINDLE CUSTOMER Support Number?? KINDLE Support Phone Number 1-800-863-0840 USA , KINDLE Phone Number, KINDLE Technical Support Phone Number, KINDLE SERVICE Support Number KINDLE Support Phone Number 1-800-863-0840 USA , KINDLE Phone Number, KINDLE Technical Support Phone Number, KINDLE SERVICE Support Number?? KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number, KINDLE CUSTOMER Support Number?? KINDLE Support Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number, KINDLE CUSTOMER Support Number?? KINDLE Phone Number $ 1-800-863-0840 $KINDLE Phone Number KINDLE security Phone Number KINDLE Phone Number $ 1-800-863-0840 $KINDLE Support Phone Number KINDLE symantec Phone Number KINDLE Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $KINDLE CUSTOMER SERVICE Phone Number KINDLE Tech Support Phone Number KINDLE Technical Support Phone Number KINDLE Phone Numbers KINDLE Help Phone Number KINDLE Support Phone Number $ 1-800-863-0840 $KINDLE Phone Support KINDLE contact Phone Number KINDLE internet security Phone Number KINDLE Support Phone Number KINDLE Phone KINDLE 1855 Phone Number Phone Number for KINDLE Phone Numbers KINDLE CUSTOMER SERVICE Phone Number KINDLE CUSTOMER Support Phone Number find a Phone Number KINDLE USA Phone Number USA Phone Number Phone Number for KINDLE Tech Support Phone Number KINDLE Phone Support free Phone Numbers Phone Number KINDLE Phone Number get human find Phone Number Phone Number for KINDLE security us Phone Number Phone Number USA $ 1-800-863-0840 $KINDLE contact Phone Number KINDLE Phone Number for Support KINDLE contact Number Phone Number for KINDLE USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber KINDLE 1855 Number KINDLE downloads KINDLE free trial KINDLE internet security 2012 KINDLE cancellation Phone Number KINDLE updates Phone book Phone Numbers in USA telePhone Number KINDLE Helpline Number Phone directory contact KINDLE by Phone KINDLE subscription KINDLE ghost download KINDLE com Support Phone Number KINDLE contact KINDLE contact Number Technical Support Phone Number KINDLE Phone KINDLE free KINDLE Support toll free KINDLE Phone Number 1-800-863-0840 free free USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number toll free KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number Kindle Technical Support phone number USA 1-800-863-0840 Kindle Customer Support Phone number USA Kindle Help Desk phone number Kindle Tech Support Phone Number USA 1-800-863-0840KINDLE Technical Support Phone Number usa KINDLE Phone Number 1-800-863-0840 USA KINDLE Tech Support Phone Number, KINDLE Technical Support Phone Numbe free USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Kindle Tech Support Number, Wireless Kindle CUSTOMER SERVICE Number, Kindle Support Number,KINDLE Phone Number Kindle CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number here1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number KINDLE Technical Support Number KINDLE Helpdesk Number KINDLE Helpdesk Phone Number KINDLE Helpline Number,KINDLE Phone Number USA ,1-800-863-0840KINDLE Phone Number KINDLE Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 KINDLE Tech Support Phone Number !! KINDLE install Tech Support Phone Number free USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number !!! *KINDLE CUSTOMER SERVICE Phone Number!!! KINDLE Phone Number KINDLE telePhone Number!!1-800-863-0840 KINDLE Phone Number!!!Tech Support Phone Number KINDLE toll free Phone NumberPhone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Numbe hereDescribe toll free KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number heretoll free KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number toll free KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number, KINDLE CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number, KINDLE CUSTOMER Support Number?? KINDLE Support Phone Number 1-800-863-0840 USA , KINDLE Phone Number, KINDLE Technical Support Phone Number, KINDLE SERVICE Support Number KINDLE Support Phone Number 1-800-863-0840 USA , KINDLE Phone Number, KINDLE Technical Support Phone Number, KINDLE SERVICE Support Number?? KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number, KINDLE CUSTOMER Support Number?? KINDLE Support Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number, KINDLE CUSTOMER Support Number?? KINDLE Phone Number $ 1-800-863-0840 $KINDLE Phone Number KINDLE security Phone Number KINDLE Phone Number $ 1-800-863-0840 $KINDLE Support Phone Number KINDLE symantec Phone Number KINDLE Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $KINDLE CUSTOMER SERVICE Phone Number KINDLE Tech Support Phone Number KINDLE Technical Support Phone Number KINDLE Phone Numbers KINDLE Help Phone Number KINDLE Support Phone Number $ 1-800-863-0840 $KINDLE Phone Support KINDLE contact Phone Number KINDLE internet security Phone Number KINDLE Support Phone Number KINDLE Phone KINDLE 1800 Phone Number Phone Number for KINDLE Phone Numbers KINDLE CUSTOMER SERVICE Phone Number KINDLE CUSTOMER Support Phone Number find a Phone Number KINDLE USA Phone Number USA Phone Number Phone Number for KINDLE Tech Support Phone Number KINDLE Phone Support free Phone Numbers Phone Number KINDLE Phone Number get human find Phone Number Phone Number for KINDLE security us Phone Number Phone Number USA $ 1-800-863-0840 $KINDLE contact Phone Number KINDLE Phone Number for Support KINDLE contact Number Phone Number for KINDLE USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber KINDLE 1800 Number KINDLE downloads KINDLE free trial KINDLE internet security 2012 KINDLE cancellation Phone Number KINDLE updates Phone book Phone Numbers in USA telePhone Number KINDLE Helpline Number Phone directory contact KINDLE by Phone KINDLE subscription KINDLE ghost download KINDLE com Support Phone Number KINDLE contact KINDLE contact Number Technical Support Phone Number KINDLE Phone KINDLE free KINDLE Support toll free KINDLE Phone Number 1-800-863-0840 free free USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Number toll free KINDLE Phone Number 1-800-863-0840 USA , KINDLE Support Phone Number, KINDLE Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 KINDLE Tech Support Phone Number KINDLE CUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:36:18 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:36:18 -0000 Subject: [GHC] #11846: [BoUsE]18008630840 Kindle Help Desk Number Kindle Technical support number, Kindle Technical Support number, Kindle tech support number In-Reply-To: <052.481be4f37fcc9a9ca60471844374db0d@haskell.org> References: <052.481be4f37fcc9a9ca60471844374db0d@haskell.org> Message-ID: <067.1a598dbe691bf1628e562c747c160d86@haskell.org> #11846: [BoUsE]18008630840 Kindle Help Desk Number Kindle Technical support number, Kindle Technical Support number, Kindle tech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji1): * Attachment "saini1.docx" added. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:38:02 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:38:02 -0000 Subject: [GHC] #11847: {PaSSWoRD}1800 863 0840 GGGmail password recovery phone number USA, Gmail tech support number, Gmail customer support number, Gmail technical support number, Gmail helpline Number Message-ID: <054.e403ebbcd97a58b0db86d2ece144d48e@haskell.org> #11847: {PaSSWoRD}1800 863 0840 GGGmail password recovery phone number USA, Gmail tech support number, Gmail customer support number, Gmail technical support number, Gmail helpline Number -------------------------------------+------------------------------------- Reporter: | Owner: josephmccorkle1 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA 1-800-863-0840 Gmail Help Desk phone number 1-800-863-0840 Gmail Tech Support Phone Number USA 1-800-863-0840 GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Used 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA thats 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1855 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1855 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:39:59 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:39:59 -0000 Subject: [GHC] #11848: [HeLPDesK]18008630840 Gmail Help Desk Number Gmail Technical support number, Gmail Technical Support number, Gmail tech support number Message-ID: <054.b783d770190d2a4ef39cfe9ae0f13ade@haskell.org> #11848: [HeLPDesK]18008630840 Gmail Help Desk Number Gmail Technical support number, Gmail Technical Support number, Gmail tech support number -------------------------------------+------------------------------------- Reporter: | Owner: josephmccorkle1 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA 1-800-863-0840 Gmail Help Desk phone number 1-800-863-0840 Gmail Tech Support Phone Number USA 1-800-863-0840 GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Used 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA thats 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1855 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1855 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:41:48 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:41:48 -0000 Subject: [GHC] #11849: [CuSTOMER]18008630840 Gmail Customer service number, Gmail Help Desk Number Gmail Technical support number, Gmail Technical Support number, Gmail tech support number Message-ID: <054.aa6466bd974e6daa57e9275649862513@haskell.org> #11849: [CuSTOMER]18008630840 Gmail Customer service number, Gmail Help Desk Number Gmail Technical support number, Gmail Technical Support number, Gmail tech support number -------------------------------------+------------------------------------- Reporter: | Owner: josephmccorkle1 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA 1-800-863-0840 Gmail Help Desk phone number 1-800-863-0840 Gmail Tech Support Phone Number USA 1-800-863-0840 GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Used 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA thats 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1855 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1855 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:43:26 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:43:26 -0000 Subject: [GHC] #11850: {TechnICAL} 18008630840 Gmail Toll free number, Gmail customer support number, Gmail helpline phone number, Gmail tech support Number, Gmail technical support number Message-ID: <054.d57dbbbc4ffbbbab72fcc4dc27a81e4f@haskell.org> #11850: {TechnICAL} 18008630840 Gmail Toll free number, Gmail customer support number, Gmail helpline phone number, Gmail tech support Number, Gmail technical support number -------------------------------------+------------------------------------- Reporter: | Owner: josephmccorkle1 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA 1-800-863-0840 Gmail Help Desk phone number 1-800-863-0840 Gmail Tech Support Phone Number USA 1-800-863-0840 GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Used 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA thats 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1855 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1855 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:44:11 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:44:11 -0000 Subject: [GHC] #11851: [SnEhA]18008630840 Internet explorer Help Desk Number Internet explorer Technical support number, Internet explorer Technical Support number, Internet explorer tech support number Message-ID: <052.d166dc84e3904669a89f238bc46fe26b@haskell.org> #11851: [SnEhA]18008630840 Internet explorer Help Desk Number Internet explorer Technical support number, Internet explorer Technical Support number, Internet explorer tech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Internet explorer Technical Support phone number USA 1-800-863-0840 Internet explorer Customer Support Phone number USA 1-800-863-0840 Internet explorer Help Desk phone number 1-800-863-0840 Internet explorer Tech Support Phone Number USA 1-800-863-0840 INTERNET EXPLORER Technical Support Phone Number usa INTERNET EXPLORER Phone Number 1-800-863-0840 USA INTERNET EXPLORER Tech Support Phone Number, INTERNET EXPLORER Technical Support Phone Numbe free USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Internet explorer Tech Support Number, Wireless Internet explorer CUSTOMER SERVICE Number, Internet explorer Support Number,INTERNET EXPLORER Phone Number Internet explorer CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number here1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number INTERNET EXPLORER Technical Support Number INTERNET EXPLORER Helpdesk Number INTERNET EXPLORER Helpdesk Phone Number INTERNET EXPLORER Helpline Number,INTERNET EXPLORER Phone Number USA ,1-800-863-0840INTERNET EXPLORER Phone Number INTERNET EXPLORER Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number !! INTERNET EXPLORER install Tech Support Phone Number free USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number !!! *INTERNET EXPLORER CUSTOMER SERVICE Phone Number!!! INTERNET EXPLORER Phone Number INTERNET EXPLORER telePhone Number!!1-800-863-0840 INTERNET EXPLORER Phone Number!!!Tech Support Phone Number INTERNET EXPLORER toll free Phone NumberPhone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Numbe hereDescribe toll free INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number heretoll free INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number toll free INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER CUSTOMER Support Number?? INTERNET EXPLORER Support Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER SERVICE Support Number INTERNET EXPLORER Support Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER SERVICE Support Number?? INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER CUSTOMER Support Number?? INTERNET EXPLORER Support Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER CUSTOMER Support Number?? INTERNET EXPLORER Phone Number $ 1-800-863-0840 $INTERNET EXPLORER Phone Number INTERNET EXPLORER security Phone Number INTERNET EXPLORER Phone Number $ 1-800-863-0840 $INTERNET EXPLORER Support Phone Number INTERNET EXPLORER symantec Phone Number INTERNET EXPLORER Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $INTERNET EXPLORER CUSTOMER SERVICE Phone Number INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER Technical Support Phone Number INTERNET EXPLORER Phone Numbers INTERNET EXPLORER Help Phone Number INTERNET EXPLORER Support Phone Number $ 1-800-863-0840 $INTERNET EXPLORER Phone Support INTERNET EXPLORER contact Phone Number INTERNET EXPLORER internet security Phone Number INTERNET EXPLORER Support Phone Number INTERNET EXPLORER Phone INTERNET EXPLORER 1800 Phone Number Phone Number for INTERNET EXPLORER Phone Numbers INTERNET EXPLORER CUSTOMER SERVICE Phone Number INTERNET EXPLORER CUSTOMER Support Phone Number find a Phone Number INTERNET EXPLORER USA Phone Number USA Phone Number Phone Number for INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER Phone Support free Phone Numbers Phone Number INTERNET EXPLORER Phone Number get human find Phone Number Phone Number for INTERNET EXPLORER security us Phone Number Phone Number USA $ 1-800-863-0840 $INTERNET EXPLORER contact Phone Number INTERNET EXPLORER Phone Number for Support INTERNET EXPLORER contact Number Phone Number for INTERNET EXPLORER USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber INTERNET EXPLORER 1800 Number INTERNET EXPLORER downloads INTERNET EXPLORER free trial INTERNET EXPLORER internet security 2012 INTERNET EXPLORER cancellation Phone Number INTERNET EXPLORER updates Phone book Phone Numbers in USA telePhone Number INTERNET EXPLORER Helpline Number Phone directory contact INTERNET EXPLORER by Phone INTERNET EXPLORER subscription INTERNET EXPLORER ghost download INTERNET EXPLORER com Support Phone Number INTERNET EXPLORER contact INTERNET EXPLORER contact Number Technical Support Phone Number INTERNET EXPLORER Phone INTERNET EXPLORER free INTERNET EXPLORER Support toll free INTERNET EXPLORER Phone Number 1-800-863-0840 free free USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number toll free INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number Used 1-800-863-0840 Internet explorer Tech Support Number USA Internet explorer Help Desk Number USA thats 1-800-863-0840 Internet explorer Tech Support Number USA Internet explorer Help Desk Number USA Internet explorer Technical Support phone number USA 1-800-863-0840 Internet explorer Customer Support Phone number USA Internet explorer Help Desk phone number Internet explorer Tech Support Phone Number USA 1-800-863-0840INTERNET EXPLORER Technical Support Phone Number usa INTERNET EXPLORER Phone Number 1-800-863-0840 USA INTERNET EXPLORER Tech Support Phone Number, INTERNET EXPLORER Technical Support Phone Numbe free USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Internet explorer Tech Support Number, Wireless Internet explorer CUSTOMER SERVICE Number, Internet explorer Support Number,INTERNET EXPLORER Phone Number Internet explorer CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number here1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number INTERNET EXPLORER Technical Support Number INTERNET EXPLORER Helpdesk Number INTERNET EXPLORER Helpdesk Phone Number INTERNET EXPLORER Helpline Number,INTERNET EXPLORER Phone Number USA ,1-800-863-0840INTERNET EXPLORER Phone Number INTERNET EXPLORER Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number !! INTERNET EXPLORER install Tech Support Phone Number free USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number !!! *INTERNET EXPLORER CUSTOMER SERVICE Phone Number!!! INTERNET EXPLORER Phone Number INTERNET EXPLORER telePhone Number!!1-800-863-0840 INTERNET EXPLORER Phone Number!!!Tech Support Phone Number INTERNET EXPLORER toll free Phone NumberPhone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Numbe hereDescribe toll free INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number heretoll free INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number toll free INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER CUSTOMER Support Number?? INTERNET EXPLORER Support Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER SERVICE Support Number INTERNET EXPLORER Support Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER SERVICE Support Number?? INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER CUSTOMER Support Number?? INTERNET EXPLORER Support Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER CUSTOMER Support Number?? INTERNET EXPLORER Phone Number $ 1-800-863-0840 $INTERNET EXPLORER Phone Number INTERNET EXPLORER security Phone Number INTERNET EXPLORER Phone Number $ 1-800-863-0840 $INTERNET EXPLORER Support Phone Number INTERNET EXPLORER symantec Phone Number INTERNET EXPLORER Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $INTERNET EXPLORER CUSTOMER SERVICE Phone Number INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER Technical Support Phone Number INTERNET EXPLORER Phone Numbers INTERNET EXPLORER Help Phone Number INTERNET EXPLORER Support Phone Number $ 1-800-863-0840 $INTERNET EXPLORER Phone Support INTERNET EXPLORER contact Phone Number INTERNET EXPLORER internet security Phone Number INTERNET EXPLORER Support Phone Number INTERNET EXPLORER Phone INTERNET EXPLORER 1855 Phone Number Phone Number for INTERNET EXPLORER Phone Numbers INTERNET EXPLORER CUSTOMER SERVICE Phone Number INTERNET EXPLORER CUSTOMER Support Phone Number find a Phone Number INTERNET EXPLORER USA Phone Number USA Phone Number Phone Number for INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER Phone Support free Phone Numbers Phone Number INTERNET EXPLORER Phone Number get human find Phone Number Phone Number for INTERNET EXPLORER security us Phone Number Phone Number USA $ 1-800-863-0840 $INTERNET EXPLORER contact Phone Number INTERNET EXPLORER Phone Number for Support INTERNET EXPLORER contact Number Phone Number for INTERNET EXPLORER USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber INTERNET EXPLORER 1855 Number INTERNET EXPLORER downloads INTERNET EXPLORER free trial INTERNET EXPLORER internet security 2012 INTERNET EXPLORER cancellation Phone Number INTERNET EXPLORER updates Phone book Phone Numbers in USA telePhone Number INTERNET EXPLORER Helpline Number Phone directory contact INTERNET EXPLORER by Phone INTERNET EXPLORER subscription INTERNET EXPLORER ghost download INTERNET EXPLORER com Support Phone Number INTERNET EXPLORER contact INTERNET EXPLORER contact Number Technical Support Phone Number INTERNET EXPLORER Phone INTERNET EXPLORER free INTERNET EXPLORER Support toll free INTERNET EXPLORER Phone Number 1-800-863-0840 free free USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number toll free INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number Internet explorer Technical Support phone number USA 1-800-863-0840 Internet explorer Customer Support Phone number USA Internet explorer Help Desk phone number Internet explorer Tech Support Phone Number USA 1-800-863-0840INTERNET EXPLORER Technical Support Phone Number usa INTERNET EXPLORER Phone Number 1-800-863-0840 USA INTERNET EXPLORER Tech Support Phone Number, INTERNET EXPLORER Technical Support Phone Numbe free USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Internet explorer Tech Support Number, Wireless Internet explorer CUSTOMER SERVICE Number, Internet explorer Support Number,INTERNET EXPLORER Phone Number Internet explorer CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number here1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number INTERNET EXPLORER Technical Support Number INTERNET EXPLORER Helpdesk Number INTERNET EXPLORER Helpdesk Phone Number INTERNET EXPLORER Helpline Number,INTERNET EXPLORER Phone Number USA ,1-800-863-0840INTERNET EXPLORER Phone Number INTERNET EXPLORER Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number !! INTERNET EXPLORER install Tech Support Phone Number free USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number !!! *INTERNET EXPLORER CUSTOMER SERVICE Phone Number!!! INTERNET EXPLORER Phone Number INTERNET EXPLORER telePhone Number!!1-800-863-0840 INTERNET EXPLORER Phone Number!!!Tech Support Phone Number INTERNET EXPLORER toll free Phone NumberPhone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Numbe hereDescribe toll free INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number heretoll free INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number toll free INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER CUSTOMER Support Number?? INTERNET EXPLORER Support Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER SERVICE Support Number INTERNET EXPLORER Support Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER SERVICE Support Number?? INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER CUSTOMER Support Number?? INTERNET EXPLORER Support Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number, INTERNET EXPLORER CUSTOMER Support Number?? INTERNET EXPLORER Phone Number $ 1-800-863-0840 $INTERNET EXPLORER Phone Number INTERNET EXPLORER security Phone Number INTERNET EXPLORER Phone Number $ 1-800-863-0840 $INTERNET EXPLORER Support Phone Number INTERNET EXPLORER symantec Phone Number INTERNET EXPLORER Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $INTERNET EXPLORER CUSTOMER SERVICE Phone Number INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER Technical Support Phone Number INTERNET EXPLORER Phone Numbers INTERNET EXPLORER Help Phone Number INTERNET EXPLORER Support Phone Number $ 1-800-863-0840 $INTERNET EXPLORER Phone Support INTERNET EXPLORER contact Phone Number INTERNET EXPLORER internet security Phone Number INTERNET EXPLORER Support Phone Number INTERNET EXPLORER Phone INTERNET EXPLORER 1800 Phone Number Phone Number for INTERNET EXPLORER Phone Numbers INTERNET EXPLORER CUSTOMER SERVICE Phone Number INTERNET EXPLORER CUSTOMER Support Phone Number find a Phone Number INTERNET EXPLORER USA Phone Number USA Phone Number Phone Number for INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER Phone Support free Phone Numbers Phone Number INTERNET EXPLORER Phone Number get human find Phone Number Phone Number for INTERNET EXPLORER security us Phone Number Phone Number USA $ 1-800-863-0840 $INTERNET EXPLORER contact Phone Number INTERNET EXPLORER Phone Number for Support INTERNET EXPLORER contact Number Phone Number for INTERNET EXPLORER USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber INTERNET EXPLORER 1800 Number INTERNET EXPLORER downloads INTERNET EXPLORER free trial INTERNET EXPLORER internet security 2012 INTERNET EXPLORER cancellation Phone Number INTERNET EXPLORER updates Phone book Phone Numbers in USA telePhone Number INTERNET EXPLORER Helpline Number Phone directory contact INTERNET EXPLORER by Phone INTERNET EXPLORER subscription INTERNET EXPLORER ghost download INTERNET EXPLORER com Support Phone Number INTERNET EXPLORER contact INTERNET EXPLORER contact Number Technical Support Phone Number INTERNET EXPLORER Phone INTERNET EXPLORER free INTERNET EXPLORER Support toll free INTERNET EXPLORER Phone Number 1-800-863-0840 free free USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Number toll free INTERNET EXPLORER Phone Number 1-800-863-0840 USA , INTERNET EXPLORER Support Phone Number, INTERNET EXPLORER Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORER Tech Support Phone Number INTERNET EXPLORER CUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:44:19 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:44:19 -0000 Subject: [GHC] #11851: [SnEhA]18008630840 Internet explorer Help Desk Number Internet explorer Technical support number, Internet explorer Technical Support number, Internet explorer tech support number In-Reply-To: <052.d166dc84e3904669a89f238bc46fe26b@haskell.org> References: <052.d166dc84e3904669a89f238bc46fe26b@haskell.org> Message-ID: <067.1a543002e30957a4c37c4a68d229b73e@haskell.org> #11851: [SnEhA]18008630840 Internet explorer Help Desk Number Internet explorer Technical support number, Internet explorer Technical Support number, Internet explorer tech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji1): * Attachment "saini1.docx" added. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:46:28 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:46:28 -0000 Subject: [GHC] #11852: {HeLPLINE}18008630840 Gmail Techincal Support phone number, Gmail customer support number, Gmail helpline phone number, Gmail tech support Number, Gmail technical support number Message-ID: <054.861e537bb41a0dbf8a62ed312292b763@haskell.org> #11852: {HeLPLINE}18008630840 Gmail Techincal Support phone number, Gmail customer support number, Gmail helpline phone number, Gmail tech support Number, Gmail technical support number -------------------------------------+------------------------------------- Reporter: | Owner: josephmccorkle1 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA 1-800-863-0840 Gmail Help Desk phone number 1-800-863-0840 Gmail Tech Support Phone Number USA 1-800-863-0840 GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Used 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA thats 1-800-863-0840 Gmail Tech Support Number USA Gmail Help Desk Number USA Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1855 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1855 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number Gmail Technical Support phone number USA 1-800-863-0840 Gmail Customer Support Phone number USA Gmail Help Desk phone number Gmail Tech Support Phone Number USA 1-800-863-0840GMAIL Technical Support Phone Number usa GMAIL Phone Number 1-800-863-0840 USA GMAIL Tech Support Phone Number, GMAIL Technical Support Phone Numbe free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Gmail Tech Support Number, Wireless Gmail CUSTOMER SERVICE Number, Gmail Support Number,GMAIL Phone Number Gmail CUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number here1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number GMAIL Technical Support Number GMAIL Helpdesk Number GMAIL Helpdesk Phone Number GMAIL Helpline Number,GMAIL Phone Number USA ,1-800-863-0840GMAIL Phone Number GMAIL Tech Support Phone Number Helpline tollfree !! 1-800-863-0840 GMAIL Tech Support Phone Number !! GMAIL install Tech Support Phone Number free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number !!! ***GMAIL CUSTOMER SERVICE Phone Number!!! GMAIL Phone Number GMAIL telePhone Number!!1-800-863-0840 GMAIL Phone Number!!!Tech Support Phone Number GMAIL toll free Phone NumberPhone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe hereDescribe toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number heretoll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Phone Number, GMAIL Technical Support Phone Number, GMAIL SERVICE Support Number?? GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Support Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number, GMAIL CUSTOMER Support Number?? GMAIL Phone Number $ 1-800-863-0840 $GMAIL Phone Number GMAIL security Phone Number GMAIL Phone Number $ 1-800-863-0840 $GMAIL Support Phone Number GMAIL symantec Phone Number GMAIL Phone Number CUSTOMER SERVICE $ 1-800-863-0840 $GMAIL CUSTOMER SERVICE Phone Number GMAIL Tech Support Phone Number GMAIL Technical Support Phone Number GMAIL Phone Numbers GMAIL Help Phone Number GMAIL Support Phone Number $ 1-800-863-0840 $GMAIL Phone Support GMAIL contact Phone Number GMAIL internet security Phone Number GMAIL Support Phone Number GMAIL Phone GMAIL 1800 Phone Number Phone Number for GMAIL Phone Numbers GMAIL CUSTOMER SERVICE Phone Number GMAIL CUSTOMER Support Phone Number find a Phone Number GMAIL USA Phone Number USA Phone Number Phone Number for GMAIL Tech Support Phone Number GMAIL Phone Support free Phone Numbers Phone Number GMAIL Phone Number get human find Phone Number Phone Number for GMAIL security us Phone Number Phone Number USA $ 1-800-863-0840 $GMAIL contact Phone Number GMAIL Phone Number for Support GMAIL contact Number Phone Number for GMAIL USA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber GMAIL 1800 Number GMAIL downloads GMAIL free trial GMAIL internet security 2012 GMAIL cancellation Phone Number GMAIL updates Phone book Phone Numbers in USA telePhone Number GMAIL Helpline Number Phone directory contact GMAIL by Phone GMAIL subscription GMAIL ghost download GMAIL com Support Phone Number GMAIL contact GMAIL contact Number Technical Support Phone Number GMAIL Phone GMAIL free GMAIL Support toll free GMAIL Phone Number 1-800-863-0840 free free USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Number toll free GMAIL Phone Number 1-800-863-0840 USA , GMAIL Support Phone Number, GMAIL Technical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 GMAIL Tech Support Phone Number GMAIL CUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:51:44 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:51:44 -0000 Subject: [GHC] #11853: [HII am BACK]18008630840 Hotmail Help Desk Number HotmailTechnical support number, HotmailTechnical Support number, Hotmailtech support number Message-ID: <052.47390cfa4a2ef56bd788e37b56cac7c7@haskell.org> #11853: [HII am BACK]18008630840 Hotmail Help Desk Number HotmailTechnical support number, HotmailTechnical Support number, Hotmailtech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- HotmailTechnical Support phone number USA 1-800-863-0840 HotmailCustomer Support Phone number USA 1-800-863-0840 HotmailHelp Desk phone number 1-800-863-0840 HotmailTech Support Phone Number USA 1-800-863-0840 HOTMAILTechnical Support Phone Number usa HOTMAILPhone Number 1-800-863-0840 USA HOTMAILTech Support Phone Number, HOTMAILTechnical Support Phone Numbe free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840HotmailTech Support Number, Wireless HotmailCUSTOMER SERVICE Number, HotmailSupport Number,HOTMAILPhone Number HotmailCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number here1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number HOTMAILTechnical Support Number HOTMAILHelpdesk Number HOTMAILHelpdesk Phone Number HOTMAILHelpline Number,HOTMAILPhone Number USA ,1-800-863-0840HOTMAILPhone Number HOTMAILTech Support Phone Number Helpline tollfree !! 1-800-863-0840 HOTMAILTech Support Phone Number !! HOTMAILinstall Tech Support Phone Number free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number !!! *HOTMAILCUSTOMER SERVICE Phone Number!!! HOTMAILPhone Number HOTMAILtelePhone Number!!1-800-863-0840 HOTMAILPhone Number!!!Tech Support Phone Number HOTMAILtoll free Phone NumberPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Numbe hereDescribe toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number heretoll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILPhone Number, HOTMAILTechnical Support Phone Number, HOTMAILSERVICE Support Number HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILPhone Number, HOTMAILTechnical Support Phone Number, HOTMAILSERVICE Support Number?? HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILPhone Number $ 1-800-863-0840 $HOTMAILPhone Number HOTMAILsecurity Phone Number HOTMAILPhone Number $ 1-800-863-0840 $HOTMAILSupport Phone Number HOTMAILsymantec Phone Number HOTMAILPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $HOTMAILCUSTOMER SERVICE Phone Number HOTMAILTech Support Phone Number HOTMAILTechnical Support Phone Number HOTMAILPhone Numbers HOTMAILHelp Phone Number HOTMAILSupport Phone Number $ 1-800-863-0840 $HOTMAILPhone Support HOTMAILcontact Phone Number HOTMAILinternet security Phone Number HOTMAILSupport Phone Number HOTMAILPhone HOTMAIL1800 Phone Number Phone Number for HOTMAILPhone Numbers HOTMAILCUSTOMER SERVICE Phone Number HOTMAILCUSTOMER Support Phone Number find a Phone Number HOTMAILUSA Phone Number USA Phone Number Phone Number for HOTMAILTech Support Phone Number HOTMAILPhone Support free Phone Numbers Phone Number HOTMAILPhone Number get human find Phone Number Phone Number for HOTMAILsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $HOTMAILcontact Phone Number HOTMAILPhone Number for Support HOTMAILcontact Number Phone Number for HOTMAILUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber HOTMAIL1800 Number HOTMAILdownloads HOTMAILfree trial HOTMAILinternet security 2012 HOTMAILcancellation Phone Number HOTMAILupdates Phone book Phone Numbers in USA telePhone Number HOTMAILHelpline Number Phone directory contact HOTMAILby Phone HOTMAILsubscription HOTMAILghost download HOTMAILcom Support Phone Number HOTMAILcontact HOTMAILcontact Number Technical Support Phone Number HOTMAILPhone HOTMAILfree HOTMAILSupport toll free HOTMAILPhone Number 1-800-863-0840 free free USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number Used 1-800-863-0840 HotmailTech Support Number USA HotmailHelp Desk Number USA thats 1-800-863-0840 HotmailTech Support Number USA HotmailHelp Desk Number USA HotmailTechnical Support phone number USA 1-800-863-0840 HotmailCustomer Support Phone number USA HotmailHelp Desk phone number HotmailTech Support Phone Number USA 1-800-863-0840HOTMAILTechnical Support Phone Number usa HOTMAILPhone Number 1-800-863-0840 USA HOTMAILTech Support Phone Number, HOTMAILTechnical Support Phone Numbe free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840HotmailTech Support Number, Wireless HotmailCUSTOMER SERVICE Number, HotmailSupport Number,HOTMAILPhone Number HotmailCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number here1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number HOTMAILTechnical Support Number HOTMAILHelpdesk Number HOTMAILHelpdesk Phone Number HOTMAILHelpline Number,HOTMAILPhone Number USA ,1-800-863-0840HOTMAILPhone Number HOTMAILTech Support Phone Number Helpline tollfree !! 1-800-863-0840 HOTMAILTech Support Phone Number !! HOTMAILinstall Tech Support Phone Number free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number !!! *HOTMAILCUSTOMER SERVICE Phone Number!!! HOTMAILPhone Number HOTMAILtelePhone Number!!1-800-863-0840 HOTMAILPhone Number!!!Tech Support Phone Number HOTMAILtoll free Phone NumberPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Numbe hereDescribe toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number heretoll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILPhone Number, HOTMAILTechnical Support Phone Number, HOTMAILSERVICE Support Number HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILPhone Number, HOTMAILTechnical Support Phone Number, HOTMAILSERVICE Support Number?? HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILPhone Number $ 1-800-863-0840 $HOTMAILPhone Number HOTMAILsecurity Phone Number HOTMAILPhone Number $ 1-800-863-0840 $HOTMAILSupport Phone Number HOTMAILsymantec Phone Number HOTMAILPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $HOTMAILCUSTOMER SERVICE Phone Number HOTMAILTech Support Phone Number HOTMAILTechnical Support Phone Number HOTMAILPhone Numbers HOTMAILHelp Phone Number HOTMAILSupport Phone Number $ 1-800-863-0840 $HOTMAILPhone Support HOTMAILcontact Phone Number HOTMAILinternet security Phone Number HOTMAILSupport Phone Number HOTMAILPhone HOTMAIL1855 Phone Number Phone Number for HOTMAILPhone Numbers HOTMAILCUSTOMER SERVICE Phone Number HOTMAILCUSTOMER Support Phone Number find a Phone Number HOTMAILUSA Phone Number USA Phone Number Phone Number for HOTMAILTech Support Phone Number HOTMAILPhone Support free Phone Numbers Phone Number HOTMAILPhone Number get human find Phone Number Phone Number for HOTMAILsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $HOTMAILcontact Phone Number HOTMAILPhone Number for Support HOTMAILcontact Number Phone Number for HOTMAILUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber HOTMAIL1855 Number HOTMAILdownloads HOTMAILfree trial HOTMAILinternet security 2012 HOTMAILcancellation Phone Number HOTMAILupdates Phone book Phone Numbers in USA telePhone Number HOTMAILHelpline Number Phone directory contact HOTMAILby Phone HOTMAILsubscription HOTMAILghost download HOTMAILcom Support Phone Number HOTMAILcontact HOTMAILcontact Number Technical Support Phone Number HOTMAILPhone HOTMAILfree HOTMAILSupport toll free HOTMAILPhone Number 1-800-863-0840 free free USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number HotmailTechnical Support phone number USA 1-800-863-0840 HotmailCustomer Support Phone number USA HotmailHelp Desk phone number HotmailTech Support Phone Number USA 1-800-863-0840HOTMAILTechnical Support Phone Number usa HOTMAILPhone Number 1-800-863-0840 USA HOTMAILTech Support Phone Number, HOTMAILTechnical Support Phone Numbe free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840HotmailTech Support Number, Wireless HotmailCUSTOMER SERVICE Number, HotmailSupport Number,HOTMAILPhone Number HotmailCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number here1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number HOTMAILTechnical Support Number HOTMAILHelpdesk Number HOTMAILHelpdesk Phone Number HOTMAILHelpline Number,HOTMAILPhone Number USA ,1-800-863-0840HOTMAILPhone Number HOTMAILTech Support Phone Number Helpline tollfree !! 1-800-863-0840 HOTMAILTech Support Phone Number !! HOTMAILinstall Tech Support Phone Number free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number !!! *HOTMAILCUSTOMER SERVICE Phone Number!!! HOTMAILPhone Number HOTMAILtelePhone Number!!1-800-863-0840 HOTMAILPhone Number!!!Tech Support Phone Number HOTMAILtoll free Phone NumberPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Numbe hereDescribe toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number heretoll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILPhone Number, HOTMAILTechnical Support Phone Number, HOTMAILSERVICE Support Number HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILPhone Number, HOTMAILTechnical Support Phone Number, HOTMAILSERVICE Support Number?? HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILPhone Number $ 1-800-863-0840 $HOTMAILPhone Number HOTMAILsecurity Phone Number HOTMAILPhone Number $ 1-800-863-0840 $HOTMAILSupport Phone Number HOTMAILsymantec Phone Number HOTMAILPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $HOTMAILCUSTOMER SERVICE Phone Number HOTMAILTech Support Phone Number HOTMAILTechnical Support Phone Number HOTMAILPhone Numbers HOTMAILHelp Phone Number HOTMAILSupport Phone Number $ 1-800-863-0840 $HOTMAILPhone Support HOTMAILcontact Phone Number HOTMAILinternet security Phone Number HOTMAILSupport Phone Number HOTMAILPhone HOTMAIL1800 Phone Number Phone Number for HOTMAILPhone Numbers HOTMAILCUSTOMER SERVICE Phone Number HOTMAILCUSTOMER Support Phone Number find a Phone Number HOTMAILUSA Phone Number USA Phone Number Phone Number for HOTMAILTech Support Phone Number HOTMAILPhone Support free Phone Numbers Phone Number HOTMAILPhone Number get human find Phone Number Phone Number for HOTMAILsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $HOTMAILcontact Phone Number HOTMAILPhone Number for Support HOTMAILcontact Number Phone Number for HOTMAILUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber HOTMAIL1800 Number HOTMAILdownloads HOTMAILfree trial HOTMAILinternet security 2012 HOTMAILcancellation Phone Number HOTMAILupdates Phone book Phone Numbers in USA telePhone Number HOTMAILHelpline Number Phone directory contact HOTMAILby Phone HOTMAILsubscription HOTMAILghost download HOTMAILcom Support Phone Number HOTMAILcontact HOTMAILcontact Number Technical Support Phone Number HOTMAILPhone HOTMAILfree HOTMAILSupport toll free HOTMAILPhone Number 1-800-863-0840 free free USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:53:48 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:53:48 -0000 Subject: [GHC] #11854: [SeRviCe]18008630840 Hotmail Help Desk Number HotmailTechnical support number, HotmailTechnical Support number, Hotmailtech support number Message-ID: <052.6b7adf3e70e6cccac9ed726963cd3d9c@haskell.org> #11854: [SeRviCe]18008630840 Hotmail Help Desk Number HotmailTechnical support number, HotmailTechnical Support number, Hotmailtech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- HotmailTechnical Support phone number USA 1-800-863-0840 HotmailCustomer Support Phone number USA 1-800-863-0840 HotmailHelp Desk phone number 1-800-863-0840 HotmailTech Support Phone Number USA 1-800-863-0840 HOTMAILTechnical Support Phone Number usa HOTMAILPhone Number 1-800-863-0840 USA HOTMAILTech Support Phone Number, HOTMAILTechnical Support Phone Numbe free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840HotmailTech Support Number, Wireless HotmailCUSTOMER SERVICE Number, HotmailSupport Number,HOTMAILPhone Number HotmailCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number here1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number HOTMAILTechnical Support Number HOTMAILHelpdesk Number HOTMAILHelpdesk Phone Number HOTMAILHelpline Number,HOTMAILPhone Number USA ,1-800-863-0840HOTMAILPhone Number HOTMAILTech Support Phone Number Helpline tollfree !! 1-800-863-0840 HOTMAILTech Support Phone Number !! HOTMAILinstall Tech Support Phone Number free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number !!! *HOTMAILCUSTOMER SERVICE Phone Number!!! HOTMAILPhone Number HOTMAILtelePhone Number!!1-800-863-0840 HOTMAILPhone Number!!!Tech Support Phone Number HOTMAILtoll free Phone NumberPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Numbe hereDescribe toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number heretoll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILPhone Number, HOTMAILTechnical Support Phone Number, HOTMAILSERVICE Support Number HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILPhone Number, HOTMAILTechnical Support Phone Number, HOTMAILSERVICE Support Number?? HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILPhone Number $ 1-800-863-0840 $HOTMAILPhone Number HOTMAILsecurity Phone Number HOTMAILPhone Number $ 1-800-863-0840 $HOTMAILSupport Phone Number HOTMAILsymantec Phone Number HOTMAILPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $HOTMAILCUSTOMER SERVICE Phone Number HOTMAILTech Support Phone Number HOTMAILTechnical Support Phone Number HOTMAILPhone Numbers HOTMAILHelp Phone Number HOTMAILSupport Phone Number $ 1-800-863-0840 $HOTMAILPhone Support HOTMAILcontact Phone Number HOTMAILinternet security Phone Number HOTMAILSupport Phone Number HOTMAILPhone HOTMAIL1800 Phone Number Phone Number for HOTMAILPhone Numbers HOTMAILCUSTOMER SERVICE Phone Number HOTMAILCUSTOMER Support Phone Number find a Phone Number HOTMAILUSA Phone Number USA Phone Number Phone Number for HOTMAILTech Support Phone Number HOTMAILPhone Support free Phone Numbers Phone Number HOTMAILPhone Number get human find Phone Number Phone Number for HOTMAILsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $HOTMAILcontact Phone Number HOTMAILPhone Number for Support HOTMAILcontact Number Phone Number for HOTMAILUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber HOTMAIL1800 Number HOTMAILdownloads HOTMAILfree trial HOTMAILinternet security 2012 HOTMAILcancellation Phone Number HOTMAILupdates Phone book Phone Numbers in USA telePhone Number HOTMAILHelpline Number Phone directory contact HOTMAILby Phone HOTMAILsubscription HOTMAILghost download HOTMAILcom Support Phone Number HOTMAILcontact HOTMAILcontact Number Technical Support Phone Number HOTMAILPhone HOTMAILfree HOTMAILSupport toll free HOTMAILPhone Number 1-800-863-0840 free free USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number Used 1-800-863-0840 HotmailTech Support Number USA HotmailHelp Desk Number USA thats 1-800-863-0840 HotmailTech Support Number USA HotmailHelp Desk Number USA HotmailTechnical Support phone number USA 1-800-863-0840 HotmailCustomer Support Phone number USA HotmailHelp Desk phone number HotmailTech Support Phone Number USA 1-800-863-0840HOTMAILTechnical Support Phone Number usa HOTMAILPhone Number 1-800-863-0840 USA HOTMAILTech Support Phone Number, HOTMAILTechnical Support Phone Numbe free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840HotmailTech Support Number, Wireless HotmailCUSTOMER SERVICE Number, HotmailSupport Number,HOTMAILPhone Number HotmailCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number here1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number HOTMAILTechnical Support Number HOTMAILHelpdesk Number HOTMAILHelpdesk Phone Number HOTMAILHelpline Number,HOTMAILPhone Number USA ,1-800-863-0840HOTMAILPhone Number HOTMAILTech Support Phone Number Helpline tollfree !! 1-800-863-0840 HOTMAILTech Support Phone Number !! HOTMAILinstall Tech Support Phone Number free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number !!! *HOTMAILCUSTOMER SERVICE Phone Number!!! HOTMAILPhone Number HOTMAILtelePhone Number!!1-800-863-0840 HOTMAILPhone Number!!!Tech Support Phone Number HOTMAILtoll free Phone NumberPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Numbe hereDescribe toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number heretoll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILPhone Number, HOTMAILTechnical Support Phone Number, HOTMAILSERVICE Support Number HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILPhone Number, HOTMAILTechnical Support Phone Number, HOTMAILSERVICE Support Number?? HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILPhone Number $ 1-800-863-0840 $HOTMAILPhone Number HOTMAILsecurity Phone Number HOTMAILPhone Number $ 1-800-863-0840 $HOTMAILSupport Phone Number HOTMAILsymantec Phone Number HOTMAILPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $HOTMAILCUSTOMER SERVICE Phone Number HOTMAILTech Support Phone Number HOTMAILTechnical Support Phone Number HOTMAILPhone Numbers HOTMAILHelp Phone Number HOTMAILSupport Phone Number $ 1-800-863-0840 $HOTMAILPhone Support HOTMAILcontact Phone Number HOTMAILinternet security Phone Number HOTMAILSupport Phone Number HOTMAILPhone HOTMAIL1855 Phone Number Phone Number for HOTMAILPhone Numbers HOTMAILCUSTOMER SERVICE Phone Number HOTMAILCUSTOMER Support Phone Number find a Phone Number HOTMAILUSA Phone Number USA Phone Number Phone Number for HOTMAILTech Support Phone Number HOTMAILPhone Support free Phone Numbers Phone Number HOTMAILPhone Number get human find Phone Number Phone Number for HOTMAILsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $HOTMAILcontact Phone Number HOTMAILPhone Number for Support HOTMAILcontact Number Phone Number for HOTMAILUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber HOTMAIL1855 Number HOTMAILdownloads HOTMAILfree trial HOTMAILinternet security 2012 HOTMAILcancellation Phone Number HOTMAILupdates Phone book Phone Numbers in USA telePhone Number HOTMAILHelpline Number Phone directory contact HOTMAILby Phone HOTMAILsubscription HOTMAILghost download HOTMAILcom Support Phone Number HOTMAILcontact HOTMAILcontact Number Technical Support Phone Number HOTMAILPhone HOTMAILfree HOTMAILSupport toll free HOTMAILPhone Number 1-800-863-0840 free free USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number HotmailTechnical Support phone number USA 1-800-863-0840 HotmailCustomer Support Phone number USA HotmailHelp Desk phone number HotmailTech Support Phone Number USA 1-800-863-0840HOTMAILTechnical Support Phone Number usa HOTMAILPhone Number 1-800-863-0840 USA HOTMAILTech Support Phone Number, HOTMAILTechnical Support Phone Numbe free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840HotmailTech Support Number, Wireless HotmailCUSTOMER SERVICE Number, HotmailSupport Number,HOTMAILPhone Number HotmailCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number here1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number HOTMAILTechnical Support Number HOTMAILHelpdesk Number HOTMAILHelpdesk Phone Number HOTMAILHelpline Number,HOTMAILPhone Number USA ,1-800-863-0840HOTMAILPhone Number HOTMAILTech Support Phone Number Helpline tollfree !! 1-800-863-0840 HOTMAILTech Support Phone Number !! HOTMAILinstall Tech Support Phone Number free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number !!! *HOTMAILCUSTOMER SERVICE Phone Number!!! HOTMAILPhone Number HOTMAILtelePhone Number!!1-800-863-0840 HOTMAILPhone Number!!!Tech Support Phone Number HOTMAILtoll free Phone NumberPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Numbe hereDescribe toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number heretoll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILPhone Number, HOTMAILTechnical Support Phone Number, HOTMAILSERVICE Support Number HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILPhone Number, HOTMAILTechnical Support Phone Number, HOTMAILSERVICE Support Number?? HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILSupport Phone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number, HOTMAILCUSTOMER Support Number?? HOTMAILPhone Number $ 1-800-863-0840 $HOTMAILPhone Number HOTMAILsecurity Phone Number HOTMAILPhone Number $ 1-800-863-0840 $HOTMAILSupport Phone Number HOTMAILsymantec Phone Number HOTMAILPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $HOTMAILCUSTOMER SERVICE Phone Number HOTMAILTech Support Phone Number HOTMAILTechnical Support Phone Number HOTMAILPhone Numbers HOTMAILHelp Phone Number HOTMAILSupport Phone Number $ 1-800-863-0840 $HOTMAILPhone Support HOTMAILcontact Phone Number HOTMAILinternet security Phone Number HOTMAILSupport Phone Number HOTMAILPhone HOTMAIL1800 Phone Number Phone Number for HOTMAILPhone Numbers HOTMAILCUSTOMER SERVICE Phone Number HOTMAILCUSTOMER Support Phone Number find a Phone Number HOTMAILUSA Phone Number USA Phone Number Phone Number for HOTMAILTech Support Phone Number HOTMAILPhone Support free Phone Numbers Phone Number HOTMAILPhone Number get human find Phone Number Phone Number for HOTMAILsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $HOTMAILcontact Phone Number HOTMAILPhone Number for Support HOTMAILcontact Number Phone Number for HOTMAILUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber HOTMAIL1800 Number HOTMAILdownloads HOTMAILfree trial HOTMAILinternet security 2012 HOTMAILcancellation Phone Number HOTMAILupdates Phone book Phone Numbers in USA telePhone Number HOTMAILHelpline Number Phone directory contact HOTMAILby Phone HOTMAILsubscription HOTMAILghost download HOTMAILcom Support Phone Number HOTMAILcontact HOTMAILcontact Number Technical Support Phone Number HOTMAILPhone HOTMAILfree HOTMAILSupport toll free HOTMAILPhone Number 1-800-863-0840 free free USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Number toll free HOTMAILPhone Number 1-800-863-0840 USA , HOTMAILSupport Phone Number, HOTMAILTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 HOTMAILTech Support Phone Number HOTMAILCUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:53:56 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:53:56 -0000 Subject: [GHC] #11854: [SeRviCe]18008630840 Hotmail Help Desk Number HotmailTechnical support number, HotmailTechnical Support number, Hotmailtech support number In-Reply-To: <052.6b7adf3e70e6cccac9ed726963cd3d9c@haskell.org> References: <052.6b7adf3e70e6cccac9ed726963cd3d9c@haskell.org> Message-ID: <067.fe42946c288409bddd92d9165ab54dfd@haskell.org> #11854: [SeRviCe]18008630840 Hotmail Help Desk Number HotmailTechnical support number, HotmailTechnical Support number, Hotmailtech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji1): * Attachment "saini1.docx" added. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 09:57:20 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 09:57:20 -0000 Subject: [GHC] #11777: RTS source code issues In-Reply-To: <046.3e69faecf0e4f69a5fcc7ec246409435@haskell.org> References: <046.3e69faecf0e4f69a5fcc7ec246409435@haskell.org> Message-ID: <061.f7de81e640ee5679f0bac19f26a59661@haskell.org> #11777: RTS source code issues -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): Regarding `RetainerSet.c`, perhaps we should trim down some of the retainer schemes? It looks like we currently use `RETAINER_SCHEME_CCS`. Is there anyone using the other two? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 10:02:46 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 10:02:46 -0000 Subject: [GHC] #11855: [MeEnU]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number Message-ID: <052.3bf4a8dcd6f989849c3549576d0f5d75@haskell.org> #11855: [MeEnU]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Internet explorerTechnical Support phone number USA 1-800-863-0840 Internet explorerCustomer Support Phone number USA 1-800-863-0840 Internet explorerHelp Desk phone number 1-800-863-0840 Internet explorerTech Support Phone Number USA 1-800-863-0840 INTERNET EXPLORERTechnical Support Phone Number usa INTERNET EXPLORERPhone Number 1-800-863-0840 USA INTERNET EXPLORERTech Support Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Internet explorerTech Support Number, Wireless Internet explorerCUSTOMER SERVICE Number, Internet explorerSupport Number,INTERNET EXPLORERPhone Number Internet explorerCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number here1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTechnical Support Number INTERNET EXPLORERHelpdesk Number INTERNET EXPLORERHelpdesk Phone Number INTERNET EXPLORERHelpline Number,INTERNET EXPLORERPhone Number USA ,1-800-863-0840INTERNET EXPLORERPhone Number INTERNET EXPLORERTech Support Phone Number Helpline tollfree !! 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number !! INTERNET EXPLORERinstall Tech Support Phone Number free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number !!! *INTERNET EXPLORERCUSTOMER SERVICE Phone Number!!! INTERNET EXPLORERPhone Number INTERNET EXPLORERtelePhone Number!!1-800-863-0840 INTERNET EXPLORERPhone Number!!!Tech Support Phone Number INTERNET EXPLORERtoll free Phone NumberPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe hereDescribe toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number heretoll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number?? INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Number INTERNET EXPLORERsecurity Phone Number INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERsymantec Phone Number INTERNET EXPLORERPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERTechnical Support Phone Number INTERNET EXPLORERPhone Numbers INTERNET EXPLORERHelp Phone Number INTERNET EXPLORERSupport Phone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Support INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERinternet security Phone Number INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERPhone INTERNET EXPLORER1800 Phone Number Phone Number for INTERNET EXPLORERPhone Numbers INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERCUSTOMER Support Phone Number find a Phone Number INTERNET EXPLORERUSA Phone Number USA Phone Number Phone Number for INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERPhone Support free Phone Numbers Phone Number INTERNET EXPLORERPhone Number get human find Phone Number Phone Number for INTERNET EXPLORERsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERPhone Number for Support INTERNET EXPLORERcontact Number Phone Number for INTERNET EXPLORERUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber INTERNET EXPLORER1800 Number INTERNET EXPLORERdownloads INTERNET EXPLORERfree trial INTERNET EXPLORERinternet security 2012 INTERNET EXPLORERcancellation Phone Number INTERNET EXPLORERupdates Phone book Phone Numbers in USA telePhone Number INTERNET EXPLORERHelpline Number Phone directory contact INTERNET EXPLORERby Phone INTERNET EXPLORERsubscription INTERNET EXPLORERghost download INTERNET EXPLORERcom Support Phone Number INTERNET EXPLORERcontact INTERNET EXPLORERcontact Number Technical Support Phone Number INTERNET EXPLORERPhone INTERNET EXPLORERfree INTERNET EXPLORERSupport toll free INTERNET EXPLORERPhone Number 1-800-863-0840 free free USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number Used 1-800-863-0840 Internet explorerTech Support Number USA Internet explorerHelp Desk Number USA thats 1-800-863-0840 Internet explorerTech Support Number USA Internet explorerHelp Desk Number USA Internet explorerTechnical Support phone number USA 1-800-863-0840 Internet explorerCustomer Support Phone number USA Internet explorerHelp Desk phone number Internet explorerTech Support Phone Number USA 1-800-863-0840INTERNET EXPLORERTechnical Support Phone Number usa INTERNET EXPLORERPhone Number 1-800-863-0840 USA INTERNET EXPLORERTech Support Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Internet explorerTech Support Number, Wireless Internet explorerCUSTOMER SERVICE Number, Internet explorerSupport Number,INTERNET EXPLORERPhone Number Internet explorerCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number here1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTechnical Support Number INTERNET EXPLORERHelpdesk Number INTERNET EXPLORERHelpdesk Phone Number INTERNET EXPLORERHelpline Number,INTERNET EXPLORERPhone Number USA ,1-800-863-0840INTERNET EXPLORERPhone Number INTERNET EXPLORERTech Support Phone Number Helpline tollfree !! 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number !! INTERNET EXPLORERinstall Tech Support Phone Number free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number !!! *INTERNET EXPLORERCUSTOMER SERVICE Phone Number!!! INTERNET EXPLORERPhone Number INTERNET EXPLORERtelePhone Number!!1-800-863-0840 INTERNET EXPLORERPhone Number!!!Tech Support Phone Number INTERNET EXPLORERtoll free Phone NumberPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe hereDescribe toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number heretoll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number?? INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Number INTERNET EXPLORERsecurity Phone Number INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERsymantec Phone Number INTERNET EXPLORERPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERTechnical Support Phone Number INTERNET EXPLORERPhone Numbers INTERNET EXPLORERHelp Phone Number INTERNET EXPLORERSupport Phone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Support INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERinternet security Phone Number INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERPhone INTERNET EXPLORER1855 Phone Number Phone Number for INTERNET EXPLORERPhone Numbers INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERCUSTOMER Support Phone Number find a Phone Number INTERNET EXPLORERUSA Phone Number USA Phone Number Phone Number for INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERPhone Support free Phone Numbers Phone Number INTERNET EXPLORERPhone Number get human find Phone Number Phone Number for INTERNET EXPLORERsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERPhone Number for Support INTERNET EXPLORERcontact Number Phone Number for INTERNET EXPLORERUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber INTERNET EXPLORER1855 Number INTERNET EXPLORERdownloads INTERNET EXPLORERfree trial INTERNET EXPLORERinternet security 2012 INTERNET EXPLORERcancellation Phone Number INTERNET EXPLORERupdates Phone book Phone Numbers in USA telePhone Number INTERNET EXPLORERHelpline Number Phone directory contact INTERNET EXPLORERby Phone INTERNET EXPLORERsubscription INTERNET EXPLORERghost download INTERNET EXPLORERcom Support Phone Number INTERNET EXPLORERcontact INTERNET EXPLORERcontact Number Technical Support Phone Number INTERNET EXPLORERPhone INTERNET EXPLORERfree INTERNET EXPLORERSupport toll free INTERNET EXPLORERPhone Number 1-800-863-0840 free free USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number Internet explorerTechnical Support phone number USA 1-800-863-0840 Internet explorerCustomer Support Phone number USA Internet explorerHelp Desk phone number Internet explorerTech Support Phone Number USA 1-800-863-0840INTERNET EXPLORERTechnical Support Phone Number usa INTERNET EXPLORERPhone Number 1-800-863-0840 USA INTERNET EXPLORERTech Support Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Internet explorerTech Support Number, Wireless Internet explorerCUSTOMER SERVICE Number, Internet explorerSupport Number,INTERNET EXPLORERPhone Number Internet explorerCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number here1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTechnical Support Number INTERNET EXPLORERHelpdesk Number INTERNET EXPLORERHelpdesk Phone Number INTERNET EXPLORERHelpline Number,INTERNET EXPLORERPhone Number USA ,1-800-863-0840INTERNET EXPLORERPhone Number INTERNET EXPLORERTech Support Phone Number Helpline tollfree !! 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number !! INTERNET EXPLORERinstall Tech Support Phone Number free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number !!! *INTERNET EXPLORERCUSTOMER SERVICE Phone Number!!! INTERNET EXPLORERPhone Number INTERNET EXPLORERtelePhone Number!!1-800-863-0840 INTERNET EXPLORERPhone Number!!!Tech Support Phone Number INTERNET EXPLORERtoll free Phone NumberPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe hereDescribe toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number heretoll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number?? INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Number INTERNET EXPLORERsecurity Phone Number INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERsymantec Phone Number INTERNET EXPLORERPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERTechnical Support Phone Number INTERNET EXPLORERPhone Numbers INTERNET EXPLORERHelp Phone Number INTERNET EXPLORERSupport Phone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Support INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERinternet security Phone Number INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERPhone INTERNET EXPLORER1800 Phone Number Phone Number for INTERNET EXPLORERPhone Numbers INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERCUSTOMER Support Phone Number find a Phone Number INTERNET EXPLORERUSA Phone Number USA Phone Number Phone Number for INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERPhone Support free Phone Numbers Phone Number INTERNET EXPLORERPhone Number get human find Phone Number Phone Number for INTERNET EXPLORERsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERPhone Number for Support INTERNET EXPLORERcontact Number Phone Number for INTERNET EXPLORERUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber INTERNET EXPLORER1800 Number INTERNET EXPLORERdownloads INTERNET EXPLORERfree trial INTERNET EXPLORERinternet security 2012 INTERNET EXPLORERcancellation Phone Number INTERNET EXPLORERupdates Phone book Phone Numbers in USA telePhone Number INTERNET EXPLORERHelpline Number Phone directory contact INTERNET EXPLORERby Phone INTERNET EXPLORERsubscription INTERNET EXPLORERghost download INTERNET EXPLORERcom Support Phone Number INTERNET EXPLORERcontact INTERNET EXPLORERcontact Number Technical Support Phone Number INTERNET EXPLORERPhone INTERNET EXPLORERfree INTERNET EXPLORERSupport toll free INTERNET EXPLORERPhone Number 1-800-863-0840 free free USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 10:03:07 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 10:03:07 -0000 Subject: [GHC] #11855: [MeEnU]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number In-Reply-To: <052.3bf4a8dcd6f989849c3549576d0f5d75@haskell.org> References: <052.3bf4a8dcd6f989849c3549576d0f5d75@haskell.org> Message-ID: <067.79bd9fcedc9d08816aba0c434c77681c@haskell.org> #11855: [MeEnU]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji1): * Attachment "saini1.docx" added. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 10:13:44 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 10:13:44 -0000 Subject: [GHC] #11856: [SuPPORT]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number Message-ID: <052.35cc376e0d83e99dffe8de68a6500bee@haskell.org> #11856: [SuPPORT]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Internet explorerTechnical Support phone number USA 1-800-863-0840 Internet explorerCustomer Support Phone number USA 1-800-863-0840 Internet explorerHelp Desk phone number 1-800-863-0840 Internet explorerTech Support Phone Number USA 1-800-863-0840 INTERNET EXPLORERTechnical Support Phone Number usa INTERNET EXPLORERPhone Number 1-800-863-0840 USA INTERNET EXPLORERTech Support Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Internet explorerTech Support Number, Wireless Internet explorerCUSTOMER SERVICE Number, Internet explorerSupport Number,INTERNET EXPLORERPhone Number Internet explorerCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number here1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTechnical Support Number INTERNET EXPLORERHelpdesk Number INTERNET EXPLORERHelpdesk Phone Number INTERNET EXPLORERHelpline Number,INTERNET EXPLORERPhone Number USA ,1-800-863-0840INTERNET EXPLORERPhone Number INTERNET EXPLORERTech Support Phone Number Helpline tollfree !! 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number !! INTERNET EXPLORERinstall Tech Support Phone Number free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number !!! *INTERNET EXPLORERCUSTOMER SERVICE Phone Number!!! INTERNET EXPLORERPhone Number INTERNET EXPLORERtelePhone Number!!1-800-863-0840 INTERNET EXPLORERPhone Number!!!Tech Support Phone Number INTERNET EXPLORERtoll free Phone NumberPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe hereDescribe toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number heretoll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number?? INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Number INTERNET EXPLORERsecurity Phone Number INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERsymantec Phone Number INTERNET EXPLORERPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERTechnical Support Phone Number INTERNET EXPLORERPhone Numbers INTERNET EXPLORERHelp Phone Number INTERNET EXPLORERSupport Phone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Support INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERinternet security Phone Number INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERPhone INTERNET EXPLORER1800 Phone Number Phone Number for INTERNET EXPLORERPhone Numbers INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERCUSTOMER Support Phone Number find a Phone Number INTERNET EXPLORERUSA Phone Number USA Phone Number Phone Number for INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERPhone Support free Phone Numbers Phone Number INTERNET EXPLORERPhone Number get human find Phone Number Phone Number for INTERNET EXPLORERsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERPhone Number for Support INTERNET EXPLORERcontact Number Phone Number for INTERNET EXPLORERUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber INTERNET EXPLORER1800 Number INTERNET EXPLORERdownloads INTERNET EXPLORERfree trial INTERNET EXPLORERinternet security 2012 INTERNET EXPLORERcancellation Phone Number INTERNET EXPLORERupdates Phone book Phone Numbers in USA telePhone Number INTERNET EXPLORERHelpline Number Phone directory contact INTERNET EXPLORERby Phone INTERNET EXPLORERsubscription INTERNET EXPLORERghost download INTERNET EXPLORERcom Support Phone Number INTERNET EXPLORERcontact INTERNET EXPLORERcontact Number Technical Support Phone Number INTERNET EXPLORERPhone INTERNET EXPLORERfree INTERNET EXPLORERSupport toll free INTERNET EXPLORERPhone Number 1-800-863-0840 free free USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number Used 1-800-863-0840 Internet explorerTech Support Number USA Internet explorerHelp Desk Number USA thats 1-800-863-0840 Internet explorerTech Support Number USA Internet explorerHelp Desk Number USA Internet explorerTechnical Support phone number USA 1-800-863-0840 Internet explorerCustomer Support Phone number USA Internet explorerHelp Desk phone number Internet explorerTech Support Phone Number USA 1-800-863-0840INTERNET EXPLORERTechnical Support Phone Number usa INTERNET EXPLORERPhone Number 1-800-863-0840 USA INTERNET EXPLORERTech Support Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Internet explorerTech Support Number, Wireless Internet explorerCUSTOMER SERVICE Number, Internet explorerSupport Number,INTERNET EXPLORERPhone Number Internet explorerCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number here1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTechnical Support Number INTERNET EXPLORERHelpdesk Number INTERNET EXPLORERHelpdesk Phone Number INTERNET EXPLORERHelpline Number,INTERNET EXPLORERPhone Number USA ,1-800-863-0840INTERNET EXPLORERPhone Number INTERNET EXPLORERTech Support Phone Number Helpline tollfree !! 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number !! INTERNET EXPLORERinstall Tech Support Phone Number free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number !!! *INTERNET EXPLORERCUSTOMER SERVICE Phone Number!!! INTERNET EXPLORERPhone Number INTERNET EXPLORERtelePhone Number!!1-800-863-0840 INTERNET EXPLORERPhone Number!!!Tech Support Phone Number INTERNET EXPLORERtoll free Phone NumberPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe hereDescribe toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number heretoll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number?? INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Number INTERNET EXPLORERsecurity Phone Number INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERsymantec Phone Number INTERNET EXPLORERPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERTechnical Support Phone Number INTERNET EXPLORERPhone Numbers INTERNET EXPLORERHelp Phone Number INTERNET EXPLORERSupport Phone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Support INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERinternet security Phone Number INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERPhone INTERNET EXPLORER1855 Phone Number Phone Number for INTERNET EXPLORERPhone Numbers INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERCUSTOMER Support Phone Number find a Phone Number INTERNET EXPLORERUSA Phone Number USA Phone Number Phone Number for INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERPhone Support free Phone Numbers Phone Number INTERNET EXPLORERPhone Number get human find Phone Number Phone Number for INTERNET EXPLORERsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERPhone Number for Support INTERNET EXPLORERcontact Number Phone Number for INTERNET EXPLORERUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber INTERNET EXPLORER1855 Number INTERNET EXPLORERdownloads INTERNET EXPLORERfree trial INTERNET EXPLORERinternet security 2012 INTERNET EXPLORERcancellation Phone Number INTERNET EXPLORERupdates Phone book Phone Numbers in USA telePhone Number INTERNET EXPLORERHelpline Number Phone directory contact INTERNET EXPLORERby Phone INTERNET EXPLORERsubscription INTERNET EXPLORERghost download INTERNET EXPLORERcom Support Phone Number INTERNET EXPLORERcontact INTERNET EXPLORERcontact Number Technical Support Phone Number INTERNET EXPLORERPhone INTERNET EXPLORERfree INTERNET EXPLORERSupport toll free INTERNET EXPLORERPhone Number 1-800-863-0840 free free USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number Internet explorerTechnical Support phone number USA 1-800-863-0840 Internet explorerCustomer Support Phone number USA Internet explorerHelp Desk phone number Internet explorerTech Support Phone Number USA 1-800-863-0840INTERNET EXPLORERTechnical Support Phone Number usa INTERNET EXPLORERPhone Number 1-800-863-0840 USA INTERNET EXPLORERTech Support Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Internet explorerTech Support Number, Wireless Internet explorerCUSTOMER SERVICE Number, Internet explorerSupport Number,INTERNET EXPLORERPhone Number Internet explorerCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number here1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTechnical Support Number INTERNET EXPLORERHelpdesk Number INTERNET EXPLORERHelpdesk Phone Number INTERNET EXPLORERHelpline Number,INTERNET EXPLORERPhone Number USA ,1-800-863-0840INTERNET EXPLORERPhone Number INTERNET EXPLORERTech Support Phone Number Helpline tollfree !! 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number !! INTERNET EXPLORERinstall Tech Support Phone Number free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number !!! *INTERNET EXPLORERCUSTOMER SERVICE Phone Number!!! INTERNET EXPLORERPhone Number INTERNET EXPLORERtelePhone Number!!1-800-863-0840 INTERNET EXPLORERPhone Number!!!Tech Support Phone Number INTERNET EXPLORERtoll free Phone NumberPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe hereDescribe toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number heretoll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number?? INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Number INTERNET EXPLORERsecurity Phone Number INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERsymantec Phone Number INTERNET EXPLORERPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERTechnical Support Phone Number INTERNET EXPLORERPhone Numbers INTERNET EXPLORERHelp Phone Number INTERNET EXPLORERSupport Phone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Support INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERinternet security Phone Number INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERPhone INTERNET EXPLORER1800 Phone Number Phone Number for INTERNET EXPLORERPhone Numbers INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERCUSTOMER Support Phone Number find a Phone Number INTERNET EXPLORERUSA Phone Number USA Phone Number Phone Number for INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERPhone Support free Phone Numbers Phone Number INTERNET EXPLORERPhone Number get human find Phone Number Phone Number for INTERNET EXPLORERsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERPhone Number for Support INTERNET EXPLORERcontact Number Phone Number for INTERNET EXPLORERUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber INTERNET EXPLORER1800 Number INTERNET EXPLORERdownloads INTERNET EXPLORERfree trial INTERNET EXPLORERinternet security 2012 INTERNET EXPLORERcancellation Phone Number INTERNET EXPLORERupdates Phone book Phone Numbers in USA telePhone Number INTERNET EXPLORERHelpline Number Phone directory contact INTERNET EXPLORERby Phone INTERNET EXPLORERsubscription INTERNET EXPLORERghost download INTERNET EXPLORERcom Support Phone Number INTERNET EXPLORERcontact INTERNET EXPLORERcontact Number Technical Support Phone Number INTERNET EXPLORERPhone INTERNET EXPLORERfree INTERNET EXPLORERSupport toll free INTERNET EXPLORERPhone Number 1-800-863-0840 free free USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 10:14:31 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 10:14:31 -0000 Subject: [GHC] #11856: [SuPPORT]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number In-Reply-To: <052.35cc376e0d83e99dffe8de68a6500bee@haskell.org> References: <052.35cc376e0d83e99dffe8de68a6500bee@haskell.org> Message-ID: <067.652d0258a21531238df79acecb330048@haskell.org> #11856: [SuPPORT]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji1): * Attachment "saini1.docx" added. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 10:17:16 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 10:17:16 -0000 Subject: [GHC] #11857: SuPpOrT UK & AUS<:::((uk l*800*863*0840* aus 1800769903))!!@uk Gmail technical suppOrt phOne number uk Gmailtech suppOrt phOne number Message-ID: <052.78e83b144e232437bb5ac3b62b93a37e@haskell.org> #11857: SuPpOrT UK & AUS<:::((uk l*800*863*0840* aus 1800769903))!!@uk Gmail technical suppOrt phOne number uk Gmailtech suppOrt phOne number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- TLK UK & AUS<:::((uk l*800*863*0840* aus 1800769903))!!@uk Gmail technical suppOrt phOne number uk Gmailtech suppOrt phOne number UK & AUS UST<::: /@!!((uk l*800*863*0840* aus 1800769903))!!@uk GmailsuppOrt phOne number uk Gmailtech suppOrt phOne number UK & AUS UST<::: /@!!((uk l*800*863*0840* aus 1800769903))!!@uk GmailsuppOrt phOne number uk Gmailtech suppOrt phOne number UK & AUS uk GmailcustOmer service @@@@@l8008630840 @@*@@@@*uk GmailsuppOrt phOne number uk Gmailtech suppOrt phOne number UK & AUS JUST<::: /@!!!!((uk l*800*863*0840* aus 1800769903))!!@uk GmailsuppOrt phOne number uk Gmailtech suppOrt phOne number UK & AUS uk GmailcustOmer service@@!!((*l*800*863.0840*))!!@@uk GmailsuppOrt phOne number uk Gmailtech suppOrt phOne number UK & AUS, uk Gmailtechnical suppOrt phOne number uk GmailcustOmer suppOrt phOne number uk GmailphOne number uk GmailcustOmer care phOne number uk GmailcustOmer care number uk GmailtOll free phOne number uk GmailsuppOrt uk HP suppOrt uk HP printers suppOrt uk HP custOmer service uk Gmailhelp uk HP tech suppOrt uk GmailcustOmer service uk Gmailtech suppOrt uk HP technical suppOrt uk GmailtrOubleshOOting uk HP printers trOubleshOOting uk HP internatiOnal uk HPs printer suppOrt uk HP custOmer suppOrt uk Gmailtechnical suppOrt uk Gmailrepair uk Gmailhelpline uk HP printers custOmer service uk HP service center uk HPs printers suppOrt uk HP helpline uk HP custOmer service phOne number install uk Gmailuk HP printers tech suppOrt uk GmailsuppOrt number uk GmailcustOmer suppOrt uk GmailcOntact number uk GmailprOblems uk HP printers help uk Gmailservice uk Gmailservice center uk GmailcOntact uk HP custOmer service number uk HP printers helpline uk HP suppOrt number uk Gmailrepairs uk Gmailscanner uk HP printers phOne number uk HP printers custOmer suppOrt uk HP suppOrt center uk HP tech suppOrt phOne number uk HPs printers custOmer service uk GmailcustOmer service number uk HP printers technical suppOrt uk Gmailhelpline number uk HP suppOrt phOne number uk HP suppOrt printer uk HP technical suppOrt number uk HP printers cOntact trOubleshOOting uk Gmailuk GmailphOne suppOrt uk HP printers suppOrt phOne number trOubleshOOt uk Gmailuk HP printers cOntact number uk HPs custOmer service uk Gmailnumber uk HP phOne suppOrt uk HP trOubleshOOting uk GmailcustOmer care uk Gmailhelp desk drivers fOr uk HP printers uk HP technical suppOrt phOne number uk HP custOmer service phOne cOntact uk HP printers uk GmailcustOmer care number uk HP help desk uk HP Online suppOrt uk HP custOmer suppOrt phOne number uk HPs printer custOmer service uk Gmailmfc uk HP printers tech suppOrt phOne number uk HP service uk HPs tech suppOrt uk HP printers custOmer service phOne number uk Gmailinstall uk HP laser printers uk HPs printers suppOrt uk Gmailuk Gmailservice centre uk Gmailupdates uk HP inkjet printer cOntact uk HP suppOrt uk HP tech suppOrt phOne uk HP lc61 uk HPs printers tech suppOrt printers Online cOntact uk Gmailuk HPs printer uk HP label printer uk HP custOmer suppOrt phOne uk HP printers custOmer suppOrt number uk HP suppOrt centre uk HP laser printer uk GmailcustOmer service suppOrt uk HP wireless printer setup buy uk GmailOnline uk Gmailtech suppOrt number uk HP netwOrk printer uk HP printers custOmer service number custOmer service fOr uk HP printers uk HP service centre uk HP wireless printer uk HP printers uk HP custOmer care uk GmailOnline suppOrt uk GmailtOll free number phOne number fOr uk HP printers uk GmailinstallatiOn uk HP printers help desk uk GmailsuppOrt phOne service uk HP uk HP mfc uk GmailcustOmer suppOrt number uk HP printers technical suppOrt phOne number uk GmailhOtline cOntact number fOr uk HP printers uk Gmailuk HP.cOm suppOrt cOntact uk GmailsuppOrt uk GmailtrOubleshOOt uk HP telephOne suppOrt uk HP printers custOmer suppOrt phOne number uk Gmailhelp phOne number uk HP custOmer service telephOne number uk Gmailtech suppOrt phOne uk HP.ca suppOrt uk GmailOnline uk HP multifunctiOn printer printer suppOrt uk Gmailhelp uk HP mfc printer technical suppOrt fOr uk HP printers uk HP tech suppOrt number email suppOrt uk HP printers suppOrt phOne mfc uk HP uk HP hl227Odw uk HP printers website uk GmailsuppOrt uk HP printers repair repair uk Gmailuk HP printers suppOrt uk HP helpline number uk HP scanner printer uk HP printers service uk HP printers custOmer service telephOne number uk GmailphOne number custOmer service uk HP printers review www.uk HP.cOm suppOrt fOr uk Gmailuk Gmailrepair service uk GmailphOne number fOr uk GmailsuppOrt uk Gmailwebsite uk HP printers custOmer service phOne uk GmailprOblems and sOlutiOns uk HPs printers custOmer service phOne number custOmer service uk GmailsOlutiOn uk HP uk HP fax suppOrt mfc uk Gmailuk GmailcustOmer service phOne uk Gmailhelp number uk HP mfc-846On drivers fOr uk HP printers uk HP technical suppOrt phOne number uk HP custOmer service phOne cOntact uk HP printers uk GmailcustOmer care number uk HP help desk uk HP Online suppOrt uk HP custOmer suppOrt phOne number uk HPs printer custOmer service uk Gmailmfc uk HP printers tech suppOrt phOne number uk HP service uk HPs tech suppOrt uk HP printers custOmer service phOne number uk Gmailinstall uk HP laser printers uk HPs printers suppOrt uk Gmailuk Gmailservice centre uk Gmailupdates uk HP inkjet printer cOntact uk HP suppOrt uk HP tech suppOrt phOne uk HP lc61 uk HPs printers tech suppOrt printers Online cOntact uk Gmailuk HPs printer uk HP label printer uk HP custOmer suppOrt phOne uk HP printers custOmer suppOrt number uk HP suppOrt centre uk HP laser printer uk GmailcustOmer service suppOrt uk HP wireless printer setup buy uk GmailOnline uk Gmailtech suppOrt number uk HP netwOrk printer uk HP printers custOmer service number custOmer service fOr uk HP printers uk HP service centre uk HP wireless printer uk HP printers uk HP custOmer care uk GmailOnline suppOrt uk GmailtOll free number phOne number fOr uk HP printers uk GmailinstallatiOn uk HP printers help desk uk GmailsuppOrt phOne service uk HP uk HP uk GmailcustOmer service/@!!((l*800*863.0840*))!!@uk GmailsuppOrt phOne number uk Gmailtech suppOrt phOne number UK & AUS -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 10:17:26 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 10:17:26 -0000 Subject: [GHC] #11857: SuPpOrT UK & AUS<:::((uk l*800*863*0840* aus 1800769903))!!@uk Gmail technical suppOrt phOne number uk Gmailtech suppOrt phOne number In-Reply-To: <052.78e83b144e232437bb5ac3b62b93a37e@haskell.org> References: <052.78e83b144e232437bb5ac3b62b93a37e@haskell.org> Message-ID: <067.91186d0c106e63ce8551ee161a83aadd@haskell.org> #11857: SuPpOrT UK & AUS<:::((uk l*800*863*0840* aus 1800769903))!!@uk Gmail technical suppOrt phOne number uk Gmailtech suppOrt phOne number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji1): * Attachment "saini1.docx" added. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 10:20:17 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 10:20:17 -0000 Subject: [GHC] #11858: ((BoUsE ))Call @@@@@@@@USA1 1800-863-0840 Internet explorer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a. Message-ID: <052.87d4ea6d6bf6d6a0fcabd7f1bf775203@haskell.org> #11858: ((BoUsE ))Call @@@@@@@@USA1 1800-863-0840 Internet explorer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a. -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- 1800-863-0840 Call @@@@@@@@USA1 1800-863-0840 Kindlet.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l INTERNET EXPLORERh.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a INTERNET EXPLORERs.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa Dial 1800-863-0840 Kindlet.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l INTERNET EXPLORERh.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a INTERNET EXPLORERs.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada USA 1 18444612828 Kindlet.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l INTERNET EXPLORERh.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a INTERNET EXPLORERs.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1844-461-2828 USA, INTERNET EXPLORERprinter Tech Support phone number,INTERNET EXPLORERtechnical support phone number 1 18444612828.INTERNET EXPLORERTech Support Number INTERNET EXPLORERTech INTERNET EXPLORERtech support, INTERNET EXPLORERtech support number, INTERNET EXPLORERtech support phone number, INTERNET EXPLORERtechnical support, INTERNET EXPLORERtechnical support number, INTERNET EXPLORERtechnical support phone number, INTERNET EXPLORERtech support number, INTERNET EXPLORERsupport number, INTERNET EXPLORERTech support phone number, INTERNET EXPLORERsupport phone number, INTERNET EXPLORERtechnical support phone number, INTERNET EXPLORERtechnical support number,S1800-863-0840 upport Phone Number for INTERNET EXPLORERprinter Phone Number for INTERNET EXPLORERCustomerService Technical Support Telephone Number INTERNET EXPLORERprinter support number INTERNET EXPLORERINTERNET EXPLORERprinter tech support number INTERNET EXPLORERINTERNET EXPLORERprinter technical support number INTERNET EXPLORERINTERNET EXPLORERprinter technical support phone number INTERNET EXPLORERINTERNET EXPLORERprinter customer service number INTERNET EXPLORERINTERNET EXPLORERinternet security technical support INTERNET EXPLORERtechnical support phone number INTERNET EXPLORERINTERNET EXPLORERtech support phone number INTERNET EXPLORERINTERNET EXPLORERcustomer support phone number I-8OO-461-786O INTERNET EXPLORERINTERNET EXPLORERprinter support phone number INTERNET EXPLORERINTERNET EXPLORERsupport phone INTERNET EXPLORERtech support INTERNET EXPLORERcustomer support INTERNET EXPLORERphone support INTERNET EXPLORERsupport number INTERNET EXPLORERINTERNET EXPLORERtechnical support INTERNET EXPLORERprinter customer support phone number INTERNET EXPLORERINTERNET EXPLORERprinter tech support phone number INTERNET EXPLORERcontact INTERNET EXPLORERsupport INTERNET EXPLORERprinter technical support phone number ~!~18444612828++ INTERNET EXPLORERINTERNET EXPLORERphone number INTERNET EXPLORERtech support INTERNET EXPLORERsupport ticket INTERNET EXPLORERcustomer support number INTERNET EXPLORERINTERNET EXPLORERtech support number INTERNET EXPLORERINTERNET EXPLORERtechnical support number INTERNET EXPLORERINTERNET EXPLORERsupport center INTERNET EXPLORERtelephone support call INTERNET EXPLORERsupport INTERNET EXPLORERprinter support support INTERNET EXPLORERINTERNET EXPLORERbilling support INTERNET EXPLORERprinter technical support number INTERNET EXPLORERsupport INTERNET EXPLORERprinter INTERNET EXPLORERonline support INTERNET EXPLORERcontact support INTERNET EXPLORERprinter support number INTERNET EXPLORERINTERNET EXPLORERprinter customer support number INTERNET EXPLORERINTERNET EXPLORERprinter tech support number INTERNET EXPLORERsupport for INTERNET EXPLORERINTERNET EXPLORERphone number INTERNET EXPLORERINTERNET EXPLORERcustomer service phone number INTERNET EXPLORERINTERNET EXPLORERcontact phone number INTERNET EXPLORERINTERNET EXPLORERprinter phone number INTERNET EXPLORERINTERNET EXPLORERprinter customer service phone number INTERNET EXPLORERphone number INTERNET EXPLORERfor INTERNET EXPLORERcustomer service INTERNET EXPLORERsoftware phone number INTERNET EXPLORERphone number INTERNET EXPLORERfor INTERNET EXPLORERINTERNET EXPLORERcustomer service telephone number INTERNET EXPLORERINTERNET EXPLORERhelpline phone number INTERNET EXPLORERINTERNET EXPLORERcontact number INTERNET EXPLORERINTERNET EXPLORERcustomer service number INTERNET EXPLORERINTERNET EXPLORERcustomer service phone number ~!~18444612828++ INTERNET EXPLORERus INTERNET EXPLORERcustomer service phone number INTERNET EXPLORERusa INTERNET EXPLORERtelephone number INTERNET EXPLORERINTERNET EXPLORERphone number INTERNET EXPLORERusa INTERNET EXPLORERprinter contact number INTERNET EXPLORERINTERNET EXPLORERnumber INTERNET EXPLORERINTERNET EXPLORERcontact number INTERNET EXPLORERusa INTERNET EXPLORERprinter helpline number INTERNET EXPLORERINTERNET EXPLORERhelpline number INTERNET EXPLORERINTERNET EXPLORERcustomer number INTERNET EXPLORERINTERNET EXPLORERprinter customer service number INTERNET EXPLORERINTERNET EXPLORERcontact telephone number INTERNET EXPLORERcontact number INTERNET EXPLORERfor INTERNET EXPLORERINTERNET EXPLORERsoftware contact number INTERNET EXPLORERINTERNET EXPLORERtoll free number INTERNET EXPLORERINTERNET EXPLORERtelephone number INTERNET EXPLORERuk INTERNET EXPLORERregistration number INTERNET EXPLORERINTERNET EXPLORERtoll free number INTERNET EXPLORERusa INTERNET EXPLORERcustomer service INTERNET EXPLORERsoftware customer service contact INTERNET EXPLORERcustomer service INTERNET EXPLORERcustomer service phone INTERNET EXPLORERprinter customer service INTERNET EXPLORERservice INTERNET EXPLORERprinter technical support INTERNET EXPLORERprinter customer support INTERNET EXPLORERtechnical support reviews telephone INTERNET EXPLORERprinter INTERNET EXPLORERtech support phone number INTERNET EXPLORERINTERNET EXPLORERprinter tech support phone number INTERNET EXPLORERINTERNET EXPLORERprinter customer service INTERNET EXPLORERtechnical support phone number INTERNET EXPLORERINTERNET EXPLORERprinter free printer support INTERNET EXPLORERcustomer service billing INTERNET EXPLORERcustomer service email address INTERNET EXPLORERcustomer service reviews contact INTERNET EXPLORERcustomer service INTERNET EXPLORERtech support number INTERNET EXPLORERusa INTERNET EXPLORERprinter support number INTERNET EXPLORERINTERNET EXPLORERprinter contact number INTERNET EXPLORERINTERNET EXPLORERcustomer service phone number INTERNET EXPLORERINTERNET EXPLORERtechnical support usa INTERNET EXPLORERtechnical support number INTERNET EXPLORERINTERNET EXPLORERtech support phone INTERNET EXPLORERtech support number INTERNET EXPLORERINTERNET EXPLORERcustomer service telephone number INTERNET EXPLORERINTERNET EXPLORERprinter customer support number INTERNET EXPLORERINTERNET EXPLORERprinter phone number INTERNET EXPLORERINTERNET EXPLORERprinter online support INTERNET EXPLORERcustomer service number INTERNET EXPLORERINTERNET EXPLORERtech support center INTERNET EXPLORERcustomer service INTERNET EXPLORERsoftware customer service INTERNET EXPLORERcustomer care number INTERNET EXPLORERusa INTERNET EXPLORERcustomer number INTERNET EXPLORERINTERNET EXPLORERcustomer support number INTERNET EXPLORERINTERNET EXPLORERcustomer care number INTERNET EXPLORERINTERNET EXPLORERcustomer care toll free number INTERNET EXPLORERINTERNET EXPLORERtech support INTERNET EXPLORERtechnical support INTERNET EXPLORERprinter support INTERNET EXPLORERprinter tech support INTERNET EXPLORERsupport center KINDLE.com customer service INTERNET EXPLORERprinter customer care number INTERNET EXPLORERINTERNET EXPLORERcustomer care INTERNET EXPLORERphone number INTERNET EXPLORERphone number INTERNET EXPLORERfor INTERNET EXPLORERcustomer service INTERNET EXPLORERphone support INTERNET EXPLORERphone number INTERNET EXPLORERtech support INTERNET EXPLORERsupport phone number INTERNET EXPLORERcontact INTERNET EXPLORERby phone INTERNET EXPLORERcontact phone number INTERNET EXPLORERINTERNET EXPLORERhelpline phone number INTERNET EXPLORERINTERNET EXPLORERprinter phone INTERNET EXPLORERprinter for phone INTERNET EXPLORERcontact number INTERNET EXPLORERINTERNET EXPLORERcontact support contac -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 10:20:22 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 10:20:22 -0000 Subject: [GHC] #11858: ((BoUsE ))Call @@@@@@@@USA1 1800-863-0840 Internet explorer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a. In-Reply-To: <052.87d4ea6d6bf6d6a0fcabd7f1bf775203@haskell.org> References: <052.87d4ea6d6bf6d6a0fcabd7f1bf775203@haskell.org> Message-ID: <067.ebe9849bd4e2b228eaada66d380aac4c@haskell.org> #11858: ((BoUsE ))Call @@@@@@@@USA1 1800-863-0840 Internet explorer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a. -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji1): * Attachment "saini1.docx" added. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 10:29:30 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 10:29:30 -0000 Subject: [GHC] #11855: [MeEnU]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number In-Reply-To: <052.3bf4a8dcd6f989849c3549576d0f5d75@haskell.org> References: <052.3bf4a8dcd6f989849c3549576d0f5d75@haskell.org> Message-ID: <067.79bd9fcedc9d08816aba0c434c77681c@haskell.org> #11855: [MeEnU]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji1): * Attachment "saini1.docx" removed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 10:42:10 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 10:42:10 -0000 Subject: [GHC] #11859: [SanJaNa]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number Message-ID: <053.4f2e664a7b1065f3a64fa582a5817bb0@haskell.org> #11859: [SanJaNa]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number -------------------------------------+------------------------------------- Reporter: | Owner: kumarinehaji12 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Internet explorerTechnical Support phone number USA 1-800-863-0840 Internet explorerCustomer Support Phone number USA 1-800-863-0840 Internet explorerHelp Desk phone number 1-800-863-0840 Internet explorerTech Support Phone Number USA 1-800-863-0840 INTERNET EXPLORERTechnical Support Phone Number usa INTERNET EXPLORERPhone Number 1-800-863-0840 USA INTERNET EXPLORERTech Support Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Internet explorerTech Support Number, Wireless Internet explorerCUSTOMER SERVICE Number, Internet explorerSupport Number,INTERNET EXPLORERPhone Number Internet explorerCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number here1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTechnical Support Number INTERNET EXPLORERHelpdesk Number INTERNET EXPLORERHelpdesk Phone Number INTERNET EXPLORERHelpline Number,INTERNET EXPLORERPhone Number USA ,1-800-863-0840INTERNET EXPLORERPhone Number INTERNET EXPLORERTech Support Phone Number Helpline tollfree !! 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number !! INTERNET EXPLORERinstall Tech Support Phone Number free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number !!! *INTERNET EXPLORERCUSTOMER SERVICE Phone Number!!! INTERNET EXPLORERPhone Number INTERNET EXPLORERtelePhone Number!!1-800-863-0840 INTERNET EXPLORERPhone Number!!!Tech Support Phone Number INTERNET EXPLORERtoll free Phone NumberPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe hereDescribe toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number heretoll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number?? INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Number INTERNET EXPLORERsecurity Phone Number INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERsymantec Phone Number INTERNET EXPLORERPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERTechnical Support Phone Number INTERNET EXPLORERPhone Numbers INTERNET EXPLORERHelp Phone Number INTERNET EXPLORERSupport Phone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Support INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERinternet security Phone Number INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERPhone INTERNET EXPLORER1800 Phone Number Phone Number for INTERNET EXPLORERPhone Numbers INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERCUSTOMER Support Phone Number find a Phone Number INTERNET EXPLORERUSA Phone Number USA Phone Number Phone Number for INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERPhone Support free Phone Numbers Phone Number INTERNET EXPLORERPhone Number get human find Phone Number Phone Number for INTERNET EXPLORERsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERPhone Number for Support INTERNET EXPLORERcontact Number Phone Number for INTERNET EXPLORERUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber INTERNET EXPLORER1800 Number INTERNET EXPLORERdownloads INTERNET EXPLORERfree trial INTERNET EXPLORERinternet security 2012 INTERNET EXPLORERcancellation Phone Number INTERNET EXPLORERupdates Phone book Phone Numbers in USA telePhone Number INTERNET EXPLORERHelpline Number Phone directory contact INTERNET EXPLORERby Phone INTERNET EXPLORERsubscription INTERNET EXPLORERghost download INTERNET EXPLORERcom Support Phone Number INTERNET EXPLORERcontact INTERNET EXPLORERcontact Number Technical Support Phone Number INTERNET EXPLORERPhone INTERNET EXPLORERfree INTERNET EXPLORERSupport toll free INTERNET EXPLORERPhone Number 1-800-863-0840 free free USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number Used 1-800-863-0840 Internet explorerTech Support Number USA Internet explorerHelp Desk Number USA thats 1-800-863-0840 Internet explorerTech Support Number USA Internet explorerHelp Desk Number USA Internet explorerTechnical Support phone number USA 1-800-863-0840 Internet explorerCustomer Support Phone number USA Internet explorerHelp Desk phone number Internet explorerTech Support Phone Number USA 1-800-863-0840INTERNET EXPLORERTechnical Support Phone Number usa INTERNET EXPLORERPhone Number 1-800-863-0840 USA INTERNET EXPLORERTech Support Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Internet explorerTech Support Number, Wireless Internet explorerCUSTOMER SERVICE Number, Internet explorerSupport Number,INTERNET EXPLORERPhone Number Internet explorerCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number here1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTechnical Support Number INTERNET EXPLORERHelpdesk Number INTERNET EXPLORERHelpdesk Phone Number INTERNET EXPLORERHelpline Number,INTERNET EXPLORERPhone Number USA ,1-800-863-0840INTERNET EXPLORERPhone Number INTERNET EXPLORERTech Support Phone Number Helpline tollfree !! 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number !! INTERNET EXPLORERinstall Tech Support Phone Number free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number !!! *INTERNET EXPLORERCUSTOMER SERVICE Phone Number!!! INTERNET EXPLORERPhone Number INTERNET EXPLORERtelePhone Number!!1-800-863-0840 INTERNET EXPLORERPhone Number!!!Tech Support Phone Number INTERNET EXPLORERtoll free Phone NumberPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe hereDescribe toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number heretoll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number?? INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Number INTERNET EXPLORERsecurity Phone Number INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERsymantec Phone Number INTERNET EXPLORERPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERTechnical Support Phone Number INTERNET EXPLORERPhone Numbers INTERNET EXPLORERHelp Phone Number INTERNET EXPLORERSupport Phone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Support INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERinternet security Phone Number INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERPhone INTERNET EXPLORER1855 Phone Number Phone Number for INTERNET EXPLORERPhone Numbers INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERCUSTOMER Support Phone Number find a Phone Number INTERNET EXPLORERUSA Phone Number USA Phone Number Phone Number for INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERPhone Support free Phone Numbers Phone Number INTERNET EXPLORERPhone Number get human find Phone Number Phone Number for INTERNET EXPLORERsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERPhone Number for Support INTERNET EXPLORERcontact Number Phone Number for INTERNET EXPLORERUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber INTERNET EXPLORER1855 Number INTERNET EXPLORERdownloads INTERNET EXPLORERfree trial INTERNET EXPLORERinternet security 2012 INTERNET EXPLORERcancellation Phone Number INTERNET EXPLORERupdates Phone book Phone Numbers in USA telePhone Number INTERNET EXPLORERHelpline Number Phone directory contact INTERNET EXPLORERby Phone INTERNET EXPLORERsubscription INTERNET EXPLORERghost download INTERNET EXPLORERcom Support Phone Number INTERNET EXPLORERcontact INTERNET EXPLORERcontact Number Technical Support Phone Number INTERNET EXPLORERPhone INTERNET EXPLORERfree INTERNET EXPLORERSupport toll free INTERNET EXPLORERPhone Number 1-800-863-0840 free free USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number Internet explorerTechnical Support phone number USA 1-800-863-0840 Internet explorerCustomer Support Phone number USA Internet explorerHelp Desk phone number Internet explorerTech Support Phone Number USA 1-800-863-0840INTERNET EXPLORERTechnical Support Phone Number usa INTERNET EXPLORERPhone Number 1-800-863-0840 USA INTERNET EXPLORERTech Support Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number JUSTs Call USA 1-800-863-0840Internet explorerTech Support Number, Wireless Internet explorerCUSTOMER SERVICE Number, Internet explorerSupport Number,INTERNET EXPLORERPhone Number Internet explorerCUSTOMER Phone Number Helpline Number,USA 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number here1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTechnical Support Number INTERNET EXPLORERHelpdesk Number INTERNET EXPLORERHelpdesk Phone Number INTERNET EXPLORERHelpline Number,INTERNET EXPLORERPhone Number USA ,1-800-863-0840INTERNET EXPLORERPhone Number INTERNET EXPLORERTech Support Phone Number Helpline tollfree !! 1-800-863-0840 INTERNET EXPLORERTech Support Phone Number !! INTERNET EXPLORERinstall Tech Support Phone Number free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number !!! *INTERNET EXPLORERCUSTOMER SERVICE Phone Number!!! INTERNET EXPLORERPhone Number INTERNET EXPLORERtelePhone Number!!1-800-863-0840 INTERNET EXPLORERPhone Number!!!Tech Support Phone Number INTERNET EXPLORERtoll free Phone NumberPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe hereDescribe toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number heretoll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? This article is in need of a Technical review This article is in need of an editorial review INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERPhone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERSERVICE Support Number?? INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERSupport Phone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number, INTERNET EXPLORERCUSTOMER Support Number?? INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Number INTERNET EXPLORERsecurity Phone Number INTERNET EXPLORERPhone Number $ 1-800-863-0840 $INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERsymantec Phone Number INTERNET EXPLORERPhone Number CUSTOMER SERVICE $ 1-800-863-0840 $INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERTechnical Support Phone Number INTERNET EXPLORERPhone Numbers INTERNET EXPLORERHelp Phone Number INTERNET EXPLORERSupport Phone Number $ 1-800-863-0840 $INTERNET EXPLORERPhone Support INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERinternet security Phone Number INTERNET EXPLORERSupport Phone Number INTERNET EXPLORERPhone INTERNET EXPLORER1800 Phone Number Phone Number for INTERNET EXPLORERPhone Numbers INTERNET EXPLORERCUSTOMER SERVICE Phone Number INTERNET EXPLORERCUSTOMER Support Phone Number find a Phone Number INTERNET EXPLORERUSA Phone Number USA Phone Number Phone Number for INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERPhone Support free Phone Numbers Phone Number INTERNET EXPLORERPhone Number get human find Phone Number Phone Number for INTERNET EXPLORERsecurity us Phone Number Phone Number USA $ 1-800-863-0840 $INTERNET EXPLORERcontact Phone Number INTERNET EXPLORERPhone Number for Support INTERNET EXPLORERcontact Number Phone Number for INTERNET EXPLORERUSA Phone Numbers Phone Number search us Phone Numbers find Phone Numbers Nortoumber INTERNET EXPLORER1800 Number INTERNET EXPLORERdownloads INTERNET EXPLORERfree trial INTERNET EXPLORERinternet security 2012 INTERNET EXPLORERcancellation Phone Number INTERNET EXPLORERupdates Phone book Phone Numbers in USA telePhone Number INTERNET EXPLORERHelpline Number Phone directory contact INTERNET EXPLORERby Phone INTERNET EXPLORERsubscription INTERNET EXPLORERghost download INTERNET EXPLORERcom Support Phone Number INTERNET EXPLORERcontact INTERNET EXPLORERcontact Number Technical Support Phone Number INTERNET EXPLORERPhone INTERNET EXPLORERfree INTERNET EXPLORERSupport toll free INTERNET EXPLORERPhone Number 1-800-863-0840 free free USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Number toll free INTERNET EXPLORERPhone Number 1-800-863-0840 USA , INTERNET EXPLORERSupport Phone Number, INTERNET EXPLORERTechnical Support Phone Numbe last edited 20160228 free USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Numberfree USA !!1-800-863-0840 INTERNET EXPLORERTech Support Phone Number INTERNET EXPLORERCUSTOMER SERVICE Phone Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 10:42:18 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 10:42:18 -0000 Subject: [GHC] #11859: [SanJaNa]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number In-Reply-To: <053.4f2e664a7b1065f3a64fa582a5817bb0@haskell.org> References: <053.4f2e664a7b1065f3a64fa582a5817bb0@haskell.org> Message-ID: <068.9b6af9c5b7de456b2fe36872898ed50a@haskell.org> #11859: [SanJaNa]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji12 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji12): * Attachment "sachin.xlsx" added. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 10:55:28 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 10:55:28 -0000 Subject: [GHC] #11860: ((18552337309)) USAe Gmail Customer Service Phone Number Message-ID: <046.bdef537f771d3b51fde3726a41a804b0@haskell.org> #11860: ((18552337309)) USAe Gmail Customer Service Phone Number -------------------------------------+------------------------------------- Reporter: leodeca | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- ((18552337309)) Gmail Customer Service Phone Number ((18552337309)) gmail Customer Service Phone Number ((18552337309)) gmail Customer Service Phone Number Gmail customer support ((18552337309)) gmail Customer Service Phone Number ((18552337309)) gmail Customer Service Phone Number ((18552337309)) gmail Customer Service Phone Number ((18552337309)) gmail Customer Service Phone Number ((18552337309)) gmail Customer Service Phone Number ((18552337309)) gmail Customer Service Phone Number <<<>>>>>>>>>>>>>>>((18552337309)) gmail Customer Service Phone Number >>>>> Gmail customer support number Gmail customer support phone number Gmail customer support contact number Gmail customer support helpline number Gmail customer support help Gmail customer support help desk number Gmail customer support telelphone number Gmail customer support mobile number Gmail customer support landline number Gmail customer support toll free number Gmail customer support 24/7 hours number Gmail customer support contact details Gmail customer support contact info Gmail customer support line Gmail customer support number USA Gmail customer support number Canada Gmail customer support representative Gmail customer support phone number USA Gmail customer support phone number USA Gmail customer support team Gmail customer support live support Gmail customer support assistance Gmail customer support assistance number Gmail customer support assistance contact number Gmail customer support assistance phone number Gmail customer support assistance helpline number Gmail customer support assitance help desk number Gmail csutomer support assistance 24/7 Gmail customer support online support Gmail.com customer support number Gmail Gmail customer support number Gmail customer support no. Gmail customer service Gmail customer service number Gmail customer service phone number Gmail customer service contact number Gmail customer service helpline number Gmail customer service help Gmail customer service help desk number Gmail customer service telelphone number Gmail customer service mobile number Gmail customer service landline number Gmail customer service toll free number Gmail customer service 24/7 hours number Gmail customer service contact details Gmail customer service contact info Gmail customer service line Gmail customer service number USA Gmail customer service number Canada Gmail customer service representative Gmail customer service phone number USA Gmail customer service phone number USA Gmail customer service team Gmail customer service live service Gmail customer service assistance Gmail customer service assistance number Gmail customer service assistance contact number Gmail customer service assistance phone number Gmail customer service assistance helpline number Gmail customer service assitance help desk number Gmail csutomer service assistance 24/7 Gmail customer service online service Gmail.com customer service number Gmail Gmail customer service number Gmail support number, Gmail support phone number, Gmail customer support number, Gmail Gmail support phone number Gmail email support phone number phone number for Gmail support Gmail customer support phone number Gmail customer service support phone number Gmail Gmail support number phone number for Gmail Gmail support Gmail support contact number Gmail phone number support Gmail email support number Gmail support number for customers contact Gmail support phone number phone number for Gmail customer support Gmail email support phone number contact number for Gmail support Gmail com support phone number number for Gmail support Gmail support phone number for Gmail contact phone number for Gmail Gmail support Gmail customer service support number Gmail email support contact number Gmail support number for Gmail Gmail support contact phone number Gmail phone support number Gmail account support number contact Gmail support number Gmail.com support number Gmail contact support number Gmail business support phone number Gmail support phone number Gmail Gmail support phone number usa Gmail support phone number us Gmail help phone number Gmail help number Gmail help contact number Gmail Gmail help phone number phone number for Gmail help Gmail Gmail help number Gmail help contact phone number Gmail help phone number Gmail Gmail help desk phone number Gmail email help phone number Gmail phone number help Gmail com help phone number Gmail help support phone number Gmail help support number Gmail.com help number phone number for help with Gmail Gmail contact number for help Gmail number for help phone number for Gmail Gmail help Gmail login help phone number Gmail password help phone number Gmail technical support Gmail technical support number Gmail technical support phone number technical support for Gmail contact Gmail technical support Gmail technical support email Gmail technical help technical support Gmail Gmail technical support contact number Gmail technical support phone Gmail Gmail technical support phone number phone number for Gmail technical support Gmail technical support contact number for Gmail technical support Gmail online technical support Gmail email technical support Gmail technical support email address Gmail customer service phone number Gmail customer service number customer service number for Gmail customer service phone number for Gmail phone number for Gmail customer service Gmail.com customer service phone number Gmail phone number customer service customer service for Gmail phone number Gmail contact number customer service Gmail email customer service phone number Gmail contact phone number customer service Gmail customer service contact number Gmail.com customer service number customer service Gmail phone number contact number for Gmail customer service contact Gmail customer service phone number Gmail customer service contact phone number phone number Gmail customer service phone number to Gmail customer service Gmail customer number number to Gmail customer service Gmail customer service phone number usa Gmail customer service number usa contact Gmail support Gmail support contact Gmail contact support contacting Gmail support contact Gmail customer support contact Gmail Gmail support contact Gmail for support contact for Gmail support contact Gmail support Gmail contact support Gmail support Gmail contact Gmail Gmail support contact how to contact Gmail support how to contact Gmail customer support Gmail support email email Gmail support Gmail help email Gmail email support Gmail email help Gmail support contact email contact Gmail support by email Gmail support email id Gmail help contact email Gmail email tech support contact Gmail support email Gmail help email id email Gmail help contact Gmail by email Gmail contact support email contacting Gmail support by email Gmail support email address Gmail help email address Gmail contact email email support Gmail help with Gmail email contact Gmail help email Gmail support email contact emailing Gmail support email for Gmail support Gmail email support contact support Gmail email Gmail complaint email id contact Gmail email how to contact Gmail support by email how to email Gmail support how to contact Gmail by email email address for Gmail support Gmail help email contact Gmail helpline Gmail helpline number Gmail helpline phone number Gmail helpline no Gmail account helpline helpline for Gmail Gmail helpline contact number Gmail helpline uk Gmail customer care number Gmail customer care Gmail customer care email id Gmail customer care email Gmail customer care phone number customer care Gmail Gmail customer care no Gmail account customer care number Gmail customer care mail id customer care for Gmail customer care number for Gmail account Gmail customer care contact number Gmail customer support Gmail customer service support customer support for Gmail customer support Gmail Gmail.com customer support Gmail help contact contact Gmail help Gmail contact help contact Gmail for help contacting Gmail help Gmail help contacts Gmail help contact us Gmail contacts help Gmail Gmail customer service Gmail Gmail customer service phone number Gmail Gmail customer service number Gmail customer service phone number Gmail Gmail mail customer support Gmail customer service phone number for Gmail Gmail mail customer service phone number Gmail customer service number for Gmail Gmail Gmail customer support Gmail Gmail phone number customer service Gmail customer service for Gmail Gmail Gmail customer support phone number Gmail customer service Gmail customer service phone number for Gmail Gmail Gmail customer service number Gmail customer service Gmail Gmail Gmail contact number contact number for Gmail Gmail Gmail contact number Gmail.com contact number Gmail contact number for Gmail Gmail contact numbers contact number for Gmail Gmail contact Gmail number Gmail contact number contact number Gmail Gmail contacts number Gmail contact number uk Gmail contact number usa www Gmail com contact number Gmail help desk Gmail help desk phone number phone number for Gmail help desk Gmail help desk number Gmail Gmail help desk phone number help desk Gmail contact Gmail help desk Gmail contact phone number contact Gmail by phone contact Gmail support by phone contact Gmail support phone contact Gmail phone number contact Gmail help by phone Gmail phone contact contact phone number for Gmail Gmail contact phone contact Gmail phone contact Gmail phone support contact Gmail.com by phone phone number to contact Gmail contact Gmail.com phone number Gmail contact number phone number Gmail phone number contacts how to contact Gmail by phone Gmail contact phone numbers phone contact Gmail phone contact on Gmail how can i contact Gmail by phone how to contact Gmail support by phone phone contact in Gmail Gmail support phone Gmail phone support phone support for Gmail Gmail customer support phone phone for Gmail support phone Gmail support call Gmail support call Gmail customer service call Gmail support phone number call Gmail help can i call Gmail support Gmail call number Gmail call phone call Gmail Gmail support call Gmail account Gmail calls Gmail customer service telephone number Gmail telephone number Gmail telephone support Gmail support telephone number Gmail help telephone number telephone number for Gmail customer service telephone number for Gmail Gmail customer support telephone number telephone number for Gmail support Gmail telephone number customer service Gmail.com telephone number Gmail Gmail telephone support Gmail contact telephone number Gmail telephone Gmail telephone contacts Gmail call center Gmail help center Gmail help center phone number phone number for Gmail help center Gmail call center number Gmail contact center Gmail help center contact no Gmail support center Gmail account help center Gmail help center contact Gmail help center email Gmail help center number Gmail service center call center Gmail Gmail complaint center Gmail Gmail support center Gmail complaints center Gmail Gmail help center Gmail Gmail phone number contact Gmail phone number Gmail mail phone number Gmail Gmail phone contact Gmail by phone for Gmail support phone number for Gmail Gmail contact Gmail Gmail support by phone Gmail Gmail phone support Gmail Gmail support phone contact Gmail Gmail phone number phone number to contact Gmail Gmail contact Gmail Gmail by phone Gmail customer service email Gmail customer support email contact Gmail customer service email Gmail email customer service Gmail customer support email id Gmail customer service email address how to contact Gmail customer support by email tech support phone number for Gmail Gmail Gmail account help phone number Gmail account help phone number Gmail account phone number phone number for Gmail account help Gmail account support phone number Gmail account customer service phone number help with Gmail account phone number phone number Gmail account phone number for Gmail account Gmail Gmail help Gmail help email Gmail email help contact contact Gmail Gmail help Gmail Gmail account help Gmail.com Gmail help Gmail help with Gmail contact Gmail for Gmail help Gmail help for Gmail help with Gmail Gmail Gmail account help Gmail Gmail customer service 800 number Gmail 800 number customer service Gmail 800 number 800 number for Gmail 800 number for Gmail support Gmail 1 800 number Gmail assistance Gmail assistance phone number Gmail assistance number phone number for Gmail assistance Gmail assistance contact Gmail account assistance assistance Gmail contact Gmail team contact Gmail support team Gmail team contact number Gmail support team email email Gmail support team phone number Gmail support team Gmail support team contacting Gmail support team Gmail team contact contacting Gmail team contact Gmail Gmail support team Gmail support team email id Gmail help team contact Gmail team email Gmail team email address contact Gmail customer service Gmail contact customer service Gmail customer service contact how to contact Gmail customer service Gmail account problems customer service Gmail problems customer service for Gmail problems Gmail problem Gmail email problems Gmail login problems Gmail sign in problems help with Gmail problems contact for Gmail problems Gmail account problems Gmail security problems is there a problem with Gmail how do i contact Gmail about a problem Gmail account support Gmail account help help with Gmail account Gmail account hacked need help with Gmail account help for Gmail account Gmail accounts help support Gmail account Gmail accounts hacked my Gmail account was hacked Gmail account customer service customer service number for Gmail account customer service for Gmail accounts customer service for Gmail account customer service Gmail account Gmail account customer service number Gmail customer service phone contact Gmail customer service by phone customer service for Gmail by phone Gmail service phone number Gmail phone service Gmail customer service live chat Gmail customer support live chat Gmail live support Gmail live support customer service Gmail live help Gmail forgot password recovery Gmail forgot password Gmail password forgot forgot password Gmail forgot password for Gmail forgot my Gmail account forgot Gmail password Gmail forgot my password Gmail login forgot password Gmail password recovery password recovery Gmail Gmail password help Gmail lost password recover Gmail password how do i recover my Gmail password how do i retrieve my Gmail password forgotten Gmail password recovering Gmail password Gmail password recover reset password Gmail reset my Gmail password Gmail reset password Gmail password reset how to reset Gmail password reset password for Gmail password reset Gmail Gmail account contact number contact Gmail account support Gmail account contact number Gmail account contact contact Gmail accounts Gmail account contact Gmail account help contact how can i contact Gmail about my Gmail account Gmail password change change my Gmail password how can i change my Gmail password change password Gmail change Gmail password how to change my Gmail password how to change your Gmail password change password on Gmail account changing my Gmail password Gmail mail help Gmail help mail id how do i contact Gmail how do i contact Gmail by phone how do i contact Gmail support how do i contact Gmail about my Gmail account how do i contact Gmail support directly how do i contact Gmail support Gmail not working my Gmail is not working Gmail is not working why is Gmail not working Gmail not responding Gmail support Gmail Gmail support support for Gmail tech support for Gmail Gmail online support support Gmail tech support Gmail Gmail.com tech support Gmail support services Gmail support Gmail online Gmail support support Gmail.com support Gmail Gmail Gmail support online Gmail support for Gmail Gmail mail support Gmail support mail id Gmail support forum Gmail user support Gmail help help with Gmail help Gmail Gmail help support Gmail online help Gmail login help help for Gmail Gmail help forum Gmail help hotline Gmail support help Gmail help and support need help with Gmail help on Gmail Gmail help centre help in Gmail www Gmail com help Gmail calendar help Gmail phone number phone number for Gmail Gmail phone help Gmail phone numbers Gmail.com phone number get a Gmail phone number Gmail help phone phone number Gmail Gmail troubleshooting phone number get Gmail phone number Gmail information phone number phone help for Gmail Gmail to phone number free Gmail phone number Gmail hotline phone number phone for Gmail Gmail by phone number Gmail phone no Gmail phone number free phone number to Gmail phone Gmail phone number for Gmail.com phone number in Gmail phone numbers Gmail phone number on Gmail contact Gmail contacting Gmail contact Gmail security how to contact Gmail Gmail contact us Gmail security contact contact for Gmail Gmail contact no Gmail contact info contact on Gmail Gmail contact Gmail contact information how can i contact Gmail customer service for Gmail customer service Gmail Gmail help customer service Gmail.com customer service Gmail customer services Gmail customer service help Gmail customer service 1800 Gmail number Gmail 1800 number Gmail service number Gmail hotline number number for Gmail 1800 number for Gmail Gmails number number to Gmail contact Gmail Gmail contacting Gmail how to contact Gmail contact Gmail contact Gmail regarding Gmail how can i contact Gmail Gmail contact us Gmail contact info contact Gmail about Gmail contact Gmail for Gmail Gmail contact Gmail contacting Gmail Gmail how to contact Gmail about Gmail how to contact Gmail Gmail Gmail customer service Gmail helpdesk install Gmail Gmail troubleshooting Gmail hotline Gmail hacked Gmail issues today Gmail issues Gmail service Gmail error Gmail questions Gmailhelp Gmail message Gmail down today Gmail issue Gmail install Gmail for organizations access my Gmail cannot access Gmail Gmailsupport Gmail installer trouble with Gmail Gmail for Gmail trouble troubleshooting Gmail g mail support Gmail slow Gmail blocked why is Gmail so slow Gmail customer support number Wynnewood Gmail customer support number Yarmout Gmail customer support number Young America Gmail customer support number Youngstown Gmail customer support number Yucca Valley Gmail customer support number Pennsylvania Gmail customer support number Nebraska Gmail customer support number Connecticut Gmail customer support number jefferson city Gmail customer support number McLean Gmail Tech Support Number Alabama AL Montgomery Birmingham Gmail Tech Support Number Alaska AK Juneau Anchorage Gmail Tech Support Number Arizona AZ Phoenix Gmail Tech Support Number Arkansas AR Little Rock Gmail Tech Support Number California CA Sacramento Los Angeles Gmail Tech Support Number Colorado CO Denver Gmail Tech Support Number Connecticut CT Hartford Bridgeport Gmail Tech Support Number Delaware DE Dover Wilmington Gmail Tech Support Number Florida FL Tallahassee Jacksonville Gmail Tech Support Number Georgia GA Atlanta Gmail Tech Support Number Hawaii HI Honolulu Gmail Tech Support Number Idaho ID Boise Gmail Tech Support Number Illinois IL Springfield Chicago Gmail Tech Support Number Indiana IN Indianapolis Gmail Tech Support Number Iowa IA Des Moines Gmail Tech Support Number Kentucky[D] KY Frankfort Louisville Gmail Tech Support Number Louisiana LA Baton Rouge New Orleans Gmail Tech Support Number Maine ME Augusta Portland Gmail Tech Support Number Maryland MD Annapolis Baltimore Gmail Tech Support Number Massachusetts[E] MA Boston Gmail Tech Support Number Michigan MI Lansing Detroit Gmail Tech Support Number Minnesota MN St. Paul Minneapolis Gmail Tech Support Number Mississippi MS Jackson Jackson Gmail Tech Support Number Missouri MO Jefferson City Kansas City Gmail Tech Support Number Montana MT Helena Billings Gmail Tech Support Number Nebraska NE Lincoln Omaha Gmail Tech Support Number Guam GU Hag?t?a[16 Gmail Tech Support Number Northern Mariana Islands[J] MP Saipan[1 Gmail Tech Support Number Puerto Rico[K] PR San Juan[18 Gmail Tech Support Number U.S. Virgin Islands VI Charlotte Amalie[19] Gmail Tech Support Number Nevada NV Carson City Las Vegas, , Gmail Tech Support Number Manchester, Gmail Tech Support Number New Jersey NJ Trenton Newark, Gmail Tech Support Number New Mexico NM Santa Fe Albuquerque, Gmail Tech Support Number New York NY Albany, Gmail Tech Support Number North Carolina NC Raleigh Charlotte, Gmail Tech Support Number North Dakota ND Bismarck Fargo, Gmail Tech Support Number Ohio OH Columbus , Gmail Tech Support Number Oklahoma OK Oklahoma City, Gmail Tech Support Number Oregon OR Salem Portland, Gmail Tech Support Number Pennsylvania[F] PA Harrisburg Philadelphia, Gmail Tech Support Number Rhode Island[G] RI Providence, Gmail Tech Support Number South Carolina SC Columbia Columbia, Gmail Tech Support Number South Dakota SD Pierre Sioux Falls, Gmail Tech Support Number Tennessee TN Nashville Memphis, Gmail Tech Support Number Texas TX Austin Houston Gmail Tech Support Number Nevada NV Carson City Las Vegas, , Gmail Tech Support Number Manchester, Gmail Tech Support Number New Jersey NJ Trenton Newark, Gmail Tech Support Number New Mexico NM Santa Fe Albuquerque, Gmail Tech Support Number New York NY Albany, Gmail Tech Support Number North Carolina NC Raleigh Charlotte, Gmail Tech Support Number North Dakota ND Bismarck Fargo, Gmail Tech Support Number Ohio OH Columbus , Gmail Tech Support Number Oklahoma OK Oklahoma City, Gmail Tech Support Number Oregon OR Salem Portland, Gmail Tech Support Number Pennsylvania[F] PA Harrisburg Philadelphia, Gmail Tech Support Number Rhode Island[G] RI Providence, Gmail Tech Support Number South Carolina SC Columbia Columbia, Gmail Tech Support Number South Dakota SD Pierre Sioux Falls, Gmail Tech Support Number Tennessee TN Nashville Memphis, Gmail Tech Support Number Texas TX Austin Houston Gmail Tech Support Number Utah UT Salt Lake City, Gmail Tech Support Number Vermont VT Montpelier Burlington, Gmail Tech Support Number Virginia[H] VA Richmond Virginia Beach, Gmail Tech Support Number Washington WA Olympia Seattle, Gmail Tech Support Number West Virginia WV Charleston , Gmail Tech Support Number Wisconsin WI Madison Milwaukee, Gmail Tech Support Number Wyoming WY Cheyenne , Gmail Tech Support Number American Samoa AS Pago -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 11:08:55 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 11:08:55 -0000 Subject: [GHC] #11861: ((18552337309)) AOL mail Customer Service Phone Number Message-ID: <046.0a1b199b8bef36b5804931708d65a929@haskell.org> #11861: ((18552337309)) AOL mail Customer Service Phone Number -------------------------------------+------------------------------------- Reporter: leodeca | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- AOL Mail customer support number Plymouth AOL Mail customer support number Jackson AOL Mail customer support number Ukaih AOL Mail customer support number Abington AOL Mail customer support number Adams AOL Mail customer support number Akron AOL Mail customer support number Alamogordo AOL Mail customer support number Albany AOL Mail customer support number Alex AOL Mail customer support number Alison park AOL Mail customer support number Alma AOL Mail customer support number Alva AOL Mail customer support number Amarillo AOL Mail customer support number Anchorage AOL Mail customer support number Anderson AOL Mail customer support number Angela AOL Mail customer support number Anjou AOL Mail customer support number Antioch AOL Mail customer support number APT C GALLUP AOL Mail customer support number Aquibogue AOL Mail customer support number Ardmore AOL Mail customer support number Arkadelphia AOL Mail customer support number Arlington AOL Mail customer support number Arlinton AOL Mail customer support number Athens AOL Mail customer support number Atlanta AOL Mail customer support number Atlantic Beach AOL Mail customer support number Augusta AOL Mail customer support number Aurora AOL Mail customer support number Austin AOL Mail customer support number Av palos AOL Mail customer support number Avenue Battle Ground AOL Mail customer support number Avondale AOL Mail customer support number Ayette aol mail customer support aol mail customer support number aol mail customer support phone number aol mail customer support contact number aol mail customer support helpline number aol mail customer support help aol mail customer support help desk number aol mail customer support telelphone number aol mail customer support mobile number aol mail customer support landline number aol mail customer support toll free number aol mail customer support 24/7 hours number aol mail customer support contact details aol mail customer support contact info aol mail customer support line aol mail customer support number USA aol mail customer support number Canada aol mail customer support representative aol mail customer support phone number USA aol mail customer support phone number USA aol mail customer support team aol mail customer support live support aol mail customer support assistance aol mail customer support assistance number aol mail customer support assistance contact number aol mail customer support assistance phone number aol mail customer support assistance helpline number aol mail customer support assitance help desk number aol mail csutomer support assistance 24/7 aol mail customer support online support aol mail.com customer support number aol mail aol mail customer support number aol mail customer support no. aol mail customer service aol mail customer service number aol mail customer service phone number aol mail customer service contact number aol mail customer service helpline number aol mail customer service help aol mail customer service help desk number aol mail customer service telelphone number aol mail customer service mobile number aol mail customer service landline number aol mail customer service toll free number aol mail customer service 24/7 hours number aol mail customer service contact details aol mail customer service contact info aol mail customer service line aol mail customer service number USA aol mail customer service number Canada aol mail customer service representative aol mail customer service phone number USA aol mail customer service phone number USA aol mail customer service team aol mail customer service live service aol mail customer service assistance aol mail customer service assistance number aol mail customer service assistance contact number aol mail customer service assistance phone number aol mail customer service assistance helpline number aol mail customer service assitance help desk number aol mail csutomer service assistance 24/7 aol mail customer service online service aol mail.com customer service number aol mail aol mail customer service number aol mail support number, aol mail support phone number, aol mail customer support number, aol mail aol mail support phone number aol mail email support phone number phone number for aol mail support aol mail customer support phone number aol mail customer service support phone number aol mail aol mail support number phone number for aol mail aol mail support aol mail support contact number aol mail phone number support aol mail email support number aol mail support number for customers contact aol mail support phone number phone number for aol mail customer support aol mail email support phone number contact number for aol mail support aol mail com support phone number number for aol mail support aol mail support phone number for aol mail contact phone number for aol mail aol mail support aol mail customer service support number aol mail email support contact number aol mail support number for aol mail aol mail support contact phone number aol mail phone support number aol mail account support number contact aol mail support number aol mail.com support number aol mail contact support number aol mail business support phone number aol mail support phone number aol mail aol mail support phone number usa aol mail support phone number us aol mail help phone number aol mail help number aol mail help contact number aol mail aol mail help phone number phone number for aol mail help aol mail aol mail help number aol mail help contact phone number aol mail help phone number aol mail aol mail help desk phone number aol mail email help phone number aol mail phone number help aol mail com help phone number aol mail help support phone number aol mail help support number aol mail.com help number phone number for help with aol mail aol mail contact number for help aol mail number for help phone number for aol mail aol mail help aol mail login help phone number aol mail password help phone number aol mail technical support aol mail technical support number aol mail technical support phone number technical support for aol mail contact aol mail technical support aol mail technical support email aol mail technical help technical support aol mail aol mail technical support contact number aol mail technical support phone aol mail aol mail technical support phone number phone number for aol mail technical support aol mail technical support contact number for aol mail technical support aol mail online technical support aol mail email technical support aol mail technical support email address aol mail customer service phone number aol mail customer service number customer service number for aol mail customer service phone number for aol mail phone number for aol mail customer service aol mail.com customer service phone number aol mail phone number customer service customer service for aol mail phone number aol mail contact number customer service aol mail email customer service phone number aol mail contact phone number customer service aol mail customer service contact number aol mail.com customer service number customer service aol mail phone number contact number for aol mail customer service contact aol mail customer service phone number aol mail customer service contact phone number phone number aol mail customer service phone number to aol mail customer service aol mail customer number number to aol mail customer service aol mail customer service phone number usa aol mail customer service number usa contact aol mail support aol mail support contact aol mail contact support contacting aol mail support contact aol mail customer support contact aol mail aol mail support contact aol mail for support contact for aol mail support contact aol mail support aol mail contact support aol mail support aol mail contact aol mail aol mail support contact how to contact aol mail support how to contact aol mail customer support aol mail support email email aol mail support aol mail help email aol mail email support aol mail email help aol mail support contact email contact aol mail support by email aol mail support email id aol mail help contact email aol mail email tech support contact aol mail support email aol mail help email id email aol mail help contact aol mail by email aol mail contact support email contacting aol mail support by email aol mail support email address aol mail help email address aol mail contact email email support aol mail help with aol mail email contact aol mail help email aol mail support email contact emailing aol mail support email for aol mail support aol mail email support contact support aol mail email aol mail complaint email id contact aol mail email how to contact aol mail support by email how to email aol mail support how to contact aol mail by email email address for aol mail support aol mail help email contact aol mail helpline aol mail helpline number aol mail helpline phone number aol mail helpline no aol mail account helpline helpline for aol mail aol mail helpline contact number aol mail helpline uk aol mail customer care number aol mail customer care aol mail customer care email id aol mail customer care email aol mail customer care phone number customer care aol mail aol mail customer care no aol mail account customer care number aol mail customer care mail id customer care for aol mail customer care number for aol mail account aol mail customer care contact number aol mail customer support aol mail customer service support customer support for aol mail customer support aol mail aol mail.com customer support aol mail help contact contact aol mail help aol mail contact help contact aol mail for help contacting aol mail help aol mail help contacts aol mail help contact us aol mail contacts help aol mail aol mail customer service aol mail aol mail customer service phone number aol mail aol mail customer service number aol mail customer service phone number aol mail aol mail mail customer support aol mail customer service phone number for aol mail aol mail mail customer service phone number aol mail customer service number for aol mail aol mail aol mail customer support aol mail aol mail phone number customer service aol mail customer service for aol mail aol mail aol mail customer support phone number aol mail customer service aol mail customer service phone number for aol mail aol mail aol mail customer service number aol mail customer service aol mail aol mail aol mail contact number contact number for aol mail aol mail aol mail contact number aol mail.com contact number aol mail contact number for aol mail aol mail contact numbers contact number for aol mail aol mail contact aol mail number aol mail contact number contact number aol mail aol mail contacts number aol mail contact number uk aol mail contact number usa www aol mail com contact number aol mail help desk aol mail help desk phone number phone number for aol mail help desk aol mail help desk number aol mail aol mail help desk phone number help desk aol mail contact aol mail help desk aol mail contact phone number contact aol mail by phone contact aol mail support by phone contact aol mail support phone contact aol mail phone number contact aol mail help by phone aol mail phone contact contact phone number for aol mail aol mail contact phone contact aol mail phone contact aol mail phone support contact aol mail.com by phone phone number to contact aol mail contact aol mail.com phone number aol mail contact number phone number aol mail phone number contacts how to contact aol mail by phone aol mail contact phone numbers phone contact aol mail phone contact on aol mail how can i contact aol mail by phone how to contact aol mail support by phone phone contact in aol mail aol mail support phone aol mail phone support phone support for aol mail aol mail customer support phone phone for aol mail support phone aol mail support call aol mail support call aol mail customer service call aol mail support phone number call aol mail help can i call aol mail support aol mail call number aol mail call phone call aol mail aol mail support call aol mail account aol mail calls aol mail customer service telephone number aol mail telephone number aol mail telephone support aol mail support telephone number aol mail help telephone number telephone number for aol mail customer service telephone number for aol mail aol mail customer support telephone number telephone number for aol mail support aol mail telephone number customer service aol mail.com telephone number aol mail aol mail telephone support aol mail contact telephone number aol mail telephone aol mail telephone contacts aol mail call center aol mail help center aol mail help center phone number phone number for aol mail help center aol mail call center number aol mail contact center aol mail help center contact no aol mail support center aol mail account help center aol mail help center contact aol mail help center email aol mail help center number aol mail service center call center aol mail aol mail complaint center aol mail aol mail support center aol mail complaints center aol mail aol mail help center aol mail aol mail phone number contact aol mail phone number aol mail mail phone number aol mail aol mail phone contact aol mail by phone for aol mail support phone number for aol mail aol mail contact aol mail aol mail support by phone aol mail aol mail phone support aol mail aol mail support phone contact aol mail aol mail phone number phone number to contact aol mail aol mail contact aol mail aol mail by phone aol mail customer service email aol mail customer support email contact aol mail customer service email aol mail email customer service aol mail customer support email id aol mail customer service email address how to contact aol mail customer support by email tech support phone number for aol mail aol mail aol mail account help phone number aol mail account help phone number aol mail account phone number phone number for aol mail account help aol mail account support phone number aol mail account customer service phone number help with aol mail account phone number phone number aol mail account phone number for aol mail account aol mail aol mail help aol mail help email aol mail email help contact contact aol mail aol mail help aol mail aol mail account help aol mail.com aol mail help aol mail help with aol mail contact aol mail for aol mail help aol mail help for aol mail help with aol mail aol mail aol mail account help aol mail aol mail customer service 800 number aol mail 800 number customer service aol mail 800 number 800 number for aol mail 800 number for aol mail support aol mail 1 800 number aol mail assistance aol mail assistance phone number aol mail assistance number phone number for aol mail assistance aol mail assistance contact aol mail account assistance assistance aol mail contact aol mail team contact aol mail support team aol mail team contact number aol mail support team email email aol mail support team phone number aol mail support team aol mail support team contacting aol mail support team aol mail team contact contacting aol mail team contact aol mail aol mail support team aol mail support team email id aol mail help team contact aol mail team email aol mail team email address contact aol mail customer service aol mail contact customer service aol mail customer service contact how to contact aol mail customer service aol mail account problems customer service aol mail problems customer service for aol mail problems aol mail problem aol mail email problems aol mail login problems aol mail sign in problems help with aol mail problems contact for aol mail problems aol mail account problems aol mail security problems is there a problem with aol mail how do i contact aol mail about a problem aol mail account support aol mail account help help with aol mail account aol mail account hacked need help with aol mail account help for aol mail account aol mail accounts help support aol mail account aol mail accounts hacked my aol mail account was hacked aol mail account customer service customer service number for aol mail account customer service for aol mail accounts customer service for aol mail account customer service aol mail account aol mail account customer service number aol mail customer service phone contact aol mail customer service by phone customer service for aol mail by phone aol mail service phone number aol mail phone service aol mail customer service live chat aol mail customer support live chat aol mail live support aol mail live support customer service aol mail live help aol mail forgot password recovery aol mail forgot password aol mail password forgot forgot password aol mail forgot password for aol mail forgot my aol mail account forgot aol mail password aol mail forgot my password aol mail login forgot password aol mail password recovery password recovery aol mail aol mail password help aol mail lost password recover aol mail password how do i recover my aol mail password how do i retrieve my aol mail password forgotten aol mail password recovering aol mail password aol mail password recover reset password aol mail reset my aol mail password aol mail reset password aol mail password reset how to reset aol mail password reset password for aol mail password reset aol mail aol mail account contact number contact aol mail account support aol mail account contact number aol mail account contact contact aol mail accounts aol mail account contact aol mail account help contact how can i contact aol mail about my aol mail account aol mail password change change my aol mail password how can i change my aol mail password change password aol mail change aol mail password how to change my aol mail password how to change your aol mail password change password on aol mail account changing my aol mail password aol mail mail help aol mail help mail id how do i contact aol mail how do i contact aol mail by phone how do i contact aol mail support how do i contact aol mail about my aol mail account how do i contact aol mail support directly how do i contact aol mail support aol mail not working my aol mail is not working aol mail is not working why is aol mail not working aol mail not responding aol mail support aol mail aol mail support support for aol mail tech support for aol mail aol mail online support support aol mail tech support aol mail aol mail.com tech support aol mail support services aol mail support aol mail online aol mail support support aol mail.com support aol mail aol mail aol mail support online aol mail support for aol mail aol mail mail support aol mail support mail id aol mail support forum aol mail user support aol mail help help with aol mail help aol mail aol mail help support aol mail online help aol mail login help help for aol mail aol mail help forum aol mail help hotline aol mail support help aol mail help and support need help with aol mail help on aol mail aol mail help centre help in aol mail www aol mail com help aol mail calendar help aol mail phone number phone number for aol mail aol mail phone help aol mail phone numbers aol mail.com phone number get a aol mail phone number aol mail help phone phone number aol mail aol mail troubleshooting phone number get aol mail phone number aol mail information phone number phone help for aol mail aol mail to phone number free aol mail phone number aol mail hotline phone number phone for aol mail aol mail by phone number aol mail phone no aol mail phone number free phone number to aol mail phone aol mail phone number for aol mail.com phone number in aol mail phone numbers aol mail phone number on aol mail contact aol mail contacting aol mail contact aol mail security how to contact aol mail aol mail contact us aol mail security contact contact for aol mail aol mail contact no aol mail contact info contact on aol mail aol mail contact aol mail contact information how can i contact aol mail customer service for aol mail customer service aol mail aol mail help customer service aol mail.com customer service aol mail customer services aol mail customer service help aol mail customer service 1800 aol mail number aol mail 1800 number aol mail service number aol mail hotline number number for aol mail 1800 number for aol mail aol mails number number to aol mail contact aol mail aol mail contacting aol mail how to contact aol mail contact aol mail contact aol mail regarding aol mail how can i contact aol mail aol mail contact us aol mail contact info contact aol mail about aol mail contact aol mail for aol mail aol mail contact aol mail contacting aol mail aol mail how to contact aol mail about aol mail how to contact aol mail aol mail aol mail customer service aol mail helpdesk install aol mail aol mail troubleshooting aol mail hotline aol mail hacked aol mail issues today aol mail issues aol mail service aol mail error aol mail questions aol mailhelp aol mail message aol mail down today aol mail issue aol mail install aol mail for organizations access my aol mail cannot access aol mail aol mailsupport aol mail installer trouble with aol mail aol mail for aol mail trouble troubleshooting aol mail g mail support aol mail slow aol mail blocked why is aol mail so slow AOL Mail live support number AOL Mail live support phone number AOL Mail live support contact number AOL Mail live support helpline number AOL Mail live support help AOL Mail live support help desk number AOL Mail live support telelphone number AOL Mail live support mobile number AOL Mail live support landline number AOL Mail live support toll free number AOL Mail live support 24/7 hours number AOL Mail live support contact details AOL Mail live support contact info AOL Mail live support line AOL Mail live support number USA AOL Mail live support number Canada AOL Mail live support representative AOL Mail live support phone number USA AOL Mail live support phone number USA AOL Mail live support team AOL Mail live support live support AOL Mail live support assistance AOL Mail live support assistance number AOL Mail live support assistance contact number AOL Mail live support assistance phone number AOL Mail live support assistance helpline number AOL Mail live support assitance help desk number AOL Mail csutomer support assistance 24/7 AOL Mail live support online support AOL Mail.com live support number AOL Mail AOL Mail live support number AOL Mail live support no. AOL Mail customer care number AOL Mail customer care phone number AOL Mail customer care contact number AOL Mail customer care helpline number AOL Mail customer care help AOL Mail customer care help desk number AOL Mail customer care telelphone number AOL Mail customer care mobile number AOL Mail customer care landline number AOL Mail customer care toll free number AOL Mail customer care 24/7 hours number AOL Mail customer care contact details AOL Mail customer care contact info AOL Mail customer care line AOL Mail customer care number USA AOL Mail customer care number Canada AOL Mail customer care representative AOL Mail customer care phone number USA AOL Mail customer care phone number USA AOL Mail customer care team AOL Mail customer care live support AOL Mail customer care assistance AOL Mail customer care assistance number AOL Mail customer care assistance contact number AOL Mail customer care assistance phone number AOL Mail customer care assistance helpline number AOL Mail customer care assitance help desk number AOL Mail csutomer support assistance 24/7 AOL Mail customer care online support AOL Mail.com customer care number AOL Mail AOL Mail customer care number AOL Mail support number AOL Mail support phone number AOL Mail support contact number AOL Mail support helpline number AOL Mail support help AOL Mail support help desk number AOL Mail support telelphone number AOL Mail support mobile number AOL Mail support landline number AOL Mail support toll free number AOL Mail support 24/7 hours number AOL Mail support contact details AOL Mail support contact info AOL Mail support line AOL Mail support number USA AOL Mail support number Canada AOL Mail support representative AOL Mail support phone number USA AOL Mail support phone number USA AOL Mail support team AOL Mail support live support AOL Mail support assistance AOL Mail support assistance number AOL Mail support assistance contact number AOL Mail support assistance phone number AOL Mail support assistance helpline number AOL Mail support assitance help desk number AOL Mail csutomer support assistance 24/7 AOL Mail support online support AOL Mail.com support number AOL Mail AOL Mail support number AOL Mail support no. aol mail Tech Support Number Alabama AL Montgomery Birmingham aol mail Tech Support Number Alaska AK Juneau Anchorage aol mail Tech Support Number Arizona AZ Phoenix aol mail Tech Support Number Arkansas AR Little Rock aol mail Tech Support Number California CA Sacramento Los Angeles aol mail Tech Support Number Colorado CO Denver aol mail Tech Support Number Connecticut CT Hartford Bridgeport aol mail Tech Support Number Delaware DE Dover Wilmington aol mail Tech Support Number Florida FL Tallahassee Jacksonville aol mail Tech Support Number Georgia GA Atlanta aol mail Tech Support Number Hawaii HI Honolulu aol mail Tech Support Number Idaho ID Boise aol mail Tech Support Number Illinois IL Springfield Chicago aol mail Tech Support Number Indiana IN Indianapolis aol mail Tech Support Number Iowa IA Des Moines aol mail Tech Support Number Kentucky[D] KY Frankfort Louisville aol mail Tech Support Number Louisiana LA Baton Rouge New Orleans aol mail Tech Support Number Maine ME Augusta Portland aol mail Tech Support Number Maryland MD Annapolis Baltimore aol mail Tech Support Number Massachusetts[E] MA Boston aol mail Tech Support Number Michigan MI Lansing Detroit aol mail Tech Support Number Minnesota MN St. Paul Minneapolis aol mail Tech Support Number Mississippi MS Jackson Jackson aol mail Tech Support Number Missouri MO Jefferson City Kansas City aol mail Tech Support Number Montana MT Helena Billings aol mail Tech Support Number Nebraska NE Lincoln Omaha aol mail Tech Support Number Guam GU Hag?t?a[16 aol mail Tech Support Number Northern Mariana Islands[J] MP Saipan[1 aol mail Tech Support Number Puerto Rico[K] PR San Juan[18 aol mail Tech Support Number U.S. Virgin Islands VI Charlotte Amalie[19] aol mail Tech Support Number Nevada NV Carson City Las Vegas, , aol mail Tech Support Number Manchester, aol mail Tech Support Number New Jersey NJ Trenton Newark, aol mail Tech Support Number New Mexico NM Santa Fe Albuquerque, aol mail Tech Support Number New York NY Albany, aol mail Tech Support Number North Carolina NC Raleigh Charlotte, aol mail Tech Support Number North Dakota ND Bismarck Fargo, aol mail Tech Support Number Ohio OH Columbus , aol mail Tech Support Number Oklahoma OK Oklahoma City, aol mail Tech Support Number Oregon OR Salem Portland, aol mail Tech Support Number Pennsylvania[F] PA Harrisburg Philadelphia, aol mail Tech Support Number Rhode Island[G] RI Providence, aol mail Tech Support Number South Carolina SC Columbia Columbia, aol mail Tech Support Number South Dakota SD Pierre Sioux Falls, aol mail Tech Support Number Tennessee TN Nashville Memphis, aol mail Tech Support Number Texas TX Austin Houston aol mail Tech Support Number Nevada NV Carson City Las Vegas, , aol mail Tech Support Number Manchester, aol mail Tech Support Number New Jersey NJ Trenton Newark, aol mail Tech Support Number New Mexico NM Santa Fe Albuquerque, aol mail Tech Support Number New York NY Albany, aol mail Tech Support Number North Carolina NC Raleigh Charlotte, aol mail Tech Support Number North Dakota ND Bismarck Fargo, aol mail Tech Support Number Ohio OH Columbus , aol mail Tech Support Number Oklahoma OK Oklahoma City, aol mail Tech Support Number Oregon OR Salem Portland, aol mail Tech Support Number Pennsylvania[F] PA Harrisburg Philadelphia, aol mail Tech Support Number Rhode Island[G] RI Providence, aol mail Tech Support Number South Carolina SC Columbia Columbia, aol mail Tech Support Number South Dakota SD Pierre Sioux Falls, aol mail Tech Support Number Tennessee TN Nashville Memphis, aol mail Tech Support Number Texas TX Austin Houston aol mail Tech Support Number Utah UT Salt Lake City, aol mail Tech Support Number Vermont VT Montpelier Burlington, aol mail Tech Support Number Virginia[H] VA Richmond Virginia Beach, aol mail Tech Support Number Washington WA Olympia Seattle, aol mail Tech Support Number West Virginia WV Charleston , aol mail Tech Support Number Wisconsin WI Madison Milwaukee, aol mail Tech Support Number Wyoming WY Cheyenne , aol mail Tech Support Number American Samoa AS Pago AOL Mail customer support number Plymouth AOL Mail customer support number Jackson AOL Mail customer support number Ukaih AOL Mail customer support number Abington AOL Mail customer support number Adams AOL Mail customer support number Akron AOL Mail customer support number Alamogordo AOL Mail customer support number Albany AOL Mail customer support number Alex AOL Mail customer support number Alison park AOL Mail customer support number Alma AOL Mail customer support number Alva AOL Mail customer support number Amarillo AOL Mail customer support number Anchorage AOL Mail customer support number Anderson AOL Mail customer support number Angela AOL Mail customer support number Anjou AOL Mail customer support number Antioch AOL Mail customer support number APT C GALLUP AOL Mail customer support number Aquibogue AOL Mail customer support number Ardmore AOL Mail customer support number Arkadelphia AOL Mail customer support number Arlington AOL Mail customer support number Arlinton AOL Mail customer support number Athens AOL Mail customer support number Atlanta AOL Mail customer support number Atlantic Beach AOL Mail customer support number Augusta AOL Mail customer support number Aurora AOL Mail customer support number Austin AOL Mail customer support number Av palos AOL Mail customer support number Avenue Battle Ground AOL Mail customer support number Avondale AOL Mail customer support number Ayette ((18552337309)) AOL mail Customer Service ((18552337309)) AOL mail Customer Service Phone Number ((18552337309)) AOL mail Customer Service Phone Number ((18552337309)) AOL mail Customer Service Phone Number ((18552337309)) AOL mail Customer Service Phone Number ((18552337309)) AOL mail Customer Service Phone Number ((18552337309)) AOL mail Customer Service Phone Number((18552337309)) AOL mail Customer Service Phone Number ((18552337309)) AOL mail Customer Service Phone Number V<<<<<<<<<<<<<<<<<<<<<((18552337309)) AOL mail Customer Service Phone Number((18552337309)) AOL mail Customer Service Phone Number((18552337309)) AOL mail Customer Service Phone NumberPhone Number ((18552337309)) AOL mail Customer Service Phone Number aol mail customer service, aol mail customer support, aol mail technical support, aol mail helpline number, aol mail helpdesk number, aol mail contact number, aol mail support number, aol mail tech support, aol mail phone number, aol mail toll free number Aol mail Customer Service is here to help you in very easy manner. you can dial toll free phone number for any Aol mail issues for various USA states such as california, washington, florida, new york & texas. 1?855?233?7309 AOL Mail customer service (toll free phone) #Number ? ? ? ? ? ? ? ? ? ? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 11:09:59 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 11:09:59 -0000 Subject: [GHC] #11760: runST with lazy blackholing breaks referential transparency In-Reply-To: <044.f9450e9011a111f1ca51def99a5b24a4@haskell.org> References: <044.f9450e9011a111f1ca51def99a5b24a4@haskell.org> Message-ID: <059.75f2ed5a32787d05ebcf081faec4261e@haskell.org> #11760: runST with lazy blackholing breaks referential transparency -------------------------------------+------------------------------------- Reporter: Yuras | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by obadz): My 2 cents is that we shouldn't have pure values that evaluate to non- deterministic/thread-dependent values unless an function marked `unsafe` was called. Maybe the current implementation of `Control.Monad.ST.Lazy.runST` can be moved to `Control.Monad.ST.Lazy.unsafeRunST` and replaced by one that use `noDuplicate#`? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 11:45:02 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 11:45:02 -0000 Subject: [GHC] #4012: Compilation results are not deterministic In-Reply-To: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> References: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> Message-ID: <058.fd64f9a62807f725ab8e1cb330abe5db@haskell.org> #4012: Compilation results are not deterministic -------------------------------------+------------------------------------- Reporter: kili | Owner: niteria Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 6.12.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: 11362 | Blocking: Related Tickets: #10424 | Differential Rev(s): Phab:D910, | Phab:D1073, Phab:D1133, Phab:D1192, | Phab:D1268, Phab:D1360, Phab:D1373, Wiki Page: | Phab:D1396, Phab:D1457, Phab:D1468, DeterministicBuilds | Phab:D1487, Phab:D1504, Phab:D1508 -------------------------------------+------------------------------------- Comment (by Bartosz Nitka ): In [changeset:"928d74733975fe4677e2b558d031779f58a0883c/ghc" 928d747/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="928d74733975fe4677e2b558d031779f58a0883c" Kill some unnecessary varSetElems When you do `varSetElems (tyCoVarsOfType x)` it's equivalent to `tyCoVarsOfTypeList x`. Why? If you look at the implementation: ``` tyCoVarsOfTypeList ty = runFVList $ tyCoVarsOfTypeAcc ty tyCoVarsOfType ty = runFVSet $ tyCoVarsOfTypeAcc ty ``` they use the same helper function. The helper function returns a deterministically ordered list and a set. The only difference between the two is which part of the result they take. It is redundant to take the set and then immediately convert it to a list. This helps with determinism and we eventually want to replace the uses of `varSetElems` with functions that don't leak the values of uniques. This change gets rid of some instances that are easy to kill. I chose not to annotate every place where I got rid of `varSetElems` with a comment about non-determinism, because once we get rid of `varSetElems` it will not be possible to do the wrong thing. Test Plan: ./validate Reviewers: goldfire, austin, simonmar, bgamari, simonpj Reviewed By: simonpj Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2115 GHC Trac Issues: #4012 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 11:45:50 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 11:45:50 -0000 Subject: [GHC] #11793: Confusing type error from constrained class method In-Reply-To: <049.66d83c7f7ec1f2be250a76e4769b49e0@haskell.org> References: <049.66d83c7f7ec1f2be250a76e4769b49e0@haskell.org> Message-ID: <064.09ad1d8b5cba8be2d45d4a56dd2c44c9@haskell.org> #11793: Confusing type error from constrained class method -------------------------------------+------------------------------------- Reporter: gridaphobe | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc2 Resolution: | Keywords: error-message Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Simon Peyton Jones ): In [changeset:"e24b3b1eeba91bd5b127261652b48eae2d4751b1/ghc" e24b3b1e/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="e24b3b1eeba91bd5b127261652b48eae2d4751b1" Adjust error check for class method types Fixes Trac #11793. Nothing deep here. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 11:46:03 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 11:46:03 -0000 Subject: [GHC] #4012: Compilation results are not deterministic In-Reply-To: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> References: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> Message-ID: <058.eeab999fa0f7d94f096012f9908155b4@haskell.org> #4012: Compilation results are not deterministic -------------------------------------+------------------------------------- Reporter: kili | Owner: niteria Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 6.12.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: 11362 | Blocking: Related Tickets: #10424 | Differential Rev(s): Phab:D910, | Phab:D1073, Phab:D1133, Phab:D1192, | Phab:D1268, Phab:D1360, Phab:D1373, Wiki Page: | Phab:D1396, Phab:D1457, Phab:D1468, DeterministicBuilds | Phab:D1487, Phab:D1504, Phab:D1508 -------------------------------------+------------------------------------- Comment (by Bartosz Nitka ): In [changeset:"31e49746a5f2193e3a2161ea6e279e95b9068048/ghc" 31e4974/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="31e49746a5f2193e3a2161ea6e279e95b9068048" Remove some gratitious varSetElemsWellScoped Summary: `varSetElemsWellScoped` uses `varSetElems` under the hood which introduces unnecessary nondeterminism. This does the same thing, possibly cheaper, while preserving determinism. Test Plan: ./validate Reviewers: simonmar, goldfire, austin, bgamari, simonpj Reviewed By: simonpj Subscribers: thomie, RyanGlScott Differential Revision: https://phabricator.haskell.org/D2116 GHC Trac Issues: #4012 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:03:08 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:03:08 -0000 Subject: [GHC] #11862: (call) I*855*2I2*2247 Outlook Customer Service and Support Phone Number Helpline (USA) Message-ID: <051.465d04a47be6d269a273227f5112a8d0@haskell.org> #11862: (call) I*855*2I2*2247 Outlook Customer Service and Support Phone Number Helpline (USA) -------------------------------------+------------------------------------- Reporter: roxiertaylor | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- (call) I*855*2I2*2247 Outlook Customer Service and Support Phone Number Helpline (USA) Outlook contact Details : Outlook Customer Service Number . Outlook Customer Service Phone Number . Outlook Customer Service Contact Number . Outlook Customer Service Telephone Number . Outlook Customer Service Helpline Number . Outlook Customer Service Toll Free Number . Phone Number For Outlook . Outlook Customer Support Phone Number . Outlook Customer Service Help Desk Number . Outlook Customer Service Landline Number . Outlook Customer Service 24/7 Number . Outlook Customer Service Number . Outlook Customer Service Number . Outlook tech support number . Outlook tech support phone number . Outlook tech support contact number . Outlook tech support helpline number . Outlook tech support help . Outlook tech support help desk number . Outlook tech support telephone number . Outlook tech support mobile number . Outlook tech support landline number . Outlook tech support toll free number . Outlook tech support 24/7 hours number . Outlook tech support contact details . Outlook tech support contact info . Outlook tech support line . Outlook tech support number . Outlook tech support number . Outlook tech support representative . Outlook tech support phone number . Outlook tech support phone number . Outlook tech support team . Outlook tech support live support . Outlook tech support assistance . Outlook tech support assistance number . Outlook tech support assistance contact number . Outlook tech support assistance phone number . Outlook tech support assistance helpline number . Outlook tech support assistance help desk number . Outlook customer support assistance 24/7 . Outlook tech support online support . outlook tech support number . Outlook tech support number . Outlook tech support no. . Outlook team support number . Outlook team support phone number . Outlook team support contact number . Outlook team support helpline number . Outlook team support help . Outlook team support help desk number . Outlook team support telephone number . Outlook team support mobile number . Outlook team support landline number . Outlook team support toll free number . Outlook team support 24/7 hours number . Outlook team support contact details . Outlook team support contact info . Outlook team support line . Outlook team support number . Outlook team support number . Outlook team support representative . Outlook team support phone number . Outlook team support phone number . Outlook team support team . Outlook team support team support . Outlook team support assistance . Outlook team support assistance number . Outlook team support assistance contact number . Outlook team support assistance phone number . Outlook team support assistance helpline number . Outlook team support assistance help desk number . Outlook customer support assistance 24/7 . Outlook team support online support . Outlook team support number . Outlook team support no. . Outlook help desk number . Outlook help desk phone number . Outlook help desk contact number . Outlook help desk helpline number . Outlook help desk help . Outlook help desk help desk number . Outlook help desk telephone number . Outlook help desk mobile number . Outlook help desk landline number . Outlook help desk toll free number . Outlook help desk 24/7 hours number . Outlook help desk contact details . Outlook contact Details : Outlook Customer Service Number . Outlook Customer Service Phone Number . Outlook Customer Service Contact Number . Outlook Customer Service Telephone Number . Outlook Customer Service Helpline Number . Outlook Customer Service Toll Free Number . Phone Number For Outlook . Outlook Customer Support Phone Number . Outlook Customer Service Help Desk Number . Outlook Customer Service Landline Number . Outlook Customer Service 24/7 Number . Outlook Customer Service Number . Outlook Customer Service Number . Outlook tech support number . Outlook tech support phone number . Outlook tech support contact number . Outlook tech support helpline number . Outlook tech support help . Outlook tech support help desk number . Outlook tech support telephone number . Outlook tech support mobile number . Outlook tech support landline number . Outlook tech support toll free number . Outlook tech support 24/7 hours number . Outlook tech support contact details . Outlook tech support contact info . Outlook tech support line . Outlook tech support number . Outlook tech support number . Outlook tech support representative . Outlook tech support phone number . Outlook tech support phone number . Outlook tech support team . Outlook tech support live support . Outlook tech support assistance . Outlook tech support assistance number . Outlook tech support assistance contact number . Outlook tech support assistance phone number . Outlook tech support assistance helpline number . Outlook tech support assistance help desk number . Outlook customer support assistance 24/7 . Outlook tech support online support . outlook tech support number . Outlook tech support number . Outlook tech support no. . Outlook team support number . Outlook team support phone number . Outlook team support contact number . Outlook team support helpline number . Outlook team support help . Outlook team support help desk number . Outlook team support telephone number . Outlook team support mobile number . Outlook team support landline number . Outlook team support toll free number . Outlook team support 24/7 hours number . Outlook team support contact details . Outlook team support contact info . Outlook team support line . Outlook team support number . Outlook team support number . Outlook team support representative . Outlook team support phone number . Outlook team support phone number . Outlook team support team . Outlook team support team support . Outlook team support assistance . Outlook team support assistance number . Outlook team support assistance contact number . Outlook team support assistance phone number . Outlook team support assistance helpline number . Outlook team support assistance help desk number . Outlook customer support assistance 24/7 . Outlook team support online support . Outlook team support number . Outlook team support no. . Outlook help desk number . Outlook help desk phone number . Outlook help desk contact number . Outlook help desk helpline number . Outlook help desk help . Outlook help desk help desk number . Outlook help desk telephone number . Outlook help desk mobile number . Outlook help desk landline number . Outlook help desk toll free number . Outlook help desk 24/7 hours number . Outlook help desk contact details . Outlook contact Details : Outlook Customer Service Number . Outlook Customer Service Phone Number . Outlook Customer Service Contact Number . Outlook Customer Service Telephone Number . Outlook Customer Service Helpline Number . Outlook Customer Service Toll Free Number . Phone Number For Outlook . Outlook Customer Support Phone Number . Outlook Customer Service Help Desk Number . Outlook Customer Service Landline Number . Outlook Customer Service 24/7 Number . Outlook Customer Service Number . Outlook Customer Service Number . Outlook tech support number . Outlook tech support phone number . Outlook tech support contact number . Outlook tech support helpline number . Outlook tech support help . Outlook tech support help desk number . Outlook tech support telephone number . Outlook tech support mobile number . Outlook tech support landline number . Outlook tech support toll free number . Outlook tech support 24/7 hours number . Outlook tech support contact details . Outlook tech support contact info . Outlook tech support line . Outlook tech support number . Outlook tech support number . Outlook tech support representative . Outlook tech support phone number . Outlook tech support phone number . Outlook tech support team . Outlook tech support live support . Outlook tech support assistance . Outlook tech support assistance number . Outlook tech support assistance contact number . Outlook tech support assistance phone number . Outlook tech support assistance helpline number . Outlook tech support assistance help desk number . Outlook customer support assistance 24/7 . Outlook tech support online support . outlook tech support number . Outlook tech support number . Outlook tech support no. . Outlook team support number . Outlook team support phone number . Outlook team support contact number . Outlook team support helpline number . Outlook team support help . Outlook team support help desk number . Outlook team support telephone number . Outlook team support mobile number . Outlook team support landline number . Outlook team support toll free number . Outlook team support 24/7 hours number . Outlook team support contact details . Outlook team support contact info . Outlook team support line . Outlook team support number . Outlook team support number . Outlook team support representative . Outlook team support phone number . Outlook team support phone number . Outlook team support team . Outlook team support team support . Outlook team support assistance . Outlook team support assistance number . Outlook team support assistance contact number . Outlook team support assistance phone number . Outlook team support assistance helpline number . Outlook team support assistance help desk number . Outlook customer support assistance 24/7 . Outlook team support online support . Outlook team support number . Outlook team support no. . Outlook help desk number . Outlook help desk phone number . Outlook help desk contact number . Outlook help desk helpline number . Outlook help desk help . Outlook help desk help desk number . Outlook help desk telephone number . Outlook help desk mobile number . Outlook help desk landline number . Outlook help desk toll free number . Outlook help desk 24/7 hours number . Outlook help desk contact details . Outlook contact Details : Outlook Customer Service Number . Outlook Customer Service Phone Number . Outlook Customer Service Contact Number . Outlook Customer Service Telephone Number . Outlook Customer Service Helpline Number . Outlook Customer Service Toll Free Number . Phone Number For Outlook . Outlook Customer Support Phone Number . Outlook Customer Service Help Desk Number . Outlook Customer Service Landline Number . Outlook Customer Service 24/7 Number . Outlook Customer Service Number . Outlook Customer Service Number . Outlook tech support number . Outlook tech support phone number . Outlook tech support contact number . Outlook tech support helpline number . Outlook tech support help . Outlook tech support help desk number . Outlook tech support telephone number . Outlook tech support mobile number . Outlook tech support landline number . Outlook tech support toll free number . Outlook tech support 24/7 hours number . Outlook tech support contact details . Outlook tech support contact info . Outlook tech support line . Outlook tech support number . Outlook tech support number . Outlook tech support representative . Outlook tech support phone number . Outlook tech support phone number . Outlook tech support team . Outlook tech support live support . Outlook tech support assistance . Outlook tech support assistance number . Outlook tech support assistance contact number . Outlook tech support assistance phone number . Outlook tech support assistance helpline number . Outlook tech support assistance help desk number . Outlook customer support assistance 24/7 . Outlook tech support online support . outlook tech support number . Outlook tech support number . Outlook tech support no. . Outlook team support number . Outlook team support phone number . Outlook team support contact number . Outlook team support helpline number . Outlook team support help . Outlook team support help desk number . Outlook team support telephone number . Outlook team support mobile number . Outlook team support landline number . Outlook team support toll free number . Outlook team support 24/7 hours number . Outlook team support contact details . Outlook team support contact info . Outlook team support line . Outlook team support number . Outlook team support number . Outlook team support representative . Outlook team support phone number . Outlook team support phone number . Outlook team support team . Outlook team support team support . Outlook team support assistance . Outlook team support assistance number . Outlook team support assistance contact number . Outlook team support assistance phone number . Outlook team support assistance helpline number . Outlook team support assistance help desk number . Outlook customer support assistance 24/7 . Outlook team support online support . Outlook team support number . Outlook team support no. . Outlook help desk number . Outlook help desk phone number . Outlook help desk contact number . Outlook help desk helpline number . Outlook help desk help . Outlook help desk help desk number . Outlook help desk telephone number . Outlook help desk mobile number . Outlook help desk landline number . Outlook help desk toll free number . Outlook help desk 24/7 hours number . Outlook help desk contact details . -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:08:14 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:08:14 -0000 Subject: [GHC] #11863: MSN Customer Service %% 18552337309 %% Live Tech Assistance Phone Number Message-ID: <051.a0e72c7235c6f1a63a72b3a060664f61@haskell.org> #11863: MSN Customer Service %% 18552337309 %% Live Tech Assistance Phone Number -------------------------------------+------------------------------------- Reporter: roxiertaylor | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- MSN Customer Service %% 18552337309 %% Live Tech Assistance Phone Number Msn Customer Service Number . Msn Customer Service Phone Number . Msn Customer Service Contact Number . Msn Customer Service Telephone Number . Msn Customer Service Helpline Number . Msn Customer Service Toll Free Number . Phone Number For Msn . Msn Customer Support Phone Number . Msn Customer Service Help Desk Number . Msn Customer Service Landline Number . Msn Customer Service 24/7 Number . Msn Customer Service Number . Msn Customer Service Number . Msn tech support number . Msn tech support phone number . Msn tech support contact number . Msn tech support helpline number . Msn tech support help . Msn tech support help desk number . Msn tech support telephone number . Msn tech support mobile number . Msn tech support landline number . Msn tech support toll free number . Msn tech support 24/7 hours number . Msn tech support contact details . Msn tech support contact info . Msn tech support line . Msn tech support number . Msn tech support number . Msn tech support representative . Msn tech support phone number . Msn tech support phone number . Msn tech support team . Msn tech support live support . Msn tech support assistance . Msn tech support assistance number . Msn tech support assistance contact number . Msn tech support assistance phone number . Msn tech support assistance helpline number . Msn tech support assistance help desk number . Msn customer support assistance 24/7 . Msn tech support online support . Msn tech support number . Msn tech support number . Msn tech support no. . Msn team support number . Msn team support phone number . Msn team support contact number . Msn team support helpline number . Msn team support help . Msn team support help desk number . Msn team support telephone number . Msn team support mobile number . Msn team support landline number . Msn team support toll free number . Msn team support 24/7 hours number . Msn team support contact details . Msn team support contact info . Msn team support line . Msn team support number . Msn team support number . Msn team support representative . Msn team support phone number . Msn team support phone number . Msn team support team . Msn team support team support . Msn team support assistance . Msn team support assistance number . Msn team support assistance contact number . Msn team support assistance phone number . Msn team support assistance helpline number . Msn team support assistance help desk number . Msn customer support assistance 24/7 . Msn team support online support . Msn team support number . Msn team support no. . Msn help desk number . Msn help desk phone number . Msn help desk contact number . Msn help desk helpline number . Msn help desk help . Msn help desk help desk number . Msn help desk telephone number . Msn help desk mobile number . Msn help desk landline number . Msn help desk toll free number . Msn help desk 24/7 hours number . Msn help desk contact details . (call) I*855*2I2*2247 Msn Customer Service and Support Phone Number Helpline (USA) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:12:52 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:12:52 -0000 Subject: [GHC] #11864: Outlook Password Recovery ##%%18552337309 Live Tech Help Phone Number 1-855-233-7309 Outlook Password Recovery Online Help Message-ID: <051.3b2144489f4ffed2a1ecefe90af16abb@haskell.org> #11864: Outlook Password Recovery ##%%18552337309 Live Tech Help Phone Number 1-855-233-7309 Outlook Password Recovery Online Help -------------------------------------+------------------------------------- Reporter: roxiertaylor | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Outlook Password Recovery ##%%18552337309 Live Tech Help Phone Number 1-855-233-7309 Outlook Password Recovery Online Help I forgot my outlook password I forgot my outlook password how do I get it I forgot my outlook password and username I forgot my outlook password how do I find it I forgot my outlook password and my phone is locked I forgot my outlook password and my recovery email I forgot my outlook password and my phone number is changed I forgot my outlook password how do I change it I forgot my outlook password how can I get it back I forgot my outlook password and security question I forgot my outlook password and email i forgot my outlook password how to recover i forgot my outlook password for my android i forgot my outlook password for my phone i forgot my outlook password and security question answers i forgot my outlook password and username i forgot my outlook password and secret question i forgot my outlook password and recovery email i forgot my outlook password for my android phone i forgot my outlook password and security question i forgot my outlook password what can i do i forgot my outlook password and security answer i forgot my outlook password for my android i lost my outlook password how to recover i forgot my outlook password and recovery email address how to reset my outlook password if i forgot it reset my outlook password using security question -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:16:39 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:16:39 -0000 Subject: [GHC] #11865: MSN Password Recovery => 18552337309 Online Help Live Tech Phone Number 18552337309 MSN Password Reset Help Message-ID: <051.3c205bcaf7f9bbdda244002a50f8eca7@haskell.org> #11865: MSN Password Recovery => 18552337309 Online Help Live Tech Phone Number 18552337309 MSN Password Reset Help -------------------------------------+------------------------------------- Reporter: roxiertaylor | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- MSN Password Recovery => 18552337309 Online Help Live Tech Phone Number 18552337309 MSN Password Reset Help I forgot my Msn password I forgot my Msn password how do I get it I forgot my Msn password and username I forgot my Msn password how do I find it I forgot my Msn password and my phone is locked I forgot my Msn password and my recovery email I forgot my Msn password and my phone number is changed I forgot my Msn password how do I change it I forgot my Msn password how can I get it back I forgot my Msn password and security question I forgot my Msn password and email i forgot my Msn password how to recover i forgot my Msn password for my android i forgot my Msn password for my phone i forgot my Msn password and security question answers i forgot my Msn password and username i forgot my Msn password and secret question i forgot my Msn password and recovery email i forgot my Msn password for my android phone i forgot my Msn password and security question i forgot my Msn password what can i do i forgot my Msn password and security answer i forgot my Msn password for my android i lost my Msn password how to recover i forgot my Msn password and recovery email address how to reset my Msn password if i forgot it reset my Msn password using security question -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:19:56 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:19:56 -0000 Subject: [GHC] #11866: Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number USA Message-ID: <045.d9106df123db4916af5d003c5d3901b2@haskell.org> #11866: Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number USA -------------------------------------+------------------------------------- Reporter: preety | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number @#@@@#@@Call Avg Antivirus (SERVICE+SUPPORT)..!! 1*877*812*8410!! Avg p.r.o t.e.c.h.n.i-c-a-l Support Ph.one Number Q.u.i.c.k.B.o.o.k.s tecH suPPort Numbner!!(( 1 ..877..812..8410 )) Antivirus Avg Enterprise Customer support Phone Number !@@@@@~~~~~~AVG Antivirus Helpline telephone number, Avg tech support number, 1*877*812*8410 Avg antivirus customer care number, Avg technical support number$%$$$$$$$$$ Help at Call 1~877~812~8410 /.Avg 24/7 support phone number,Avg telephone number for support? call 1800-844-0887 at ./Avg contact number, Avg contact phone number, Avg contact telephone number,,telephone number for Avg online support,Avg official support number,Avg official number,Avg payroll official phone number,,,phone number for Avg payroll support,,Avg 24/7 support phone number,,Avg support number,Avg telephone number for support#$$$$$$$Avg phone number, Avg support phone number, Avg tech support number, Avg customer care number, Avg technical support number Avg Toll Free, Antivirus@(1*877*812*8410)@ Avg Tech Support Phone Number Antivirusvides online solution for all USA/CANADA clients. For any help of query call 1 800 844 0887 to get all Avg account solution. @@Call, 1*877*812*8410 for all type help by Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number,@@@ Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number,@@@@ Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, @@@@@ Avg help number-Avg Helpline Number; Avg help phone number-Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number. It is very popular toll free number which Antivirusvide by Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, Avg help number-Avg Helpline Number; Avg help phone number, Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number, Avg Antivirus support phone number, Avg payroll support phone number. Avg payroll customer support phone Avg technical help telephone number, Avg technical help contact number, Avg technical support contact number, Avg contact number, Avg contact phone number, Avg contact telephone number, Avg 24 hour contact number, Avg customer support contact number, Avg customer service contact number, Avg official number, Avg official contact number, Avg 800 contact number, Avg toll free number, 800 number for Avg support, Avg 24/7 support phone number Avg Antivirus support phone number,Avg Antivirus support phone number,Avg Antivirus help phone number, Avg Antivirus technical support number.Avg Antivirus support number, Avg Antivirus phone number, Avg Antivirus tech support number, Avg Antivirus customer support number, Avg Antivirus customer support phone number, Avg Antivirus customer service phone number, Avg Antivirus payroll customer service phone number, Avg Antivirus support phone number. Help at Call 1*877*812*8410/.Avg 24/7 support phone number,Avg telephone number for support? call 1*877*812*8410 @./Avg contact number, Avg contact phone number, Avg contact telephone number,,telephone number for Avg online support,Avg official support number,Avg official number,Avg payroll official phone number,,,phone number for Avg payroll support,,Avg 24/7 support phone number,,Avg support number,Avg telephone number for support Avg phone number, Avg support phone number, Avg tech support number, Avg customer care number, Avg technical support number Avg Toll Free, Antivirus@(1*877*812*8410)@ Avg Tech Support Phone Number Antivirusvides online solution for all USA/CANADA clients. For any help of query call 1*877*812*8410 to get all Avg account solution. @@Call, 1*877*812*8410 for all type help by Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number,@@@ Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number,@@@@ Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, @@@@@ Avg help number-Avg Helpline Number; Avg help phone number-Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number. It is very popular toll free number which Antivirusvide by Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, Avg help number-Avg Helpline Number; Avg help phone number, Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number, Avg Antivirus support phone number, Avg payroll support phone number. Avg payroll customer support phone number 1*877*812*8410 Avg technical help telephone number, Avg technical help contact number, Avg technical support contact number, Avg contact number, Avg contact phone number, Avg contact telephone number, Avg 24 hour contact number, Avg customer support contact number, Avg customer service contact number, Avg official number, Avg official contact number, Avg 800 contact number, Avg toll free number, 800 number for Avg support, Avg 24/7 support phone number Avg Antivirus support phone number,Avg Antivirus support phone number,Avg Antivirus help phone number, Avg Antivirus technical support number.Avg Antivirus support number, Avg Antivirus phone number, Avg Antivirus tech support number, Avg Antivirus customer support number, Avg Antivirus customer support phone number, Avg Antivirus customer service phone number, Avg Antivirus payroll customer service phone number, Avg Antivirus support phone number. Help at Call 1*877*812*8410/.Avg 24/7 support phone number,Avg telephone number for support? call 1*877*812*8410 @./Avg contact number, Avg contact phone number, Avg contact telephone number,,telephone number for Avg online support,Avg official support number,Avg official number,Avg payroll official phone number,phone number for Avg payroll support,,Avg 24/7 support phone number,,Avg support number,Avg telephone number for support Avg phone number, Avg support phone number, Avg tech support number, Avg customer care number, Avg technical support number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:22:21 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:22:21 -0000 Subject: [GHC] #11867: norton Antivirus support Phone number !!!(1..877..812...8410)!!! AVg helpline support telephone number Message-ID: <047.f9736b8af8eb8778e670a25a3ababd71@haskell.org> #11867: norton Antivirus support Phone number !!!(1..877..812...8410)!!! AVg helpline support telephone number -------------------------------------+------------------------------------- Reporter: kapilshi | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- norton (CARE+SUPPORT)..!!1..877..812...8410!!! norton p.r.o t.e.c.h.n.i-c-a-l Support Ph.one Number Call, 1..877..812...8410 for all type help by norton tech support phone number, Intuit norton Tech Support Phone Number, norton Help Desk Phone Number, norton Antivirus techNICAl support number, norton technical support phone number,@@@ norton phone number, norton technical support number, norton support phone number, norton Toll Free, Intuit@(1..877..812...8410)@ norton Tech Support Phone Number provides online solution for all USA/CANADA clients. For any help of query call 1..877..812...8410 to get all norton account solution. @@Call, 1..877..812...8410 for all type help by norton tech support phone number, Intuit norton Tech Support Phone Number, norton Help Desk Phone Number, norton tech support number, norton technical support phone number,@@@ norton phone number, norton technical support number, norton support phone number, norton technical support, norton Customer Service Phone Number, norton Customer Service Number, norton Customer Support Phone Number, norton Customer Support Number,@@@@ norton Customer Service Helpline Number, norton Customer Care Number, norton support team phone number, @@@@@ norton help number-norton Helpline Number; norton help phone number-norton Helpline Number, norton Tech Support Toll free Number, norton Support Telephone Number, norton Tech Support Telephone number, norton Tech Support contact number, norton support contact number, norton technical support contact number. Call, norton tech support phone number, Intuit norton Tech Support Phone Number, norton Help Desk Phone Number, norton tech support number, norton technical support phone number, norton phone number, norton technical support number, norton support phone number. It is very popular toll free number which provide by norton technical support, norton Customer Service Phone Number, norton Customer Service Number, norton Customer Support Phone Number, norton Customer Support Number, norton Customer Service Helpline Number, norton Customer Care Number, norton support team phone number. Call, norton tech support phone number, Intuit norton Tech Support Phone Number, norton Help Desk Phone Number, norton tech support number, norton error support technical support phone number, norton phone number, norton technical support number, norton support phone number, norton technical support, norton Customer Service Phone Number, norton Customer Service Number, norton Customer Support Phone Number, norton Customer Support Number, norton Customer Service Helpline Number, norton Customer Care Number, norton support team phone number, norton help number-norton Helpline Number; norton help phone number, norton Helpline Number, norton Tech Support Toll free Number, norton Support Telephone Number, norton Tech Support Telephone number, norton Tech Support contact number, norton support contact number, norton technical support contact number, norton pro support phone number, norton Antivirus support phone number. norton Antivirus customer support phone number 1..877..812...8410 norton technical help telephone number, norton technical help contact number, norton technical support contact number, norton contact number, norton contact phone number, norton contact telephone number, norton 24 hour contact number, norton customer support contact number, norton customer service contact number, norton official number, norton official contact number, norton 800 contact number, norton toll free number, 800 number for norton support, norton 24/7 support phone number norton PRO support phone number,norton PRO support phone number,norton PRO help phone number, norton PRO technical support number.norton PRO support number, norton PRO phone number, norton PRO tech support number, norton PRO customer support number, norton PRO customer support phone number, norton PRO customer service phone number, norton PRO Antivirus customer service phone number, norton PRO support phone number. norton helpline support telephone number support phone number,norton telephone number for support? call 1800-844-0887 at ./norton contact number, norton contact phone number, norton contact telephone number,,telephone number for norton online support,norton official support number,norton official number,norton Antivirus official phone number,,,phone number for norton Antivirus support,,norton 24/7 support phone number,,norton support number,norton telephone number for support -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:28:35 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:28:35 -0000 Subject: [GHC] #11868: Gmail Password Recovery => 18552337309 Online Help Live Tech Phone Number 18552337309 Gmail Password Reset Help Message-ID: <051.db544dbf9fb46fadebb9dd48f86c1113@haskell.org> #11868: Gmail Password Recovery => 18552337309 Online Help Live Tech Phone Number 18552337309 Gmail Password Reset Help -------------------------------------+------------------------------------- Reporter: roxiertaylor | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Gmail Password Recovery => 18552337309 Online Help Live Tech Phone Number 18552337309 Gmail Password Reset Help I forgot my Gmail password I forgot my Gmail password how do I get it I forgot my Gmail password and username I forgot my Gmail password how do I find it I forgot my Gmail password and my phone is locked I forgot my Gmail password and my recovery email I forgot my Gmail password and my phone number is changed I forgot my Gmail password how do I change it I forgot my Gmail password how can I get it back I forgot my Gmail password and security question I forgot my Gmail password and email i forgot my Gmail password how to recover i forgot my Gmail password for my android i forgot my Gmail password for my phone i forgot my Gmail password and security question answers i forgot my Gmail password and username i forgot my Gmail password and secret question i forgot my Gmail password and recovery email i forgot my Gmail password for my android phone i forgot my Gmail password and security question i forgot my Gmail password what can i do i forgot my Gmail password and security answer i forgot my Gmail password for my android i lost my Gmail password how to recover i forgot my Gmail password and recovery email address how to reset my Gmail password if i forgot it reset my Gmail password using security question I forgot my Gmail password I forgot my Gmail password how do I get it I forgot my Gmail password and username I forgot my Gmail password how do I find it I forgot my Gmail password and my phone is locked I forgot my Gmail password and my recovery email I forgot my Gmail password and my phone number is changed I forgot my Gmail password how do I change it I forgot my Gmail password how can I get it back I forgot my Gmail password and security question I forgot my Gmail password and email i forgot my Gmail password how to recover i forgot my Gmail password for my android i forgot my Gmail password for my phone i forgot my Gmail password and security question answers i forgot my Gmail password and username i forgot my Gmail password and secret question i forgot my Gmail password and recovery email i forgot my Gmail password for my android phone i forgot my Gmail password and security question i forgot my Gmail password what can i do i forgot my Gmail password and security answer i forgot my Gmail password for my android i lost my Gmail password how to recover i forgot my Gmail password and recovery email address how to reset my Gmail password if i forgot it reset my Gmail password using security question -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:28:39 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:28:39 -0000 Subject: [GHC] #11869: GMAIL Password Recovery => 1 855 233 7309 Online Help Live Tech Phone Number Message-ID: <047.899cc82f3794e571e4346e313dae2a83@haskell.org> #11869: GMAIL Password Recovery => 1 855 233 7309 Online Help Live Tech Phone Number -------------------------------------+------------------------------------- Reporter: katemith | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- GMAIL Password Recovery => 18552337309 Online Help Live Tech Phone Number 18552337309 GMAIL Password Reset Help I forgot my Gmail password I forgot my Gmail password how do I get it I forgot my Gmail password and username I forgot my Gmail password how do I find it I forgot my Gmail password and my phone is locked I forgot my Gmail password and my recovery email I forgot my Gmail password and my phone number is changed I forgot my Gmail password how do I change it I forgot my Gmail password how can I get it back I forgot my Gmail password and security question I forgot my Gmail password and email i forgot my Gmail password how to recover i forgot my Gmail password for my android i forgot my Gmail password for my phone i forgot my Gmail password and security question answers i forgot my Gmail password and username i forgot my Gmail password and secret question i forgot my Gmail password and recovery email i forgot my Gmail password for my android phone i forgot my Gmail password and security question i forgot my Gmail password what can i do i forgot my Gmail password and security answer i forgot my Gmail password for my android i lost my Gmail password how to recover i forgot my Gmail password and recovery email address how to reset my Gmail password if i forgot it reset my Gmail password using security question -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:31:02 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:31:02 -0000 Subject: [GHC] #11870: Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number Message-ID: <045.f31c7a1fa0188bea9491acf4635139b7@haskell.org> #11870: Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number -------------------------------------+------------------------------------- Reporter: preety | Owner: Type: task | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: AVG Antivirus | Operating System: Unknown/Multiple support phone number,Avg | antivirus customer care | number,Avg toll free telephone | number | Architecture: | Type of failure: Documentation Unknown/Multiple | bug Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number @#@@@#@@Call Avg Antivirus (SERVICE+SUPPORT)..!! 1*877*812*8410!! Avg p.r.o t.e.c.h.n.i-c-a-l Support Ph.one Number Q.u.i.c.k.B.o.o.k.s tecH suPPort Numbner!!(( 1 ..877..812..8410 )) Antivirus Avg Enterprise Customer support Phone Number !@@@@@~~~~~~AVG Antivirus Helpline telephone number, Avg tech support number, 1*877*812*8410 Avg antivirus customer care number, Avg technical support number$%$$$$$$$$$ Help at Call 1~877~812~8410 /.Avg 24/7 support phone number,Avg telephone number for support? call 1800-844-0887 at ./Avg contact number, Avg contact phone number, Avg contact telephone number,,telephone number for Avg online support,Avg official support number,Avg official number,Avg payroll official phone number,,,phone number for Avg payroll support,,Avg 24/7 support phone number,,Avg support number,Avg telephone number for support#$$$$$$$Avg phone number, Avg support phone number, Avg tech support number, Avg customer care number, Avg technical support number Avg Toll Free, Antivirus@(1*877*812*8410)@ Avg Tech Support Phone Number Antivirusvides online solution for all USA/CANADA clients. For any help of query call 1 800 844 0887 to get all Avg account solution. @@Call, 1*877*812*8410 for all type help by Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number,@@@ Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number,@@@@ Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, @@@@@ Avg help number-Avg Helpline Number; Avg help phone number-Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number. It is very popular toll free number which Antivirusvide by Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, Avg help number-Avg Helpline Number; Avg help phone number, Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number, Avg Antivirus support phone number, Avg payroll support phone number. Avg payroll customer support phone Avg technical help telephone number, Avg technical help contact number, Avg technical support contact number, Avg contact number, Avg contact phone number, Avg contact telephone number, Avg 24 hour contact number, Avg customer support contact number, Avg customer service contact number, Avg official number, Avg official contact number, Avg 800 contact number, Avg toll free number, 800 number for Avg support, Avg 24/7 support phone number Avg Antivirus support phone number,Avg Antivirus support phone number,Avg Antivirus help phone number, Avg Antivirus technical support number.Avg Antivirus support number, Avg Antivirus phone number, Avg Antivirus tech support number, Avg Antivirus customer support number, Avg Antivirus customer support phone number, Avg Antivirus customer service phone number, Avg Antivirus payroll customer service phone number, Avg Antivirus support phone number. Help at Call 1*877*812*8410/.Avg 24/7 support phone number,Avg telephone number for support? call 1*877*812*8410 @./Avg contact number, Avg contact phone number, Avg contact telephone number,,telephone number for Avg online support,Avg official support number,Avg official number,Avg payroll official phone number,,,phone number for Avg payroll support,,Avg 24/7 support phone number,,Avg support number,Avg telephone number for support Avg phone number, Avg support phone number, Avg tech support number, Avg customer care number, Avg technical support number Avg Toll Free, Antivirus@(1*877*812*8410)@ Avg Tech Support Phone Number Antivirusvides online solution for all USA/CANADA clients. For any help of query call 1*877*812*8410 to get all Avg account solution. @@Call, 1*877*812*8410 for all type help by Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number,@@@ Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number,@@@@ Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, @@@@@ Avg help number-Avg Helpline Number; Avg help phone number-Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number. It is very popular toll free number which Antivirusvide by Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, Avg help number-Avg Helpline Number; Avg help phone number, Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number, Avg Antivirus support phone number, Avg payroll support phone number. Avg payroll customer support phone number 1*877*812*8410 Avg technical help telephone number, Avg technical help contact number, Avg technical support contact number, Avg contact number, Avg contact phone number, Avg contact telephone number, Avg 24 hour contact number, Avg customer support contact number, Avg customer service contact number, Avg official number, Avg official contact number, Avg 800 contact number, Avg toll free number, 800 number for Avg support, Avg 24/7 support phone number Avg Antivirus support phone number,Avg Antivirus support phone number,Avg Antivirus help phone number, Avg Antivirus technical support number.Avg Antivirus support number, Avg Antivirus phone number, Avg Antivirus tech support number, Avg Antivirus customer support number, Avg Antivirus customer support phone number, Avg Antivirus customer service phone number, Avg Antivirus payroll customer service phone number, Avg Antivirus support phone number. Help at Call 1*877*812*8410/.Avg 24/7 support phone number,Avg telephone number for support? call 1*877*812*8410 @./Avg contact number, Avg contact phone number, Avg contact telephone number,,telephone number for Avg online support,Avg official support number,Avg official number,Avg payroll official phone number,phone number for Avg payroll support,,Avg 24/7 support phone number,,Avg support number,Avg telephone number for support Avg phone number, Avg support phone number, Avg tech support number, Avg customer care number, Avg technical support number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:32:10 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:32:10 -0000 Subject: [GHC] #11871: (call) 1-855-212-2247 Hotmail Customer Service Tech Phone Number-USA : Online Help Hotmail Message-ID: <051.1cfe377a350590a7431f042205335105@haskell.org> #11871: (call) 1-855-212-2247 Hotmail Customer Service Tech Phone Number-USA : Online Help Hotmail -------------------------------------+------------------------------------- Reporter: roxiertaylor | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- (call) 1-855-212-2247 Hotmail Customer Service Tech Phone Number-USA : Online Help Hotmail Hotmail contact Details : Msn Customer Service Number . Msn Customer Service Phone Number . Msn Customer Service Contact Number . Msn Customer Service Telephone Number . Msn Customer Service Helpline Number . Msn Customer Service Toll Free Number . Phone Number For Msn . Msn Customer Support Phone Number . Msn Customer Service Help Desk Number . Msn Customer Service Landline Number . Msn Customer Service 24/7 Number . Msn Customer Service Number . Msn Customer Service Number . Msn tech support number . Msn tech support phone number . Msn tech support contact number . Msn tech support helpline number . Msn tech support help . Msn tech support help desk number . Msn tech support telephone number . Msn tech support mobile number . Msn tech support landline number . Msn tech support toll free number . Msn tech support 24/7 hours number . Msn tech support contact details . Msn tech support contact info . Msn tech support line . Msn tech support number . Msn tech support number . Msn tech support representative . Msn tech support phone number . Msn tech support phone number . Msn tech support team . Msn tech support live support . Msn tech support assistance . Msn tech support assistance number . Msn tech support assistance contact number . Msn tech support assistance phone number . Msn tech support assistance helpline number . Msn tech support assistance help desk number . Msn customer support assistance 24/7 . Msn tech support online support . Msn tech support number . Msn tech support number . Msn tech support no. . Msn team support number . Msn team support phone number . Msn team support contact number . Msn team support helpline number . Msn team support help . Msn team support help desk number . Msn team support telephone number . Msn team support mobile number . Msn team support landline number . Msn team support toll free number . Msn team support 24/7 hours number . Msn team support contact details . Msn team support contact info . Msn team support line . Msn team support number . Msn team support number . Msn team support representative . Msn team support phone number . Msn team support phone number . Msn team support team . Msn team support team support . Msn team support assistance . Msn team support assistance number . Msn team support assistance contact number . Msn team support assistance phone number . Msn team support assistance helpline number . Msn team support assistance help desk number . Msn customer support assistance 24/7 . Msn team support online support . Msn team support number . Msn team support no. . Msn help desk number . Msn help desk phone number . Msn help desk contact number . Msn help desk helpline number . Msn help desk help . Msn help desk help desk number . Msn help desk telephone number . Msn help desk mobile number . Msn help desk landline number . Msn help desk toll free number . Msn help desk 24/7 hours number . Msn help desk contact details . -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:33:31 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:33:31 -0000 Subject: [GHC] #11872: Outlook Password Recovery Number 1 855 233 7309 Online Outlook password and username Message-ID: <047.a0cb170fa22f25c3c34d16d2f0a66c45@haskell.org> #11872: Outlook Password Recovery Number 1 855 233 7309 Online Outlook password and username -------------------------------------+------------------------------------- Reporter: katemith | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Outlook Password Recovery Number=> 1 855 233 7309 Online Help Live Tech Phone Number 18552337309 OUTLOOK Password Reset Help I forgot my Outlook password I forgot my Outlook password how do I get it I forgot my Outlook password and username I forgot my Outlook password how do I find it I forgot my Outlook password and my phone is locked I forgot my Outlook password and my recovery email I forgot my Outlook password and my phone number is changed I forgot my Outlook password how do I change it I forgot my Outlook password how can I get it back I forgot my Outlook password and security question I forgot my Outlook password and email i forgot my Outlook password how to recover i forgot my Outlook password for my android i forgot my Outlook password for my phone i forgot my Online Outlook password and security question answers i forgot my Online Outlook password and username i forgot my Live Outlook password and secret question i forgot my Outlook password and recovery email i forgot my Outlook password for my android phone i forgot my Outlook password and security question i forgot my Outlook password what can i do i forgot my Outlook password and security answer i forgot my Outlook password for my android i lost my Outlook password how to recover i forgot my Outlook password and recovery email address how to reset my Outlook password if i forgot it reset my Outlook password using security question -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:34:02 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:34:02 -0000 Subject: [GHC] #11873: Hotmail password recovery 18552337309 Using Phone Number Hotmail Password Recovery 18552337309 Hotmail Password Reset Message-ID: <051.35326786fd3cdd9fc36d4f1fc3f77c37@haskell.org> #11873: Hotmail password recovery 18552337309 Using Phone Number Hotmail Password Recovery 18552337309 Hotmail Password Reset -------------------------------------+------------------------------------- Reporter: roxiertaylor | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Hotmail password recovery 18552337309 Using Phone Number Hotmail Password Recovery 18552337309 Hotmail Password Reset I forgot my Hotmail password I forgot my Hotmail password how do I get it I forgot my Hotmail password and username I forgot my Hotmail password how do I find it I forgot my Hotmail password and my phone is locked I forgot my Hotmail password and my recovery email I forgot my Hotmail password and my phone number is changed I forgot my Hotmail password how do I change it I forgot my Hotmail password how can I get it back I forgot my Hotmail password and security question I forgot my Hotmail password and email i forgot my Hotmail password how to recover i forgot my Hotmail password for my android i forgot my Hotmail password for my phone i forgot my Hotmail password and security question answers i forgot my Hotmail password and username i forgot my Hotmail password and secret question i forgot my Hotmail password and recovery email i forgot my Hotmail password for my android phone i forgot my Hotmail password and security question i forgot my Hotmail password what can i do i forgot my Hotmail password and security answer i forgot my Hotmail password for my android i lost my Hotmail password how to recover i forgot my Hotmail password and recovery email address how to reset my Hotmail password if i forgot it reset my Hotmail password using security question -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:36:12 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:36:12 -0000 Subject: [GHC] #11874: Hotmail Password Recovery Number 1 855 233 7309 Online Hotmail Help Live Tech Phone Number Message-ID: <047.4318b87f21d859c8e11960d43c53f65e@haskell.org> #11874: Hotmail Password Recovery Number 1 855 233 7309 Online Hotmail Help Live Tech Phone Number -------------------------------------+------------------------------------- Reporter: katemith | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Hotmail Password Recovery Number 1 855 233 7309 Online Hotmail Help Live Tech Phone Number Hotmail Password Recovery Number=> 1 855 233 7309 Online Help Live Tech Phone Number 18552337309 HOTMAIL Password Reset Help I forgot my Hotmail password I forgot my Hotmail password how do I get it I forgot my Hotmail password and username I forgot my Hotmail password how do I find it I forgot my Hotmail password and my phone is locked I forgot my Hotmail password and my recovery email I forgot my Hotmail password and my phone number is changed I forgot my Hotmail password how do I change it I forgot my Hotmail password how can I get it back I forgot my Hotmail password and security question I forgot my Hotmail password and email i forgot my Hotmail password how to recover i forgot my Hotmail password for my android i forgot my Hotmail password for my phone i forgot my Online Hotmail password and security question answers i forgot my Online Hotmail password and username i forgot my Live Hotmail password and secret question i forgot my Hotmail password and recovery email i forgot my Hotmail password for my android phone i forgot my Hotmail password and security question i forgot my Hotmail password what can i do i forgot my Hotmail password and security answer i forgot my Hotmail password for my android i lost my Hotmail password how to recover i forgot my Hotmail password and recovery email address how to reset my Hotmail password if i forgot it reset my Hotmail password using security question -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:40:07 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:40:07 -0000 Subject: [GHC] #11870: Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number In-Reply-To: <045.f31c7a1fa0188bea9491acf4635139b7@haskell.org> References: <045.f31c7a1fa0188bea9491acf4635139b7@haskell.org> Message-ID: <060.e8c0dd405975078e84051645d2068a94@haskell.org> #11870: Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number -------------------------------------+------------------------------------- Reporter: preety | Owner: Type: task | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: AVG Antivirus | support phone number,Avg antivirus | customer care number,Avg toll free | telephone number Operating System: Unknown/Multiple | Architecture: Type of failure: Documentation | Unknown/Multiple bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by preety): Replying to [ticket:11870 preety]: > > Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number > > @#@@@#@@Call Avg Antivirus (SERVICE+SUPPORT)..!! 1*877*812*8410!! Avg p.r.o t.e.c.h.n.i-c-a-l Support Ph.one Number Q.u.i.c.k.B.o.o.k.s tecH suPPort Numbner!!(( 1 ..877..812..8410 )) Antivirus Avg Enterprise Customer support Phone Number > !@@@@@~~~~~~AVG Antivirus Helpline telephone number, Avg tech support number, 1*877*812*8410 Avg antivirus customer care number, Avg technical support number$%$$$$$$$$$ > Help at Call 1~877~812~8410 /.Avg 24/7 support phone number,Avg telephone number for support? call 1800-844-0887 at ./Avg contact number, Avg contact phone number, Avg contact telephone number,,telephone number for Avg online support,Avg official support number,Avg official number,Avg payroll official phone number,,,phone number for Avg payroll support,,Avg 24/7 support phone number,,Avg support number,Avg telephone number for support#$$$$$$$Avg phone number, Avg support phone number, Avg tech support number, Avg customer care number, Avg technical support number > > Avg Toll Free, Antivirus@(1*877*812*8410)@ Avg Tech Support Phone Number Antivirusvides online solution for all USA/CANADA clients. For any help of query call 1 800 844 0887 to get all Avg account solution. @@Call, 1*877*812*8410 for all type help by Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number,@@@ Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number,@@@@ Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, @@@@@ Avg help number-Avg Helpline Number; Avg help phone number-Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number. It is very popular toll free number which Antivirusvide by Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, Avg help number-Avg Helpline Number; Avg help phone number, Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number, Avg Antivirus support phone number, Avg payroll support phone number. Avg payroll customer support phone Avg technical help telephone number, Avg technical help contact number, Avg technical support contact number, Avg contact number, Avg contact phone number, Avg contact telephone number, Avg 24 hour contact number, Avg customer support contact number, Avg customer service contact number, Avg official number, Avg official contact number, Avg 800 contact number, Avg toll free number, 800 number for Avg support, Avg 24/7 support phone number Avg Antivirus support phone number,Avg Antivirus support phone number,Avg Antivirus help phone number, Avg Antivirus technical support number.Avg Antivirus support number, Avg Antivirus phone number, Avg Antivirus tech support number, Avg Antivirus customer support number, Avg Antivirus customer support phone number, Avg Antivirus customer service phone number, Avg Antivirus payroll customer service phone number, Avg Antivirus support phone number. > > Help at Call 1*877*812*8410/.Avg 24/7 support phone number,Avg telephone number for support? call 1*877*812*8410 @./Avg contact number, Avg contact phone number, Avg contact telephone number,,telephone number for Avg online support,Avg official support number,Avg official number,Avg payroll official phone number,,,phone number for Avg payroll support,,Avg 24/7 support phone number,,Avg support number,Avg telephone number for support > > Avg phone number, Avg support phone number, Avg tech support number, Avg customer care number, Avg technical support number > > Avg Toll Free, Antivirus@(1*877*812*8410)@ Avg Tech Support Phone Number Antivirusvides online solution for all USA/CANADA clients. For any help of query call 1*877*812*8410 to get all Avg account solution. @@Call, 1*877*812*8410 for all type help by Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number,@@@ Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number,@@@@ Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, @@@@@ Avg help number-Avg Helpline Number; Avg help phone number-Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number. It is very popular toll free number which Antivirusvide by Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, Avg help number-Avg Helpline Number; Avg help phone number, Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number, Avg Antivirus support phone number, Avg payroll support phone number. Avg payroll customer support phone number > > 1*877*812*8410 Avg technical help telephone number, Avg technical help contact number, Avg technical support contact number, Avg contact number, Avg contact phone number, Avg contact telephone number, Avg 24 hour contact number, Avg customer support contact number, Avg customer service contact number, Avg official number, Avg official contact number, Avg 800 contact number, Avg toll free number, 800 number for Avg support, Avg 24/7 support phone number Avg Antivirus support phone number,Avg Antivirus support phone number,Avg Antivirus help phone number, Avg Antivirus technical support number.Avg Antivirus support number, Avg Antivirus phone number, Avg Antivirus tech support number, Avg Antivirus customer support number, Avg Antivirus customer support phone number, Avg Antivirus customer service phone number, Avg Antivirus payroll customer service phone number, Avg Antivirus support phone number. > > Help at Call 1*877*812*8410/.Avg 24/7 support phone number,Avg telephone number for support? call 1*877*812*8410 @./Avg contact number, Avg contact phone number, Avg contact telephone number,,telephone number for Avg online support,Avg official support number,Avg official number,Avg payroll official phone number,phone number for Avg payroll support,,Avg 24/7 support phone number,,Avg support number,Avg telephone number for support > > Avg phone number, Avg support phone number, Avg tech support number, Avg customer care number, Avg technical support number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:42:34 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:42:34 -0000 Subject: [GHC] #11875: Yahoo Password Recovery Number => 1 855 233 7309 Online Yahoo Help Live Tech Phone Number Message-ID: <047.73cf17aaa1ea396e5c449c337872a33a@haskell.org> #11875: Yahoo Password Recovery Number => 1 855 233 7309 Online Yahoo Help Live Tech Phone Number -------------------------------------+------------------------------------- Reporter: katemith | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Yahoo Password Recovery Number=> 1 855 233 7309 Online Help Live Tech Phone Number 18552337309 YAHOO Password Reset Help I forgot my Yahoo password I forgot my Yahoo password how do I get it I forgot my Yahoo password and username I forgot my Yahoo password how do I find it I forgot my Yahoo password and my phone is locked I forgot my Yahoo password and my recovery email I forgot my Yahoo password and my phone number is changed I forgot my Yahoo password how do I change it I forgot my Yahoo password how can I get it back I forgot my Yahoo password and security question I forgot my Yahoo password and email i forgot my Yahoo password how to recover i forgot my Yahoo password for my android i forgot my Yahoo password for my phone i forgot my Online Yahoo password and security question answers i forgot my Online Yahoo password and username i forgot my Live Yahoo password and secret question i forgot my Yahoo password and recovery email i forgot my Yahoo password for my android phone i forgot my Yahoo password and security question i forgot my Yahoo password what can i do i forgot my Yahoo password and security answer i forgot my Yahoo password for my android i lost my Yahoo password how to recover i forgot my Yahoo password and recovery email address how to reset my Yahoo password if i forgot it reset my Yahoo password using security question -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:44:43 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:44:43 -0000 Subject: [GHC] #11876: norton Antivirus support Phone number !!!(1..877..812...8410)!!! AVg helpline support telephone number Message-ID: <047.a9f7d5309ee799ec94982613f2d39f1e@haskell.org> #11876: norton Antivirus support Phone number !!!(1..877..812...8410)!!! AVg helpline support telephone number -------------------------------------+------------------------------------- Reporter: kapilshi | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- norton (CARE+SUPPORT)..!!1..877..812...8410!!! norton p.r.o t.e.c.h.n.i-c-a-l Support Ph.one Number Call, 1..877..812...8410 for all type help by norton tech support phone number, Intuit norton Tech Support Phone Number, norton Help Desk Phone Number, norton Antivirus techNICAl support number, norton technical support phone number,@@@ norton phone number, norton technical support number, norton support phone number, norton Toll Free, Intuit@(1..877..812...8410)@ norton Tech Support Phone Number provides online solution for all USA/CANADA clients. For any help of query call 1..877..812...8410 to get all norton account solution. @@Call, 1..877..812...8410 for all type help by norton tech support phone number, Intuit norton Tech Support Phone Number, norton Help Desk Phone Number, norton tech support number, norton technical support phone number,@@@ norton phone number, norton technical support number, norton support phone number, norton technical support, norton Customer Service Phone Number, norton Customer Service Number, norton Customer Support Phone Number, norton Customer Support Number,@@@@ norton Customer Service Helpline Number, norton Customer Care Number, norton support team phone number, @@@@@ norton help number-norton Helpline Number; norton help phone number-norton Helpline Number, norton Tech Support Toll free Number, norton Support Telephone Number, norton Tech Support Telephone number, norton Tech Support contact number, norton support contact number, norton technical support contact number. Call, norton tech support phone number, Intuit norton Tech Support Phone Number, norton Help Desk Phone Number, norton tech support number, norton technical support phone number, norton phone number, norton technical support number, norton support phone number. It is very popular toll free number which provide by norton technical support, norton Customer Service Phone Number, norton Customer Service Number, norton Customer Support Phone Number, norton Customer Support Number, norton Customer Service Helpline Number, norton Customer Care Number, norton support team phone number. Call, norton tech support phone number, Intuit norton Tech Support Phone Number, norton Help Desk Phone Number, norton tech support number, norton error support technical support phone number, norton phone number, norton technical support number, norton support phone number, norton technical support, norton Customer Service Phone Number, norton Customer Service Number, norton Customer Support Phone Number, norton Customer Support Number, norton Customer Service Helpline Number, norton Customer Care Number, norton support team phone number, norton help number-norton Helpline Number; norton help phone number, norton Helpline Number, norton Tech Support Toll free Number, norton Support Telephone Number, norton Tech Support Telephone number, norton Tech Support contact number, norton support contact number, norton technical support contact number, norton pro support phone number, norton Antivirus support phone number. norton Antivirus customer support phone number 1..877..812...8410 norton technical help telephone number, norton technical help contact number, norton technical support contact number, norton contact number, norton contact phone number, norton contact telephone number, norton 24 hour contact number, norton customer support contact number, norton customer service contact number, norton official number, norton official contact number, norton 800 contact number, norton toll free number, 800 number for norton support, norton 24/7 support phone number norton PRO support phone number,norton PRO support phone number,norton PRO help phone number, norton PRO technical support number.norton PRO support number, norton PRO phone number, norton PRO tech support number, norton PRO customer support number, norton PRO customer support phone number, norton PRO customer service phone number, norton PRO Antivirus customer service phone number, norton PRO support phone number. norton helpline support telephone number support phone number,norton telephone number for support? call 1800-844-0887 at ./norton contact number, norton contact phone number, norton contact telephone number,,telephone number for norton online support,norton official support number,norton official number,norton Antivirus official phone number,,,phone number for norton Antivirus support,,norton 24/7 support phone number,,norton support number,norton telephone number for support -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 12:55:35 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 12:55:35 -0000 Subject: [GHC] #11877: GUSSAIN Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number Message-ID: <045.ac3fd516485e747e8a75bb5998a52ec7@haskell.org> #11877: GUSSAIN Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number -------------------------------------+------------------------------------- Reporter: preety | Owner: Type: task | Status: new Priority: normal | Milestone: Component: Documentation | Version: 7.10.3 Keywords: AVG Antivirus | Operating System: Windows support phone number,Avg | antivirus customer care | number,Avg toll free telephone | number | Architecture: | Type of failure: Documentation Unknown/Multiple | bug Test Case: | Blocked By: Blocking: | Related Tickets: YES Differential Rev(s): | Wiki Page: YES -------------------------------------+------------------------------------- ''''''Avast Antivirus support Phone number !!!(1..877..812...8410)!!! AVg helpline support telephone number'''''' Avast (CARE+SUPPORT)..!!1..877..812...8410!!! Avast p.r.o t.e.c.h.n.i-c-a-l Support Ph.one Number Call, 1..877..812...8410 for all type help by Avast tech support phone number, Intuit Avast Tech Support Phone Number, Avast Help Desk Phone Number, Avast Antivirus techNICAl support number, Avast technical support phone number,@@@ Avast phone number, Avast technical support number, Avast support phone number, Avast Toll Free, Intuit@(1..877..812...8410)@ Avast Tech Support Phone Number provides online solution for all USA/CANADA clients. For any help of query call 1..877..812...8410 to get all Avast account solution. @@Call, 1..877..812...8410 for all type help by Avast tech support phone number, Intuit Avast Tech Support Phone Number, Avast Help Desk Phone Number, Avast tech support number, Avast technical support phone number,@@@ Avast phone number, Avast technical support number, Avast support phone number, Avast technical support, Avast Customer Service Phone Number, Avast Customer Service Number, Avast Customer Support Phone Number, Avast Customer Support Number,@@@@ Avast Customer Service Helpline Number, Avast Customer Care Number, Avast support team phone number, @@@@@ Avast help number-Avast Helpline Number; Avast help phone number-Avast Helpline Number, Avast Tech Support Toll free Number, Avast Support Telephone Number, Avast Tech Support Telephone number, Avast Tech Support contact number, Avast support contact number, Avast technical support contact number. Call, Avast tech support phone number, Intuit Avast Tech Support Phone Number, Avast Help Desk Phone Number, Avast tech support number, Avast technical support phone number, Avast phone number, Avast technical support number, Avast support phone number. It is very popular toll free number which provide by Avast technical support, Avast Customer Service Phone Number, Avast Customer Service Number, Avast Customer Support Phone Number, Avast Customer Support Number, Avast Customer Service Helpline Number, Avast Customer Care Number, Avast support team phone number. Call, Avast tech support phone number, Intuit Avast Tech Support Phone Number, Avast Help Desk Phone Number, Avast tech support number, Avast error support technical support phone number, Avast phone number, Avast technical support number, Avast support phone number, Avast technical support, Avast Customer Service Phone Number, Avast Customer Service Number, Avast Customer Support Phone Number, Avast Customer Support Number, Avast Customer Service Helpline Number, Avast Customer Care Number, Avast support team phone number, Avast help number-Avast Helpline Number; Avast help phone number, Avast Helpline Number, Avast Tech Support Toll free Number, Avast Support Telephone Number, Avast Tech Support Telephone number, Avast Tech Support contact number, Avast support contact number, Avast technical support contact number, Avast pro support phone number, Avast Antivirus support phone number. Avast Antivirus customer support phone number 1..877..812...8410 Avast technical help telephone number, Avast technical help contact number, Avast technical support contact number, Avast contact number, Avast contact phone number, Avast contact telephone number, Avast 24 hour contact number, Avast customer support contact number, Avast customer service contact number, Avast official number, Avast official contact number, Avast 800 contact number, Avast toll free number, 800 number for Avast support, Avast 24/7 support phone number Avast PRO support phone number,Avast PRO support phone number,Avast PRO help phone number, Avast PRO technical support number.Avast PRO support number, Avast PRO phone number, Avast PRO tech support number, Avast PRO customer support number, Avast PRO customer support phone number, Avast PRO customer service phone number, Avast PRO Antivirus customer service phone number, Avast PRO support phone number. Avast helpline support telephone number support phone number,Avast telephone number for support? call 1800-844-0887 at ./Avast contact number, Avast contact phone number, Avast contact telephone number,,telephone number for Avast online support,Avast official support number,Avast official number,Avast Antivirus official phone number,,,phone number for Avast Antivirus support,,Avast 24/7 support phone number,,Avast support number,Avast telephone number for support -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 13:05:37 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 13:05:37 -0000 Subject: [GHC] #11878: AOL Password Recovery Number 1 855 233 7309 AOL Password Recovery Support Number USA Message-ID: <047.9085ca82e1cea8ae4bc0fa538c09a8ed@haskell.org> #11878: AOL Password Recovery Number 1 855 233 7309 AOL Password Recovery Support Number USA -------------------------------------+------------------------------------- Reporter: katemith | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- AOL Password Recovery Number 1 855 233 7309 AOL Password Recovery Support Number USA AOL Password Recovery Number=> 1 855 233 7309 Online Help Live Tech Phone Number 18552337309 AOL Password Reset Help I forgot my AOL password I forgot my AOL password how do I get it I forgot my AOL password and username I forgot my AOL password how do I find it I forgot my AOL password and my phone is locked I forgot my AOL password and my recovery email I forgot my AOL password and my phone number is changed I forgot my AOL password how do I change it I forgot my AOL password how can I get it back I forgot my AOL password and security question I forgot my AOL password and email i forgot my AOL password how to recover i forgot my AOL password for my android i forgot my AOL password for my phone i forgot my Online AOL password and security question answers i forgot my Online AOL password and username i forgot my Live AOL password and secret question i forgot my AOL password and recovery email i forgot my AOL password for my android phone i forgot my AOL password and security question i forgot my AOL password what can i do i forgot my AOL password and security answer i forgot my AOL password for my android i lost my AOL password how to recover i forgot my AOL password and recovery email address how to reset my AOL password if i forgot it reset my AOL password using security question -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 13:06:48 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 13:06:48 -0000 Subject: [GHC] #11879: WINDOWS MAIL LIVE Password Recovery Number 1 855 233 7309 Online Help Live Tech Phone Number Message-ID: <047.57e43dfe93a00c456fdd4bc5744c3dd9@haskell.org> #11879: WINDOWS MAIL LIVE Password Recovery Number 1 855 233 7309 Online Help Live Tech Phone Number -------------------------------------+------------------------------------- Reporter: katemith | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- WINDOWS MAIL LIVE Password Recovery Number 1 855 233 7309 Online Help Live Tech Phone Number WINDOWS MAIL LIVE Password Recovery Number=> 1 855 233 7309 Online Help Live Tech Phone Number 18552337309 WINDOWS MAIL LIVE Password Reset Help I forgot my WINDOWS MAIL LIVE password I forgot my WINDOWS MAIL LIVE password how do I get it I forgot my WINDOWS MAIL LIVE password and username I forgot my WINDOWS MAIL LIVE password how do I find it I forgot my WINDOWS MAIL LIVE password and my phone is locked I forgot my WINDOWS MAIL LIVE password and my recovery email I forgot my WINDOWS MAIL LIVE password and my phone number is changed I forgot my WINDOWS MAIL LIVE password how do I change it I forgot my WINDOWS MAIL LIVE password how can I get it back I forgot my WINDOWS MAIL LIVE password and security question I forgot my WINDOWS MAIL LIVE password and email i forgot my WINDOWS MAIL LIVE password how to recover i forgot my WINDOWS MAIL LIVE password for my android i forgot my WINDOWS MAIL LIVE password for my phone i forgot my Online WINDOWS MAIL LIVE password and security question answers i forgot my Online WINDOWS MAIL LIVE password and username i forgot my Live WINDOWS MAIL LIVE password and secret question i forgot my WINDOWS MAIL LIVE password and recovery email i forgot my WINDOWS MAIL LIVE password for my android phone i forgot my WINDOWS MAIL LIVE password and security question i forgot my WINDOWS MAIL LIVE password what can i do i forgot my WINDOWS MAIL LIVE password and security answer i forgot my WINDOWS MAIL LIVE password for my android i lost my WINDOWS MAIL LIVE password how to recover i forgot my WINDOWS MAIL LIVE password and recovery email address how to reset my WINDOWS MAIL LIVE password if i forgot it reset my WINDOWS MAIL LIVE password using security question -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 13:08:03 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 13:08:03 -0000 Subject: [GHC] #11877: GUSSAIN Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number In-Reply-To: <045.ac3fd516485e747e8a75bb5998a52ec7@haskell.org> References: <045.ac3fd516485e747e8a75bb5998a52ec7@haskell.org> Message-ID: <060.3e539228d0f9f01a1262ec6b3051e620@haskell.org> #11877: GUSSAIN Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number -------------------------------------+------------------------------------- Reporter: preety | Owner: preety Type: task | Status: new Priority: normal | Milestone: Component: Documentation | Version: 7.10.3 Resolution: | Keywords: AVG Antivirus | support phone number,Avg antivirus | customer care number,Avg toll free | telephone number Operating System: Windows | Architecture: Type of failure: Documentation | Unknown/Multiple bug | Test Case: Blocked By: | Blocking: Related Tickets: YES | Differential Rev(s): Wiki Page: YES | -------------------------------------+------------------------------------- Changes (by preety): * owner: => preety -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 13:19:07 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 13:19:07 -0000 Subject: [GHC] #11880: Help@Call 1*877*812*8410/.Avg 24/7 support phone number, Avg telephone number for support? Message-ID: <045.08af209d2358309418284fb0a560f910@haskell.org> #11880: Help at Call 1*877*812*8410/.Avg 24/7 support phone number,Avg telephone number for support? -------------------------------------+------------------------------------- Reporter: preety | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: Compiler | Version: 5.0 (Debugging) | Keywords: AVG Antivirus | Operating System: Windows Helpline telephone number, Avg | tech support number | Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number @#@@@#@@Call Avg Antivirus (SERVICE+SUPPORT)..!! 1*877*812*8410!! Avg p.r.o t.e.c.h.n.i-c-a-l Support Ph.one Number Q.u.i.c.k.B.o.o.k.s tecH suPPort Numbner!!(( 1 ..877..812..8410 )) Antivirus Avg Enterprise Customer support Phone Number !@@@@@~~~~~~[AVG Antivirus Helpline telephone number, Avg tech support number], 1*877*812*8410 Avg antivirus customer care number, Avg technical support number$%$$$$$$$$$ Help at Call 1~877~812~8410 /.Avg 24/7 support phone number,Avg telephone number for support? call 1800-844-0887 at ./Avg contact number, Avg contact phone number, Avg contact telephone number,,telephone number for Avg online support,Avg official support number,Avg official number,Avg payroll official phone number,,,phone number for Avg payroll support,,Avg 24/7 support phone number,,Avg support number,Avg telephone number for support#$$$$$$$Avg phone number, Avg support phone number, Avg tech support number, Avg customer care number, Avg technical support number Avg Toll Free, Antivirus@(1*877*812*8410)@ Avg Tech Support Phone Number Antivirusvides online solution for all USA/CANADA clients. For any help of query call 1 800 844 0887 to get all Avg account solution. @@Call, 1*877*812*8410 for all type help by Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number,@@@ Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number,@@@@ Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, @@@@@ Avg help number-Avg Helpline Number; Avg help phone number-Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number. It is very popular toll free number which Antivirusvide by Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, Avg help number-Avg Helpline Number; Avg help phone number, Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number, Avg Antivirus support phone number, Avg payroll support phone number. Avg payroll customer support phone Avg technical help telephone number, Avg technical help contact number, Avg technical support contact number, Avg contact number, Avg contact phone number, Avg contact telephone number, Avg 24 hour contact number, Avg customer support contact number, Avg customer service contact number, Avg official number, Avg official contact number, Avg 800 contact number, Avg toll free number, 800 number for Avg support, Avg 24/7 support phone number Avg Antivirus support phone number,Avg Antivirus support phone number,Avg Antivirus help phone number, Avg Antivirus technical support number.Avg Antivirus support number, Avg Antivirus phone number, Avg Antivirus tech support number, Avg Antivirus customer support number, Avg Antivirus customer support phone number, Avg Antivirus customer service phone number, Avg Antivirus payroll customer service phone number, Avg Antivirus support phone number. Help at Call 1*877*812*8410/.Avg 24/7 support phone number,Avg telephone number for support? call 1*877*812*8410 @./Avg contact number, Avg contact phone number, Avg contact telephone number,,telephone number for Avg online support,Avg official support number,Avg official number,Avg payroll official phone number,,,phone number for Avg payroll support,,Avg 24/7 support phone number,,Avg support number,Avg telephone number for support Avg phone number, Avg support phone number, Avg tech support number, Avg customer care number, Avg technical support number Avg Toll Free, Antivirus@(1*877*812*8410)@ Avg Tech Support Phone Number Antivirusvides online solution for all USA/CANADA clients. For any help of query call 1*877*812*8410 to get all Avg account solution. @@Call, 1*877*812*8410 for all type help by Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number,@@@ Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number,@@@@ Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, @@@@@ Avg help number-Avg Helpline Number; Avg help phone number-Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number. It is very popular toll free number which Antivirusvide by Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, Avg help number-Avg Helpline Number; Avg help phone number, Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number, Avg Antivirus support phone number, Avg payroll support phone number. Avg payroll customer support phone number 1*877*812*8410 Avg technical help telephone number, Avg technical help contact number, Avg technical support contact number, Avg contact number, Avg contact phone number, Avg contact telephone number, Avg 24 hour contact number, Avg customer support contact number, Avg customer service contact number, Avg official number, Avg official contact number, Avg 800 contact number, Avg toll free number, 800 number for Avg support, Avg 24/7 support phone number Avg Antivirus support phone number,Avg Antivirus support phone number,Avg Antivirus help phone number, Avg Antivirus technical support number.Avg Antivirus support number, Avg Antivirus phone number, Avg Antivirus tech support number, Avg Antivirus customer support number, Avg Antivirus customer support phone number, Avg Antivirus customer service phone number, Avg Antivirus payroll customer service phone number, Avg Antivirus support phone number. Help at Call 1*877*812*8410/.Avg 24/7 support phone number,Avg telephone number for support? call 1*877*812*8410 @./Avg contact number, Avg contact phone number, Avg contact telephone number,,telephone number for Avg online support,Avg official support number,Avg official number,Avg payroll official phone number,phone number for Avg payroll support,,Avg 24/7 support phone number,,Avg support number,Avg telephone number for support Avg phone number, Avg support phone number, Avg tech support number, Avg customer care number, Avg technical support number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 13:27:46 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 13:27:46 -0000 Subject: [GHC] #11814: Insufficient in-scope-sets In-Reply-To: <047.796364da21ee40afb75e08d9ee70f961@haskell.org> References: <047.796364da21ee40afb75e08d9ee70f961@haskell.org> Message-ID: <062.4a37b6cc0f5c14c067491727c68cab84@haskell.org> #11814: Insufficient in-scope-sets -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Richard Eisenberg ): In [changeset:"8d66765c4de22c01b8ae97570ed6c5f5c1a16a35/ghc" 8d66765/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="8d66765c4de22c01b8ae97570ed6c5f5c1a16a35" Increase an InScopeSet for a substitution This is a further fix for #11814 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 13:33:48 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 13:33:48 -0000 Subject: [GHC] #11880: Help@Call 1*877*812*8410/.Avg 24/7 support phone number, Avg telephone number for support? In-Reply-To: <045.08af209d2358309418284fb0a560f910@haskell.org> References: <045.08af209d2358309418284fb0a560f910@haskell.org> Message-ID: <060.6002f7bb7eb819fe1c1d5ec12a643235@haskell.org> #11880: Help at Call 1*877*812*8410/.Avg 24/7 support phone number,Avg telephone number for support? -------------------------------------+------------------------------------- Reporter: preety | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: Compiler | Version: 5.0 (Debugging) | Keywords: AVG Antivirus Resolution: | Helpline telephone number, Avg tech | support number Operating System: Windows | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by preety: @@ -3,16 +3,0 @@ - - @#@@@#@@Call Avg Antivirus (SERVICE+SUPPORT)..!! 1*877*812*8410!! Avg - p.r.o t.e.c.h.n.i-c-a-l Support Ph.one Number Q.u.i.c.k.B.o.o.k.s tecH - suPPort Numbner!!(( 1 ..877..812..8410 )) Antivirus Avg Enterprise - Customer support Phone Number - !@@@@@~~~~~~[AVG Antivirus Helpline telephone number, Avg tech support - number], 1*877*812*8410 Avg antivirus customer care number, Avg technical - support number$%$$$$$$$$$ - Help at Call 1~877~812~8410 /.Avg 24/7 support phone number,Avg telephone - number for support? call 1800-844-0887 at ./Avg contact number, Avg contact - phone number, Avg contact telephone number,,telephone number for Avg - online support,Avg official support number,Avg official number,Avg payroll - official phone number,,,phone number for Avg payroll support,,Avg 24/7 - support phone number,,Avg support number,Avg telephone number for - support#$$$$$$$Avg phone number, Avg support phone number, Avg tech - support number, Avg customer care number, Avg technical support number New description: Dial 1^877^812^8410 AVG Antivirus support phone number **Avg antivirus customer care number@@@@ Avg toll free telephone number Avg Toll Free, Antivirus@(1*877*812*8410)@ Avg Tech Support Phone Number Antivirusvides online solution for all USA/CANADA clients. For any help of query call 1 800 844 0887 to get all Avg account solution. @@Call, 1*877*812*8410 for all type help by Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number,@@@ Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number,@@@@ Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, @@@@@ Avg help number-Avg Helpline Number; Avg help phone number-Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number. It is very popular toll free number which Antivirusvide by Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, Avg help number-Avg Helpline Number; Avg help phone number, Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number, Avg Antivirus support phone number, Avg payroll support phone number. Avg payroll customer support phone Avg technical help telephone number, Avg technical help contact number, Avg technical support contact number, Avg contact number, Avg contact phone number, Avg contact telephone number, Avg 24 hour contact number, Avg customer support contact number, Avg customer service contact number, Avg official number, Avg official contact number, Avg 800 contact number, Avg toll free number, 800 number for Avg support, Avg 24/7 support phone number Avg Antivirus support phone number,Avg Antivirus support phone number,Avg Antivirus help phone number, Avg Antivirus technical support number.Avg Antivirus support number, Avg Antivirus phone number, Avg Antivirus tech support number, Avg Antivirus customer support number, Avg Antivirus customer support phone number, Avg Antivirus customer service phone number, Avg Antivirus payroll customer service phone number, Avg Antivirus support phone number. Help at Call 1*877*812*8410/.Avg 24/7 support phone number,Avg telephone number for support? call 1*877*812*8410 @./Avg contact number, Avg contact phone number, Avg contact telephone number,,telephone number for Avg online support,Avg official support number,Avg official number,Avg payroll official phone number,,,phone number for Avg payroll support,,Avg 24/7 support phone number,,Avg support number,Avg telephone number for support Avg phone number, Avg support phone number, Avg tech support number, Avg customer care number, Avg technical support number Avg Toll Free, Antivirus@(1*877*812*8410)@ Avg Tech Support Phone Number Antivirusvides online solution for all USA/CANADA clients. For any help of query call 1*877*812*8410 to get all Avg account solution. @@Call, 1*877*812*8410 for all type help by Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number,@@@ Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number,@@@@ Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, @@@@@ Avg help number-Avg Helpline Number; Avg help phone number-Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number. It is very popular toll free number which Antivirusvide by Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number. Call, Avg tech support phone number, Antivirus Avg Tech Support Phone Number, Avg Help Desk Phone Number, Avg tech support number, Avg technical support phone number, Avg phone number, Avg technical support number, Avg support phone number, Avg technical support, Avg Customer Service Phone Number, Avg Customer Service Number, Avg Customer Support Phone Number, Avg Customer Support Number, Avg Customer Service Helpline Number, Avg Customer Care Number, Avg support team phone number, Avg help number-Avg Helpline Number; Avg help phone number, Avg Helpline Number, Avg Tech Support Toll free Number, Avg Support Telephone Number, Avg Tech Support Telephone number, Avg Tech Support contact number, Avg support contact number, Avg technical support contact number, Avg Antivirus support phone number, Avg payroll support phone number. Avg payroll customer support phone number 1*877*812*8410 Avg technical help telephone number, Avg technical help contact number, Avg technical support contact number, Avg contact number, Avg contact phone number, Avg contact telephone number, Avg 24 hour contact number, Avg customer support contact number, Avg customer service contact number, Avg official number, Avg official contact number, Avg 800 contact number, Avg toll free number, 800 number for Avg support, Avg 24/7 support phone number Avg Antivirus support phone number,Avg Antivirus support phone number,Avg Antivirus help phone number, Avg Antivirus technical support number.Avg Antivirus support number, Avg Antivirus phone number, Avg Antivirus tech support number, Avg Antivirus customer support number, Avg Antivirus customer support phone number, Avg Antivirus customer service phone number, Avg Antivirus payroll customer service phone number, Avg Antivirus support phone number. Help at Call 1*877*812*8410/.Avg 24/7 support phone number,Avg telephone number for support? call 1*877*812*8410 @./Avg contact number, Avg contact phone number, Avg contact telephone number,,telephone number for Avg online support,Avg official support number,Avg official number,Avg payroll official phone number,phone number for Avg payroll support,,Avg 24/7 support phone number,,Avg support number,Avg telephone number for support Avg phone number, Avg support phone number, Avg tech support number, Avg customer care number, Avg technical support number -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 13:47:44 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 13:47:44 -0000 Subject: =?utf-8?q?=5BGHC=5D_=2311881=3A_**Quickbooks**_PRO_Support_Numbe?= =?utf-8?b?ciDCu8K7MX44MDB+OTE5fjA5OTLCu8K7IFFCIFRlY2huaWNhbCBT?= =?utf-8?q?upport_=7C_Toll_Free_=7C_Telephone_Number?= Message-ID: <050.4544ae43057d6cca76e29cba5d6c91e1@haskell.org> #11881: **Quickbooks** PRO Support Number ??1~800~919~0992?? QB Technical Support | Toll Free | Telephone Number -------------------------------------+------------------------------------- Reporter: jonathen789 | Owner: Type: task | Status: new Priority: highest | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- '''Quick Books (SERVICE+SUPPORT)..!!!! 1~844~307~1804 !!!! Quick Books p.r.o t.e.c.h.n.i-c-a-l Support Ph.one Number Q.u.i.c.k.B.o.o.k.s tecH suPPort Numbner!!(( 1~844~307~1804 )) Intuit Quickbooks Enterprise Customer support Phone Number''' Quick Books phone number, Quick Books support phone number, Quick Books tech support number, Quick Books customer care number, Quick Books technical support number Help at Call 1-844-307-1804.Quick Books 24/7 support phone number,Quick Books telephone number for support? call 1-844-307-1804 at ./Quick Books contact number, Quick Books contact phone number, Quick Books contact telephone number,,telephone number for Quick Books online support,Quick Books official support number,Quick Books official number,Quick Books payroll official phone number,,,phone number for Quick Books payroll support,,Quick Books 24/7 support phone number,,Quick Books support number,Quick Books telephone number for support Quick Books Toll Free, Intuit@(1-844-307-1804)@ Quick Books Tech Support Phone Number provides online solution for all USA/CANADA clients. For any help of query call 1-844-307-1804 to get all Quick Books account solution. @@Call, 1-844-307-1804 for all type help by Quick Books tech support phone number, Intuit Quick Books Tech Support Phone Number, Quick Books Help Desk Phone Number, Quick Books tech support number, Quick Books technical support phone number,@@@ Quick Books phone number, Quick Books technical support number, Quick Books support phone number, Quick Books technical support, Quick Books Customer Service Phone Number, Quick Books Customer Service Number, Quick Books Customer Support Phone Number, Quick Books Customer Support Number,@@@@ Quick Books Customer Service Helpline Number, Quick Books Customer Care Number, Quick Books support team phone number, @@@@@ Quick Books help number-Quick Books Helpline Number; Quick Books help phone number-Quick Books Helpline Number, Quick Books Tech Support Toll free Number, Quick Books Support Telephone Number, Quick Books Tech Support Telephone number, Quick Books Tech Support contact number, Quick Books support contact number, Quick Books technical support contact number. Call, Quick Books tech support phone number, Intuit Quick Books Tech Support Phone Number, Quick Books Help Desk Phone Number, Quick Books tech support number, Quick Books technical support phone number, Quick Books phone number, Quick Books technical support number, Quick Books support phone number. It is very popular toll free number which provide by Quick Books technical support, Quick Books Customer Service Phone Number, Quick Books Customer Service Number, Quick Books Customer Support Phone Number, Quick Books Customer Support Number, Quick Books Customer Service Helpline Number, Quick Books Customer Care Number, Quick Books support team phone number. Call, Quick Books tech support phone number, Intuit Quick Books Tech Support Phone Number, Quick Books Help Desk Phone Number, Quick Books tech support number, Quick Books technical support phone number, Quick Books phone number, Quick Books technical support number, Quick Books support phone number, Quick Books technical support, Quick Books Customer Service Phone Number, Quick Books Customer Service Number, Quick Books Customer Support Phone Number, Quick Books Customer Support Number, Quick Books Customer Service Helpline Number, Quick Books Customer Care Number, Quick Books support team phone number, Quick Books help number-Quick Books Helpline Number; Quick Books help phone number, Quick Books Helpline Number, Quick Books Tech Support Toll free Number, Quick Books Support Telephone Number, Quick Books Tech Support Telephone number, Quick Books Tech Support contact number, Quick Books support contact number, Quick Books technical support contact number, Quick Books pro support phone number, Quick Books payroll support phone number. Quick Books payroll customer support phone number 1-844-307-1804 Quick Books technical help telephone number, Quick Books technical help contact number, Quick Books technical support contact number, Quick Books contact number, Quick Books contact phone number, Quick Books contact telephone number, Quick Books 24 hour contact number, Quick Books customer support contact number, Quick Books customer service contact number, Quick Books official number, Quick Books official contact number, Quick Books 800 contact number, Quick Books toll free number, 800 number for Quick Books support, Quick Books 24/7 support phone number Quick Books PRO support phone number,Quick Books PRO support phone number,Quick Books PRO help phone number, Quick Books PRO technical support number.Quick Books PRO support number, Quick Books PRO phone number, Quick Books PRO tech support number, Quick Books PRO customer support number, Quick Books PRO customer support phone number, Quick Books PRO customer service phone number, Quick Books PRO payroll customer service phone number, Quick Books PRO support phone number. Help at Call 1-844-307-1804.Quick Books 24/7 support phone number,Quick Books telephone number for support? call 1-844-307-1804./Quick Books contact number, Quick Books contact phone number, Quick Books contact telephone number,,telephone number for Quick Books online support,Quick Books official support number,Quick Books official number,Quick Books payroll official phone number,,,phone number for Quick Books payroll support,,Quick Books 24/7 support phone number,,Quick Books support number,Quick Books telephone number for support Quick Books phone number, Quick Books support phone number, Quick Books tech support number, Quick Books customer care number, Quick Books technical support number Quick Books Toll Free, Intuit@(1-844-307-1804)@ Quick Books Tech Support Phone Number provides online solution for all USA/CANADA clients. For any help of query call 1-844-307-1804 to get all Quick Books account solution. @@Call, 1-844-307-1804 for all type help by Quick Books tech support phone number, Intuit Quick Books Tech Support Phone Number, Quick Books Help Desk Phone Number, Quick Books tech support number, Quick Books technical support phone number,@@@ Quick Books phone number, Quick Books technical support number, Quick Books support phone number, Quick Books technical support, Quick Books Customer Service Phone Number, Quick Books Customer Service Number, Quick Books Customer Support Phone Number, Quick Books Customer Support Number,@@@@ Quick Books Customer Service Helpline Number, Quick Books Customer Care Number, Quick Books support team phone number, @@@@@ Quick Books help number-Quick Books Helpline Number; Quick Books help phone number-Quick Books Helpline Number, Quick Books Tech Support Toll free Number, Quick Books Support Telephone Number, Quick Books Tech Support Telephone number, Quick Books Tech Support contact number, Quick Books support contact number, Quick Books technical support contact number. Call, Quick Books tech support phone number, Intuit Quick Books Tech Support Phone Number, Quick Books Help Desk Phone Number, Quick Books tech support number, Quick Books technical support phone number, Quick Books phone number, Quick Books technical support number, Quick Books support phone number. It is very popular toll free number which provide by Quick Books technical support, Quick Books Customer Service Phone Number, Quick Books Customer Service Number, Quick Books Customer Support Phone Number, Quick Books Customer Support Number, Quick Books Customer Service Helpline Number, Quick Books Customer Care Number, Quick Books support team phone number. Call, Quick Books tech support phone number, Intuit Quick Books Tech Support Phone Number, Quick Books Help Desk Phone Number, Quick Books tech support number, Quick Books technical support phone number, Quick Books phone number, Quick Books technical support number, Quick Books support phone number, Quick Books technical support, Quick Books Customer Service Phone Number, Quick Books Customer Service Number, Quick Books Customer Support Phone Number, Quick Books Customer Support Number, Quick Books Customer Service Helpline Number, Quick Books Customer Care Number, Quick Books support team phone number, Quick Books help number-Quick Books Helpline Number; Quick Books help phone number, Quick Books Helpline Number, Quick Books Tech Support Toll free Number, Quick Books Support Telephone Number, Quick Books Tech Support Telephone number, Quick Books Tech Support contact number, Quick Books support contact number, Quick Books technical support contact number, Quick Books pro support phone number, Quick Books payroll support phone number. Quick Books payroll customer support phone number 1-844-307-1804 Quick Books technical help telephone number, Quick Books technical help contact number, Quick Books technical support contact number, Quick Books contact number, Quick Books contact phone number, Quick Books contact telephone number, Quick Books 24 hour contact number, Quick Books customer support contact number, Quick Books customer service contact number, Quick Books official number, Quick Books official contact number, Quick Books 800 contact number, Quick Books toll free number, 800 number for Quick Books support, Quick Books 24/7 support phone number Quick Books PRO support phone number,Quick Books PRO support phone number,Quick Books PRO help phone number, Quick Books PRO technical support number.Quick Books PRO support number, Quick Books PRO phone number, Quick Books PRO tech support number, Quick Books PRO customer support number, Quick Books PRO customer support phone number, Quick Books PRO customer service phone number, Quick Books PRO payroll customer service phone number, Quick Books PRO support phone number. Help at Call 1-844-307-1804.Quick Books 24/7 support phone number,Quick Books telephone number for support? call 1-844-307-1804./Quick Books contact number, Quick Books contact phone number, Quick Books contact telephone number,,telephone number for Quick Books online support,Quick Books official support number,Quick Books official number,Quick Books payroll official phone number,,,phone number for Quick Books payroll support,,Quick Books 24/7 support phone number,,Quick Books support number,Quick Books telephone number for support Quick Books phone number, Quick Books support phone number, Quick Books tech support number, Quick Books customer care number, Quick Books technical support number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 13:50:09 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 13:50:09 -0000 Subject: =?utf-8?q?Re=3A_=5BGHC=5D_=2311881=3A_**Quickbooks**_PRO_Support?= =?utf-8?b?IE51bWJlciDCu8K7MX44NDR+MzA3fjE4MDTCu8K7IFFCIFRlY2hu?= =?utf-8?q?ical_Support_=7C_Toll_Free_=7C_Telephone_Number_=28was?= =?utf-8?q?=3A_**Quickbooks**_PRO_Support_Number_=C2=BB=C2=BB1=7E?= =?utf-8?q?800=7E919=7E0992=C2=BB=C2=BB_QB_Technical_Support_=7C_?= =?utf-8?q?Toll_Free_=7C_Telephone_Number=29?= In-Reply-To: <050.4544ae43057d6cca76e29cba5d6c91e1@haskell.org> References: <050.4544ae43057d6cca76e29cba5d6c91e1@haskell.org> Message-ID: <065.0691a35915ebb4b67e3e231a4712e4e6@haskell.org> #11881: **Quickbooks** PRO Support Number ??1~844~307~1804?? QB Technical Support | Toll Free | Telephone Number -------------------------------------+------------------------------------- Reporter: jonathen789 | Owner: Type: task | Status: new Priority: highest | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 14:04:57 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 14:04:57 -0000 Subject: [GHC] #11859: [SanJaNa]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number In-Reply-To: <053.4f2e664a7b1065f3a64fa582a5817bb0@haskell.org> References: <053.4f2e664a7b1065f3a64fa582a5817bb0@haskell.org> Message-ID: <068.9b6af9c5b7de456b2fe36872898ed50a@haskell.org> #11859: [SanJaNa]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji12 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji12): * Attachment "sachin.xlsx" removed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 14:06:11 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 14:06:11 -0000 Subject: [GHC] #11777: RTS source code issues In-Reply-To: <046.3e69faecf0e4f69a5fcc7ec246409435@haskell.org> References: <046.3e69faecf0e4f69a5fcc7ec246409435@haskell.org> Message-ID: <061.9aad8289b874d8377157a2847342ee56@haskell.org> #11777: RTS source code issues -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonmar): No, I think it's all experimental code and probably doesn't work. Wouldn't hurt to delete it. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 14:21:59 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 14:21:59 -0000 Subject: [GHC] #11827: InteractiveEval error handling gets a boot ModSummary instead of normal ModSummary In-Reply-To: <046.24c2998367c5a8124c7521e8ac11ef2c@haskell.org> References: <046.24c2998367c5a8124c7521e8ac11ef2c@haskell.org> Message-ID: <061.0f41f23dbb334ed1be3b0509bf2d751f@haskell.org> #11827: InteractiveEval error handling gets a boot ModSummary instead of normal ModSummary -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"cb0d29b21ccadde681f80f9e414f78ab42a203c7/ghc" cb0d29b2/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="cb0d29b21ccadde681f80f9e414f78ab42a203c7" testsuite: Add test for #11827 Test Plan: Validate Reviewers: austin Reviewed By: austin Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2109 GHC Trac Issues: #11827 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 14:21:59 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 14:21:59 -0000 Subject: [GHC] #11828: Linker.c doesn't build on OS X due to signedness mismatch In-Reply-To: <046.1b7a067e9bfa8ecb8f2e615c66ebe297@haskell.org> References: <046.1b7a067e9bfa8ecb8f2e615c66ebe297@haskell.org> Message-ID: <061.30f3247dfbd93d60776d5ef967cd92cd@haskell.org> #11828: Linker.c doesn't build on OS X due to signedness mismatch -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: patch Priority: high | Milestone: 8.0.1 Component: Runtime System | Version: 8.0.1-rc3 (Linker) | Resolution: | Keywords: Operating System: MacOS X | Architecture: Type of failure: Building GHC | Unknown/Multiple failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2110 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"9d063b690766af7d805ff015c0a0f69326ea3db7/ghc" 9d063b6/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="9d063b690766af7d805ff015c0a0f69326ea3db7" Linker: Fix signedness mismatch Test Plan: Validate on OS X Reviewers: erikd, austin, Phyx Reviewed By: austin, Phyx Subscribers: Phyx, thomie Differential Revision: https://phabricator.haskell.org/D2110 GHC Trac Issues: #11828 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 14:21:59 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 14:21:59 -0000 Subject: [GHC] #11318: Data.Text.length allocates one closure per character In-Reply-To: <046.fe58c0222bbdae65d2f7b2b592abbbca@haskell.org> References: <046.fe58c0222bbdae65d2f7b2b592abbbca@haskell.org> Message-ID: <061.c439ca5e0503d662511327a997cab9a8@haskell.org> #11318: Data.Text.length allocates one closure per character -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: invalid | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: #11284 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"933abfa7ec88bd91e60a62e51bb2f9a068d379f1/ghc" 933abfa7/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="933abfa7ec88bd91e60a62e51bb2f9a068d379f1" rel-notes: Add note about UndecidableSuperClasses and #11762 Test Plan: Read it Reviewers: austin, kosmikus Reviewed By: kosmikus Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2111 GHC Trac Issues: #11318, #11762 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 14:21:59 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 14:21:59 -0000 Subject: [GHC] #11762: GHC 8 superclass chain constraint regression In-Reply-To: <048.8d3f15d8dce49f095c6c78ab934bfbaf@haskell.org> References: <048.8d3f15d8dce49f095c6c78ab934bfbaf@haskell.org> Message-ID: <063.4ae72e77237c0fa15d1de6c3cc60cf2a@haskell.org> #11762: GHC 8 superclass chain constraint regression -------------------------------------+------------------------------------- Reporter: _deepfire | Owner: Type: bug | Status: closed Priority: highest | Milestone: 8.0.1 Component: Compiler (Type | Version: 8.0.1-rc2 checker) | Resolution: duplicate | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: #11427 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"933abfa7ec88bd91e60a62e51bb2f9a068d379f1/ghc" 933abfa7/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="933abfa7ec88bd91e60a62e51bb2f9a068d379f1" rel-notes: Add note about UndecidableSuperClasses and #11762 Test Plan: Read it Reviewers: austin, kosmikus Reviewed By: kosmikus Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2111 GHC Trac Issues: #11318, #11762 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 14:21:59 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 14:21:59 -0000 Subject: [GHC] #11824: GHC error in desugarer lookup In-Reply-To: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> References: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> Message-ID: <061.82742566bc193d4c7f502d40c5ec1515@haskell.org> #11824: GHC error in desugarer lookup -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: patch Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2107, Wiki Page: | Phab:D2108 -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"116088de1dc3188e82f3f79b39f8e92f30ab88d7/ghc" 116088de/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="116088de1dc3188e82f3f79b39f8e92f30ab88d7" testsuite: Add T11824 Test Plan: Validate Reviewers: goldfire, austin Reviewed By: austin Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2107 GHC Trac Issues: #11824 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 14:25:41 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 14:25:41 -0000 Subject: [GHC] #11846: [BoUsE]18008630840 Kindle Help Desk Number Kindle Technical support number, Kindle Technical Support number, Kindle tech support number In-Reply-To: <052.481be4f37fcc9a9ca60471844374db0d@haskell.org> References: <052.481be4f37fcc9a9ca60471844374db0d@haskell.org> Message-ID: <067.1a598dbe691bf1628e562c747c160d86@haskell.org> #11846: [BoUsE]18008630840 Kindle Help Desk Number Kindle Technical support number, Kindle Technical Support number, Kindle tech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji1): * Attachment "saini1.docx" removed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 14:25:51 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 14:25:51 -0000 Subject: [GHC] #11851: [SnEhA]18008630840 Internet explorer Help Desk Number Internet explorer Technical support number, Internet explorer Technical Support number, Internet explorer tech support number In-Reply-To: <052.d166dc84e3904669a89f238bc46fe26b@haskell.org> References: <052.d166dc84e3904669a89f238bc46fe26b@haskell.org> Message-ID: <067.1a543002e30957a4c37c4a68d229b73e@haskell.org> #11851: [SnEhA]18008630840 Internet explorer Help Desk Number Internet explorer Technical support number, Internet explorer Technical Support number, Internet explorer tech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji1): * Attachment "saini1.docx" removed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 14:25:54 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 14:25:54 -0000 Subject: [GHC] #11854: [SeRviCe]18008630840 Hotmail Help Desk Number HotmailTechnical support number, HotmailTechnical Support number, Hotmailtech support number In-Reply-To: <052.6b7adf3e70e6cccac9ed726963cd3d9c@haskell.org> References: <052.6b7adf3e70e6cccac9ed726963cd3d9c@haskell.org> Message-ID: <067.fe42946c288409bddd92d9165ab54dfd@haskell.org> #11854: [SeRviCe]18008630840 Hotmail Help Desk Number HotmailTechnical support number, HotmailTechnical Support number, Hotmailtech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji1): * Attachment "saini1.docx" removed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 14:26:03 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 14:26:03 -0000 Subject: [GHC] #11856: [SuPPORT]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number In-Reply-To: <052.35cc376e0d83e99dffe8de68a6500bee@haskell.org> References: <052.35cc376e0d83e99dffe8de68a6500bee@haskell.org> Message-ID: <067.652d0258a21531238df79acecb330048@haskell.org> #11856: [SuPPORT]18008630840 Internet explorer Help Desk Number Internet explorerTechnical support number, Internet explorerTechnical Support number, Internet explorertech support number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji1): * Attachment "saini1.docx" removed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 14:26:04 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 14:26:04 -0000 Subject: [GHC] #11857: SuPpOrT UK & AUS<:::((uk l*800*863*0840* aus 1800769903))!!@uk Gmail technical suppOrt phOne number uk Gmailtech suppOrt phOne number In-Reply-To: <052.78e83b144e232437bb5ac3b62b93a37e@haskell.org> References: <052.78e83b144e232437bb5ac3b62b93a37e@haskell.org> Message-ID: <067.91186d0c106e63ce8551ee161a83aadd@haskell.org> #11857: SuPpOrT UK & AUS<:::((uk l*800*863*0840* aus 1800769903))!!@uk Gmail technical suppOrt phOne number uk Gmailtech suppOrt phOne number -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji1): * Attachment "saini1.docx" removed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 14:26:06 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 14:26:06 -0000 Subject: [GHC] #11858: ((BoUsE ))Call @@@@@@@@USA1 1800-863-0840 Internet explorer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a. In-Reply-To: <052.87d4ea6d6bf6d6a0fcabd7f1bf775203@haskell.org> References: <052.87d4ea6d6bf6d6a0fcabd7f1bf775203@haskell.org> Message-ID: <067.ebe9849bd4e2b228eaada66d380aac4c@haskell.org> #11858: ((BoUsE ))Call @@@@@@@@USA1 1800-863-0840 Internet explorer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a. -------------------------------------+------------------------------------- Reporter: kumarinehaji1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kumarinehaji1): * Attachment "saini1.docx" removed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:13:25 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:13:25 -0000 Subject: [GHC] #11882: Use coercionKind instread of zonkTcType in TcFlatten.flatten_tyvar Message-ID: <046.8771dd077dba81503d000cc8f58b8582@haskell.org> #11882: Use coercionKind instread of zonkTcType in TcFlatten.flatten_tyvar -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- In `TcFlatten.flatten_tyvar3` we had {{{ ; orig_kind <- liftTcS $ zonkTcType kind -- NB: orig_kind is *not* the kind returned from flatten -- This zonk is necessary because we might later see the tv's kind -- in canEqTyVarTyVar (where we use getCastedTyVar_maybe). -- If you remove it, then e.g. dependent/should_fail/T11407 panics -- See also Note [Flattening] }}} But in fact the kind of the coercion returned earlier gives the same information, and turns out to be a little faster. Plus, I hate calling `zonkTcType` in the constraint solver; it doesn't "fit" there. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:30:31 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:30:31 -0000 Subject: [GHC] #11884: vimpy 1 8444464460 POGO GAMES Customer Support Helpline Message-ID: <044.fbb1ec9782d59354769ed65989ff8ec7@haskell.org> #11884: vimpy 1 8444464460 POGO GAMES Customer Support Helpline -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- 1 8444464460 POGO GAMES Customer Support Helpline {| class="wikitable" |- ! MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number !! 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number ?USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number USA || 1***844 ***446 ***4460 |} Jack and Jill went up the hill to call 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care phone number. Jack fell on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care number and broke his crown and jill came on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline number. JAck has a teddy bear called 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline phone number, and jill has a barbie doll named 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpline. Twiinkle twinkle little star 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk phone number how i wonder what you are 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk number. Up above the world of 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk, like a diamond in the sky. Humpty dumpty 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service phone number sat on a 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service number, Humpty dumpty had a gret fall 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline phone number. All the kings horses all the 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline number could not put humpty togather again. Ba ba black sheep have u 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline, Yes sir yes sir three 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk phone number bags full. One for my master 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk number one for the dame 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk. One for the little boy 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support phone number who lives down the lane. Johhny johhny 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support number, Yes papa Eating sugar 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support ,No papa. telling lies 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline phone number no papa faad thoda ha ha ha 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline number. A lion and a unicorn 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline were in the jungle 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk phone number, the lion beat the unicorn balck and brown 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk number so the unicorn gave birth to my child 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1***844 ***446 ***4460 . MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT products are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1***844 ***446 ***4460 and Tom Proulx in Mountain View, California, USA 1***844 ***446 ***4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and improved e-mail functionality through Microsoft Outlook and Outlook Express @1***844 ***446 ***4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1***844 ***446 ***4460 . Hi All, Facebook users have liked MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number 1***844 ***446 ***4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Intuit Technical Support Phone number +1***844 ***446 ***4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1***844 ***446 ***4460 is the best. Apple also has a handle for Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 . There are amazing videos of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 on youtube on their site www.youtube.com they say it is great. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline phone number 1***844 ***446 ***4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline number 1***844 ***446 ***4460 Proadvisor and Pro Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline 1***844 ***446 ***4460 and using their products. Youtube videos have been telling us the story of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 on the url & Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 has been the pioneer in the field of providing service in terms of issues related to MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , Payroll Support phone number 1***844 ***446 ***4460 , POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 and Proadvisor Tech support phone number 1***844 ***446 ***4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1***844 ***446 ***4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1***844 ***446 ***4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1***844 ***446 ***4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been promoting Tech support phone number 1***844 ***446 ***4460 stories through their platform. Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support @ 1***844 ***446 ***4460 is also one of the places that talks about Tech support phone number 1***844 ***446 ***4460 . You can pay for Tech support phone number 1***844 ***446 ***4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1***844 ***446 ***4460 as number1. Stories of Tech support phone number 1***844 ***446 ***4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1***844 ***446 ***4460 on Go or Page on craiglist.org you will know Tech support phone number 1***844 ***446 ***4460 is special. They provide best MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT 24|7.you can call any time for any problem of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT like MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprises, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support telephone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help phone number, Intuit technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number , Quickbook tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprise support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT component repair tool for windows xp|vista|7 , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not connecting to internet. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT unsupported system configuration, Dealing some random error message installing MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data export or import issues, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT failed to make an internet connection, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT multi user mode not syncing, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not opening in multi-user mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 .MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 . Showing error while updating company data file in MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is also a fairly complex application. This complexity means that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is prone to having problems like how to restore MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT auto data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Connection Problem and connection configuration, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Company File Not Opening in Multi User Mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Keeps Disconnecting From Server, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Message Server Busy, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Payroll Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Needs To Be Updated. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Recovery Extention, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT connection has been lost, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Error 1722,1334,15215&1904, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code 6000,3371, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , the consequences can be pretty dire. Luckily, many common problems are easy to fix -- once you know about them. Our MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT level 5 technicians are available for fix any queries all products of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . We provide best service of any problems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your problems of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . This is our best online customer care service. Contact us for resolve your any MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT problems. 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. Sales: 844 .446 .4040. Support: 844 -446 -4040. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone Number: 844 -446 -4040. We'd suggest trying the Support site first because it's full of usefull information: #1***844 ***446 ***4460 Intuit Customer Service Number #1***844 ***446 ***4460 Intuit Customer Care Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 Intuit Customer Support Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number #1***844 ***446 ***4460 Intuit Customer Service Phone Number #1***844 ***446 ***4460 Intuit Customer Care Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 Intuit Customer Support Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number #1***844 ***446 ***4460 Call Intuit #1***844 ***446 ***4460 Call Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact Intuit #1***844 ***446 ***4460 Contact Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Call MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Alabama,Alaska,Arizona,Arkansas,California ,USA ,Canada, New York, Los Angeles, Chicago, Houston, Philadelphia, Phoenix, San Antonio, San Diego, Dallas, San Jose, Austin, Jacksonville, San Francisco, Indianapolis, Columbus, Fort Worth, Charlotte, Detroit, El Paso, Seattle, Denver, Washington, Memphis, Boston, Nashville, Baltimore, Oklahoma City, Portland, Las Vegas, Louisville, Milwaukee, Albuquerque, Tucson, Fresno, Sacramento, Long Beach, Kansas City, Mesa, Atlanta, Virginia Beach, Omaha, Colorado Springs, Raleigh, Miami, Oakland, Minneapolis, Tulsa, Cleveland, Wichita, New Orleans, Arlington, Bakersfield, Tampa, Aurora, Honolulu, Anaheim, Santa Ana, Corpus Christi, Riverside, St. Louis, Lexington, Pittsburgh, Stockton, Anchorage, Cincinnati, Saint Paul, Greensboro, Toledo, Newark, Plano, Henderson, Lincoln, Orlando, Jersey City, Chula Vista, Buffalo, Fort Wayne, Chandler and St. Petersburg, t is very popular toll free number which provide by MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number. Call, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Help Desk Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number, #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington- Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:33:00 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:33:00 -0000 Subject: [GHC] #11885: welcome +1 8444464460 POGO CLUB Customer Support Number Message-ID: <044.a8eaa92101c8a976360b809e9042b8d7@haskell.org> #11885: welcome +1 8444464460 POGO CLUB Customer Support Number -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- +1 8444464460 POGO CLUB Customer Support NumberUA-75287313-1 WYNN 1-844 446 -4460 wynn POGO GAMES CONTACT Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number UA-75287313-1 {| class="wikitable" |- ! wynn POGO GAMES CONTACT tech Support Number !! 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number ?USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 wynn POGO GAMES CONTACT Desktop care phone number. Jack fell on 1844 446 4460 wynn POGO GAMES CONTACT care number and broke his crown and jill came on 1844 446 4460 wynn POGO GAMES CONTACT care helpline number. JAck has a teddy bear called 1844 446 4460 wynn POGO GAMES CONTACT care helpline phone number, and jill has a barbie doll named 1844 446 4460 wynn POGO GAMES CONTACT care Helpline. Twiinkle twinkle little star 1844 446 4460 wynn POGO GAMES CONTACT Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk number. Up above the world of 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 wynn POGO GAMES CONTACT service phone number sat on a 1844 446 4460 wynn POGO GAMES CONTACT service number, Humpty dumpty had a gret fall 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpline phone number. All the kings horses all the 1844 446 4460 wynn POGO GAMES CONTACT service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 wynn POGO GAMES CONTACT service helpline, Yes sir yes sir three 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk number one for the dame 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk. One for the little boy 1844 446 4460 wynn POGO GAMES CONTACT support phone number who lives down the lane. Johhny johhny 1844 446 4460 wynn POGO GAMES CONTACT support number, Yes papa Eating sugar 1844 446 4460 wynn POGO GAMES CONTACT support ,No papa. telling lies 1844 446 4460 wynn POGO GAMES CONTACT support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpline number. A lion and a unicorn 1844 446 4460 wynn POGO GAMES CONTACT support helpline were in the jungle 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk number so the unicorn gave birth to my child 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpdesk. wynn POGO GAMES CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . wynn POGO GAMES CONTACT ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of wynn POGO GAMES CONTACT for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into wynn POGO GAMES CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that wynn POGO GAMES CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked wynn POGO GAMES CONTACT technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit wynn POGO GAMES CONTACT Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit wynn POGO GAMES CONTACT Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit wynn POGO GAMES CONTACT tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for wynn POGO GAMES CONTACT Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit wynn POGO GAMES CONTACT Care phone number UA-75287313-11-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. wynn POGO GAMES CONTACT technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that wynn POGO GAMES CONTACT technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of wynn POGO GAMES CONTACT technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 on the url & . Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to wynn POGO GAMES CONTACT , Payroll Support phone number 1844 446 4460 , POGO GAMES CONTACT Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit wynn POGO GAMES CONTACT Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit wynn POGO GAMES CONTACT Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best wynn POGO GAMES CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for wynn POGO GAMES CONTACT 24|7.you can call any time for any blem of wynn POGO GAMES CONTACT like wynn POGO GAMES CONTACT payroll, wynn POGO GAMES CONTACT data recovery, wynn POGO GAMES CONTACT Desktop enterprises, wynn POGO GAMES CONTACT and Quikbooks . Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 wynn POGO GAMES CONTACT tech support , wynn POGO GAMES CONTACT Tech Support Phone Number USA , wynn POGO GAMES CONTACT Technical Support phone Number, wynn POGO GAMES CONTACT support phone number , wynn POGO GAMES CONTACT support phone number USA , wynn POGO GAMES CONTACT technical support number USA , wynn POGO GAMES CONTACT tech support telephone number, wynn POGO GAMES CONTACT help phone number, Intuit technical support phone number, wynn POGO GAMES CONTACT support number , Quickbook tech support phone number, Intuit wynn POGO GAMES CONTACT Desktop tech support phone number, wynn POGO GAMES CONTACT enterprise support phone number, wynn POGO GAMES CONTACT component repair tool for windows xp|vista|7 , wynn POGO GAMES CONTACT Desktop not connecting to internet. wynn POGO GAMES CONTACT unsupported system configuration, Dealing some random error message installing wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Data export or import issues, wynn POGO GAMES CONTACT failed to make an internet connection, wynn POGO GAMES CONTACT multi user mode not syncing, wynn POGO GAMES CONTACT not opening in multi-user mode, wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 .wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 . Showing error while updating company data file in wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But wynn POGO GAMES CONTACT Desktop is also a fairly complex application. This complexity means that wynn POGO GAMES CONTACT is ne to having blems like how to restore wynn POGO GAMES CONTACT auto data recovery, wynn POGO GAMES CONTACT Connection blem and connection configuration, wynn POGO GAMES CONTACT Installation Support Phone Number, wynn POGO GAMES CONTACT Company File Not Opening in Multi User Mode, wynn POGO GAMES CONTACT Keeps Disconnecting From Server, wynn POGO GAMES CONTACT Error Message Server Busy, wynn POGO GAMES CONTACT Payroll Tech Support Phone Number, wynn POGO GAMES CONTACT Data File Needs To Be Updated. wynn POGO GAMES CONTACT Data File Recovery Extention, wynn POGO GAMES CONTACT UA-75287313-1connection has been lost, wynn POGO GAMES CONTACT Desktop Installation Error 1722,1334,15215&1904, wynn POGO GAMES CONTACT Desktop error code 6000,3371, wynn POGO GAMES CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with wynn POGO GAMES CONTACT , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our wynn POGO GAMES CONTACT level 5 technicians are available for fix any queries all ducts of wynn POGO GAMES CONTACT . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of wynn POGO GAMES CONTACT Desktop . This is our best customer care service. Contact us for resolve your any wynn POGO GAMES CONTACT blems. #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington-Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #New York #Los Angeles #Chicago #Houston #Philadelphia #Phoenix #San Diego #San Antonio #Dallas #Detroit #San Jose #Indianapolis #Jacksonville #San Francisco #Columbus #Austin #Memphis #Baltimore #Charlotte #Fort Worth #Boston #Milwaukee #El Paso #Washington #Nashville-Davidson #Seattle #Denver #Las Vegas #Portland #Oklahoma City #Tucson #Albuquerque #Atlanta #Long Beach #Kansas City #Fresno #New Orleans #Cleveland #Sacramento #Mesa #Virginia Beach #Omaha #Colorado Springs #Oakland #Miami #Tulsa #Minneapolis #Honolulu #Arlington #Wichita #St. Louis #Raleigh #Santa Ana #Cincinnati #Anaheim #Tampa #Toledo #Pittsburgh #Aurora #Bakersfield #Riverside #Stockton #Corpus Christi #Lexington-Fayette #Buffalo #St. Paul #Anchorage #Newark #Plano #Fort Wayne #St. Petersburg #Glendale #Lincoln #Norfolk #Jersey City #Greensboro #Chandler #Birmingham #Henderson #Scottsdale #North Hempstead #Madison #Hialeah #Baton Rouge #Chesapeake #Orlando #Lubbock #Garland #Akron #Rochester #Chula Vista #Reno #Laredo #Durham #Modesto #Huntington #Montgomery #Boise #Arlington #San Bernardino #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:36:25 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:36:25 -0000 Subject: [GHC] #11882: Use coercionKind instread of zonkTcType in TcFlatten.flatten_tyvar In-Reply-To: <046.8771dd077dba81503d000cc8f58b8582@haskell.org> References: <046.8771dd077dba81503d000cc8f58b8582@haskell.org> Message-ID: <061.7e58103f0cd3acfdf9eff679b395a215@haskell.org> #11882: Use coercionKind instread of zonkTcType in TcFlatten.flatten_tyvar -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * status: new => closed * resolution: => fixed Comment: Done by this commit; stupidly failed to mention it in the commit message. {{{ commit a7ee2d4c4229b27af324ebac93081f692835365d Author: Simon Peyton Jones Date: Fri Apr 15 16:17:54 2016 +0100 Improve TcFlatten.flattenTyVar This patch tides up the structure, simplifying FlattenTvResult. It also replaces a use of zonkTcType (which I hated) with coercionKind, in that same function. Happily, the result is little faster, maybe even a percentage point or two, which is a lot for a compiler. This also removes the line || not (map binderVisibility bndrs1 == map binderVisibility bndrs2) from TcCanonical.can_eq_nc', in the ForAllTy/ForAllTy case. Why? Becuase I can't see why binder-visiblity should matter, and when we use coercionKind instead of zonkTcType in flattenTyVar, this case pops up and rejects a program that should pass. I did discuss this with Richard. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:36:34 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:36:34 -0000 Subject: [GHC] #11887: canada MD@USA 1= 844 = 446 = 4460 POGO GAMES Support Number Message-ID: <044.d7ee8d717fde514e10664df1e9c56b8f@haskell.org> #11887: canada MD at USA 1= 844 = 446 = 4460 POGO GAMES Support Number -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- MD at USA 1= 844 = 446 = 4460 POGO GAMES Support Numberhttp://upstart.ubuntu.com/wiki/Obama%2B1844 %20446 %204460 %20Turbotax%20Helpdesk%20number,%20helpdesk%20phone%20number. WYNN 1-844 446 -4460 POGO GAME LOGIN ERROR Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number {| class="wikitable" |- ! POGO GAME LOGIN ERROR tech Support Number !! 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Contact Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Contact Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number ?USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 POGO GAME LOGIN ERROR Desktop care phone number. Jack fell on 1844 446 4460 POGO GAME LOGIN ERROR care number and broke his crown and jill came on 1844 446 4460 POGO GAME LOGIN ERROR care helpline number. JAck has a teddy bear called 1844 446 4460 POGO GAME LOGIN ERROR care helpline phone number, and jill has a barbie doll named 1844 446 4460 POGO GAME LOGIN ERROR care Helpline. Twiinkle twinkle little star 1844 446 4460 POGO GAME LOGIN ERROR Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 POGO GAME LOGIN ERROR care Helpdesk number. Up above the world of 1844 446 4460 POGO GAME LOGIN ERROR care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 POGO GAME LOGIN ERROR service phone number sat on a 1844 446 4460 POGO GAME LOGIN ERROR service number, Humpty dumpty had a gret fall 1844 446 4460 POGO GAME LOGIN ERROR Desktop service helpline phone number. All the kings horses all the 1844 446 4460 POGO GAME LOGIN ERROR service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 POGO GAME LOGIN ERROR service helpline, Yes sir yes sir three 1844 446 4460 POGO GAME LOGIN ERROR Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 POGO GAME LOGIN ERROR service helpdesk number one for the dame 1844 446 4460 POGO GAME LOGIN ERROR service helpdesk. One for the little boy 1844 446 4460 POGO GAME LOGIN ERROR support phone number who lives down the lane. Johhny johhny 1844 446 4460 POGO GAME LOGIN ERROR support number, Yes papa Eating sugar 1844 446 4460 POGO GAME LOGIN ERROR support ,No papa. telling lies 1844 446 4460 POGO GAME LOGIN ERROR support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 POGO GAME LOGIN ERROR Desktop support helpline number. A lion and a unicorn 1844 446 4460 POGO GAME LOGIN ERROR support helpline were in the jungle 1844 446 4460 POGO GAME LOGIN ERROR support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 POGO GAME LOGIN ERROR support helpdesk number so the unicorn gave birth to my child 1844 446 4460 POGO GAME LOGIN ERROR Desktop support helpdesk. POGO GAME LOGIN ERROR is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . POGO GAME LOGIN ERROR ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into POGO GAME LOGIN ERROR , including remote access capabilities, remote assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that POGO GAME LOGIN ERROR Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked POGO GAME LOGIN ERROR technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit POGO GAME LOGIN ERROR Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit POGO GAME LOGIN ERROR Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit POGO GAME LOGIN ERROR tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for POGO GAME LOGIN ERROR Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit POGO GAME LOGIN ERROR Care phone number 1-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. POGO GAME LOGIN ERROR technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that POGO GAME LOGIN ERROR technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of POGO GAME LOGIN ERROR technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit POGO GAME LOGIN ERROR Technical Support Phone number +1 844 446 4460 on the url & . Intuit POGO GAME LOGIN ERROR Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to POGO GAME LOGIN ERROR , Support phone number 1844 446 4460 , POGO GAME LOGIN ERROR Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit POGO GAME LOGIN ERROR Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit POGO GAME LOGIN ERROR Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best POGO GAME LOGIN ERROR support. This is best toll free number 1844 -446 -4460 .this is technical support number for POGO GAME LOGIN ERROR 24|7.you can call any time for any blem of POGO GAME LOGIN ERROR like POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR data recovery, POGO GAME LOGIN ERROR Desktop enterprises, POGO GAME LOGIN ERROR and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 POGO GAME LOGIN ERROR tech support , POGO GAME LOGIN ERROR Tech Support Phone Number USA , POGO GAME LOGIN ERROR Technical Support phone Number, POGO GAME LOGIN ERROR support phone number , POGO GAME LOGIN ERROR support phone number USA , POGO GAME LOGIN ERROR technical support number USA , POGO GAME LOGIN ERROR tech support telephone number, POGO GAME LOGIN ERROR help phone number, Intuit technical support phone number, POGO GAME LOGIN ERROR support number , Quickbook tech support phone number, Intuit POGO GAME LOGIN ERROR Desktop tech support phone number, POGO GAME LOGIN ERROR enterprise support phone number, POGO GAME LOGIN ERROR component repair tool for windows xp|vista|7 , POGO GAME LOGIN ERROR Desktop not connecting to internet. POGO GAME LOGIN ERROR unsupported system configuration, Dealing some random error message installing POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR Data export or import issues, POGO GAME LOGIN ERROR failed to make an internet connection, POGO GAME LOGIN ERROR multi user mode not syncing, POGO GAME LOGIN ERROR not opening in multi-user mode, POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 .POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 . Showing error while updating company data file in POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But POGO GAME LOGIN ERROR Desktop is also a fairly complex application. This complexity means that POGO GAME LOGIN ERROR is ne to having blems like how to restore POGO GAME LOGIN ERROR auto data recovery, POGO GAME LOGIN ERROR Connection blem and connection configuration, POGO GAME LOGIN ERROR Installation Support Phone Number, POGO GAME LOGIN ERROR Company File Not Opening in Multi User Mode, POGO GAME LOGIN ERROR Keeps Disconnecting From Server, POGO GAME LOGIN ERROR Error Message Server Busy, POGO GAME LOGIN ERROR Tech Support Phone Number, POGO GAME LOGIN ERROR Data File Needs To Be Updated. POGO GAME LOGIN ERROR Data File Recovery Extention, POGO GAME LOGIN ERROR connection has been lost, POGO GAME LOGIN ERROR Desktop Installation Error 1722,1334,15215&1904, POGO GAME LOGIN ERROR Desktop error code 6000,3371, POGO GAME LOGIN ERROR error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with POGO GAME LOGIN ERROR , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our POGO GAME LOGIN ERROR level 5 technicians are available for fix any queries all ducts of POGO GAME LOGIN ERROR . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of POGO GAME LOGIN ERROR Desktop . This is our best online customer care service. Contact us for resolve your any POGO GAME LOGIN ERROR blems. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:37:59 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:37:59 -0000 Subject: [GHC] #11888: mickey #1***844 ***446 ***4460 Intuit MD@USA POGO GAME INSTALLATION Message-ID: <044.015d39f015fdc2f873694fe54ddd0379@haskell.org> #11888: mickey #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.slideshare.net%2FDwilson001 %2Fpogo-game-customer-service-18444464460-pogo-com-game-tech-support- helpline- number&t=Pogo+game+customer+service+1-844-446-4460+pogo+com+game+tech+support+helpline+number? http://www.slideshare.net/Dwilson001/pogo-game-customer- service-18444464460-pogo-com-game-tech-support-helpline-number? https://webcache.googleusercontent.com/search?q=cache:Ovp3uq15aqMJ:https://www.facebook.com/Yahoo-18444464460 -Toll-Free-Help-number-206503696359294/%3Fref%3Dnf+&cd=1&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:Ovp3uq15aqMJ:https://www.facebook.com/Yahoo-18444464460 -Toll-Free-Help-number-206503696359294/%3Fref%3Dnf+&cd=1&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:hg4PnciPy_YJ:https://www.facebook.com /Yahoo-USA-18444464460-Toll-Free-Help- Number-436279119895297/%3Fref%3Dnf+&cd=2&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:0A7izsruIA0J:https://www.facebook.com/Yahoo-18444464460 -Toll-Free-Help-429497237254510/%3Fref%3Dnf+&cd=3&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:EVnJkCsHQq0J:https://www.facebook.com/Yahoo-18444464460 -Toll-Free-Help-429497237254510/%3Ffref%3Dphoto+&cd=4&hl=en&ct=clnk? http://mypy- lang.org/wiki/PAYABLE%40canada%201%20888%20624%204666%20TURBOTAX%20Customer%20Support%20Phone%20Number#preview? https://webcache.googleusercontent.com/search?q=cache:pa7qnI4-G0kJ:https://www.facebook.com/Yahoo-18444464460 -Toll-Free-Help-429497237254510/%3Fsk%3Dphotos+&cd=5&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:-u1oFLMThR0J:https://www.facebook.com/Yahoo-18444464460 -Toll-Free-Help-200449756969996/+&cd=6&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:4WkdHtV5vtwJ:https://www.facebook.com/Yahoo-18444464460 -Toll-Free-Help-200449756969996/%3Fsk%3Dphotos+&cd=8&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:ggL_ajeiGvwJ:https://www.facebook.com/Yahoo-18444464460 -Toll-Free-Help-429497237254510/photos+&cd=9&hl=en&ct=clnk? Welcome to the pogocustomerservice wiki! Pogo games support number, Pogo games tech support number, Pogo games support Phone number, Pogo games tech support phone number, pogo games support, pogo games technical support number, pogo games technical support, pogo games technical support phone number, pogo games customer support, pogo games customer services phone number, pogo game helpline number, pogo games support toll free number, pogo games helpline phone number, pogo games online help, pogo games customer care number, pogo games customer service Call us on our toll free number 1-844-446-4460 and Resolve issue with POGO Game. We provide 24?7 online Support for Pogo. Are You Looking for Pogo Game Support, Call us on our toll free number 1-844-446-4460 for instant resolution for your issue which you are facing with Pogo Game. We Provide 24?7 online Pogo game Support. Pogo support number Pogo support helpline number Pogo support toll free Pogo support Pogo technical support number Pogo technical support Phone number Pogo support Online Help pogo game support toll free number Pogo Tech Support Phone Number Pogo helpline phone number pogo game customer support number Pogo helpline phone number pogo support Pogo support Online Help Pogo Tech Support Phone Number Pogo technical support number Pogo technical support Phone number Call us on our toll free number 1-844-446-4460 and Resolve issue with POGO Game. We provide 24?7 online Support for Pogo. Call us on our toll free number 1-844-446-4460 and Resolve issue with POGO Game. We provide 24?7 online Support for Pogo. Pogo games support number, Pogo games tech support number, Pogo games support Phone number, Pogo games tech support phone number, pogo games support, pogo games technical support number, pogo games technical support, pogo games technical support phone number, pogo games customer support, pogo games customer services phone number, pogo game helpline number, pogo games support toll free number, pogo games helpline phone number, pogo games online help, pogo games customer care number, pogo games customer service Call us on our toll free number 1-844-446-4460 and Resolve issue with POGO Game. We provide 24?7 online Support for Pogo. Are You Looking for Pogo Game Support, Call us on our toll free number 1-844-446-4460 for instant resolution for your issue which you are facing with Pogo Game. We Provide 24?7 online Pogo game Support. Pogo support number Pogo support helpline number Pogo support toll free Pogo support Pogo technical support number Pogo technical support Phone number Pogo support Online Help pogo game support toll free number Pogo Tech Support Phone Number Pogo helpline phone number pogo game customer support number Pogo helpline phone number pogo support Pogo support Online Help Pogo Tech Support Phone Number Pogo technical support number Pogo technical support Phone number https://webcache.googleusercontent.com/search?q=cache:Kno- xGzWaEoJ:https://www.facebook.com/Yahoo-18444464460-Toll-Free-Help- number-206503696359294/%3Fsk%3Dphotos+&cd=10&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:S0YwlRXgrGAJ:https://www.facebook.com/1683939178528956/photos/a.1683939331862274.1073741825.1683939178528956/1683939341862273/+&cd=25&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:ojNRQQAEDTkJ:https://www.facebook.com/Gmail-18444464460 -Toll-Free-Help-number-1084654354899805/%3Fref%3Dnf+&cd=1&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:crfG0V2MaeEJ:https://www.facebook.com/Gmail-18444464460 -Toll-Free-Help-number-1506019633035925/%3Fref%3Dnf+&cd=2&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:2MVaPwEQR1oJ:https://www.facebook.com/Gmail-18444464460 -Toll-Free-Help-number-1734482920104140/+&cd=3&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:9TXdtq6UyJsJ:https://www.facebook.com/Gmail-18444464460 -Toll-Free-Help-number-1084654354899805/photos+&cd=4&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:trrEEwpV7qgJ:https://www.facebook.com/Gmail-18444464460 -Toll-Free-Help-number-1506019633035925/photos+&cd=5&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:jcMjBxocv9oJ:https://www.facebook.com/Gmail-18444464460 -Toll-Free-Help- number-1734482920104140/%3Fsk%3Dphotos+&cd=6&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:GXax_fuht2UJ:https://www.facebook.com/Gmail-18444464460 -Toll-Free-Help-number-1734482920104140/photos+&cd=7&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:E9NAx- _nhpIJ:https://www.facebook.com/1084654354899805/photos/a.1084654628233111.1073741825.1084654354899805/1084654634899777/+&cd=8&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:BABhNs4-rawJ:https://www.facebook.com/Gmail-18444464460 -Toll-Free-Help- number-1084654354899805/%3Fsk%3Dphotos+&cd=9&hl=en&ct=clnk? https://webcache.googleusercontent.com/search?q=cache:L2yvpY5ZqdMJ:https://www.facebook.com/media/set/%3Fset%3Da.1084654628233111.1073741825.1084654354899805%26type%3D3+&cd=11&hl=en&ct=clnk? http://pt.slideshare.net/Dwilson001/pogo-game-customer-service-18444464460 -pogo-com-game-tech-support-helpline-number https://webcache.googleusercontent.com/search?q=cache:tMpM7VX0K64J:https://github.com/pogocustomerservice/pogocustomerservice/wiki /Pogo-Game-Support-1-844-446-4460--for-instant-resolution-for-your-issue- which-you-are-facing-with-Pogo-Game.-We-Provide-24%25C3%25977-online-Pogo- game-Support.+&cd=3&hl=en&ct=clnk&gl=in Help@ 1-844-446-4460 Pogo Customer Service Number,Pogo Help Phone Number some times Pogo Games not working stop Loading and all such related issues call Pogo Support Phone Number 1-844-446-4460 Pogo Contact Number Pogo Tech Support 1-844-446-4460 Pogo Customer Support 1-844-446-4460 Pogo Support Number 1-844-446-4460 Pogo Support Dashboard 1-844-446-4460 Pogo Support Telephone Number 1-844-446-4460 Pogo Customer Support phone number 1-844-446-4460 Pogo Technical Support contact number 1-844-446-4460 1-844-446-4460 Pogo customer care phone number Pogo support number Pogo tech support phone number Pogo technical support phone number 1-844-446-4460 Pogo customer care phone number Pogo support number Pogo tech support phone number Pogo technical support phone number usa Pogo customer support phone number Pogo technical support Pogo phone support phone number for Pogo customer support Pogo customer support Pogo technical support number Pogo tech support Pogo support phone Pogo tech support number Pogo customer support phone Pogo lab support phone number phone number for Pogo tech support Pogo support chat Pogo tech support phone number usa phone number for Pogo technical support Pogo customer support number Pogo phone number support contact Pogo support Pogo support phone number Pogo telephone support Pogo chat support Pogo customer support usa contact Pogo technical support call Pogo technical support Pogo tech support chat Pogo phone number technical support support Pogo telephone number for Pogo technical support Pogo support Pogo technical support phone number Pogo technical support chat how to contact Pogo tech support Pogo online support Pogo lab support usa Pogo support Pogo technical support usa Pogo internet security support Pogo telephone number support Pogo lab technical support Pogo live support support for Pogo Pogo technical support Pogo live chat support Pogo online chat support Pogo support phone number canada Pogo tech support phone number Pogo support contact Pogo support number uk Pogo online support chat Pogo telephone support uk Pogo email support Pogo support email Pogo support uk Pogo support number Pogo support email address Pogo uk support Pogo technical support uk Pogo technical support email address Pogo help and support Pogo support technique telephone Pogo technical support number support Pogo telephone support Pogo lab Pogo phone number Pogo tech support technical support phone number phone number for Pogo Pogo contact number Pogo tech support technical support phone number usa Pogo phone number tech support technical support Pogo help phone number Pogo phone number usa Pogo contact phone number Pogo tech support technical support number phone number for Pogo tech support technical support Pogo lab phone number Pogo tech support technical support phone number us Pogo help desk phone number Pogo tech support technical support phone number Pogo telephone number Pogo usa phone number Pogo sales phone number Pogo number phone number Pogo tech support technical support Pogo tech support technical support telephone number Pogo phone number Pogo 844 number Pogo help number Pogo tech support technical support number usa Pogo 1844 number contact number for Pogo Pogo contact number us Pogo toll free number Pogo tech support technical support number Pogo order number Pogo phone number uk Pogo tech support technical support number Pogo tech support technical support contact Pogo tech support technical support Pogo tech support technical support phone Pogo tech support technical support Pogo labs us tech support technical support Pogo lab tech support technical support Pogo tech support technical support online chat Pogo service Pogo tech support technical support uk 1-844-446-4460 Pogo customer care phone number Pogo support number Pogo tech support phone number Pogo technical support phone number usa Pogo customer support phone number Pogo technical support Pogo phone support phone number for Pogo customer support Pogo customer support Pogo technical support number Pogo tech support Pogo support phone Pogo tech support number Pogo customer support phone Pogo lab support phone number phone number for Pogo tech support Pogo support chat Pogo tech support phone number usa phone number for Pogo technical support Pogo customer support number Pogo phone number support contact Pogo support Pogo support phone number Pogo telephone support Pogo chat support Pogo customer support usa contact Pogo technical support call Pogo technical support Pogo tech support chat Pogo phone number technical support support Pogo telephone number for Pogo technical support Pogo support Pogo technical support phone number Pogo technical support chat how to contact Pogo tech support Pogo online support Pogo lab support usa Pogo support Pogo technical support usa Pogo internet security support Pogo telephone number support Pogo lab technical support Pogo live support support for Pogo Pogo technical support Pogo live chat support Pogo online chat support Pogo support phone number canada Pogo tech support phone number Pogo support contact Pogo support number uk Pogo online support chat Pogo telephone support uk Pogo email support Pogo support email Pogo support uk Pogo support number Pogo support email address Pogo uk support Pogo technical support uk Pogo technical support email address Pogo help and support Pogo support technique telephone Pogo technical support number support Pogo telephone support Pogo lab Pogo phone number Pogo tech support technical support phone number phone number for Pogo Pogo contact number Pogo tech support technical support phone number usa Pogo phone number tech support technical support Pogo help phone number Pogo phone number usa Pogo contact phone number Pogo tech support technical support number phone number for Pogo tech support technical support Pogo lab phone number Pogo tech support technical support phone number us Pogo help desk phone number Pogo tech support technical support phone number Pogo telephone number Pogo usa phone number Pogo sales phone number Pogo number phone number Pogo tech support technical support Pogo tech support technical support telephone number Pogo phone number Pogo 844 number Pogo help number Pogo tech support technical support number usa Pogo 1844 number contact number for Pogo Pogo contact number us Pogo toll free number Pogo tech support technical support number Pogo order number Pogo phone number uk Pogo tech support technical support number Pogo tech support technical support contact Pogo tech support technical support Pogo tech support technical support phone Pogo tech support technical support Pogo labs us tech support technical support Pogo lab tech support technical support Pogo tech support technical support online chat Pogo service Pogo tech support technical support uk call 24*7 Pogo Support Help, Pogo Support Phone Number http://webcache.googleusercontent.com/search?q=cache:xV0f1_A0W4sJ:pogocustomersupport.blogspot.com/+&cd=4&hl=en&ct=clnk&gl=in http://webcache.googleusercontent.com/search?q=cache:hOkaOWHi5B4J:pogocustomersupport.com/+&cd=5&hl=en&ct=clnk&gl=in http://webcache.googleusercontent.com/search?q=cache:ezDcCs1yxb8J:18444464460pogotollfreenumber.blogspot.com/2015/11/1-844-446-4460 -pogo-customer-service.html+&cd=7&hl=en&ct=clnk&gl=in -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:39:37 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:39:37 -0000 Subject: [GHC] #11889: wynn POGO GAMES CONTACT tech Support Number !! 1 844 446 4460 Message-ID: <044.d414f83a0e186bcd9242d66586f7f173@haskell.org> #11889: wynn POGO GAMES CONTACT tech Support Number !! 1 844 446 4460 -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- wynn POGO GAMES CONTACT tech Support Number !! 1 844 446 4460 http://upstart.ubuntu.com/wiki/Obama%2B1844 %20446 %204460 %20Turbotax%20Helpdesk%20number,%20helpdesk%20phone%20number. WYNN 1-844 446 -4460 POGO GAME LOGIN ERROR Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number {| class="wikitable" |- ! POGO GAME LOGIN ERROR tech Support Number !! 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Contact Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Contact Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number ?USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 POGO GAME LOGIN ERROR Desktop care phone number. Jack fell on 1844 446 4460 POGO GAME LOGIN ERROR care number and broke his crown and jill came on 1844 446 4460 POGO GAME LOGIN ERROR care helpline number. JAck has a teddy bear called 1844 446 4460 POGO GAME LOGIN ERROR care helpline phone number, and jill has a barbie doll named 1844 446 4460 POGO GAME LOGIN ERROR care Helpline. Twiinkle twinkle little star 1844 446 4460 POGO GAME LOGIN ERROR Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 POGO GAME LOGIN ERROR care Helpdesk number. Up above the world of 1844 446 4460 POGO GAME LOGIN ERROR care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 POGO GAME LOGIN ERROR service phone number sat on a 1844 446 4460 POGO GAME LOGIN ERROR service number, Humpty dumpty had a gret fall 1844 446 4460 POGO GAME LOGIN ERROR Desktop service helpline phone number. All the kings horses all the 1844 446 4460 POGO GAME LOGIN ERROR service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 POGO GAME LOGIN ERROR service helpline, Yes sir yes sir three 1844 446 4460 POGO GAME LOGIN ERROR Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 POGO GAME LOGIN ERROR service helpdesk number one for the dame 1844 446 4460 POGO GAME LOGIN ERROR service helpdesk. One for the little boy 1844 446 4460 POGO GAME LOGIN ERROR support phone number who lives down the lane. Johhny johhny 1844 446 4460 POGO GAME LOGIN ERROR support number, Yes papa Eating sugar 1844 446 4460 POGO GAME LOGIN ERROR support ,No papa. telling lies 1844 446 4460 POGO GAME LOGIN ERROR support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 POGO GAME LOGIN ERROR Desktop support helpline number. A lion and a unicorn 1844 446 4460 POGO GAME LOGIN ERROR support helpline were in the jungle 1844 446 4460 POGO GAME LOGIN ERROR support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 POGO GAME LOGIN ERROR support helpdesk number so the unicorn gave birth to my child 1844 446 4460 POGO GAME LOGIN ERROR Desktop support helpdesk. POGO GAME LOGIN ERROR is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . POGO GAME LOGIN ERROR ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into POGO GAME LOGIN ERROR , including remote access capabilities, remote assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that POGO GAME LOGIN ERROR Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked POGO GAME LOGIN ERROR technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit POGO GAME LOGIN ERROR Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit POGO GAME LOGIN ERROR Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit POGO GAME LOGIN ERROR tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for POGO GAME LOGIN ERROR Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit POGO GAME LOGIN ERROR Care phone number 1-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. POGO GAME LOGIN ERROR technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that POGO GAME LOGIN ERROR technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of POGO GAME LOGIN ERROR technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit POGO GAME LOGIN ERROR Technical Support Phone number +1 844 446 4460 on the url & . Intuit POGO GAME LOGIN ERROR Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to POGO GAME LOGIN ERROR , Support phone number 1844 446 4460 , POGO GAME LOGIN ERROR Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit POGO GAME LOGIN ERROR Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit POGO GAME LOGIN ERROR Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best POGO GAME LOGIN ERROR support. This is best toll free number 1844 -446 -4460 .this is technical support number for POGO GAME LOGIN ERROR 24|7.you can call any time for any blem of POGO GAME LOGIN ERROR like POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR data recovery, POGO GAME LOGIN ERROR Desktop enterprises, POGO GAME LOGIN ERROR and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 POGO GAME LOGIN ERROR tech support , POGO GAME LOGIN ERROR Tech Support Phone Number USA , POGO GAME LOGIN ERROR Technical Support phone Number, POGO GAME LOGIN ERROR support phone number , POGO GAME LOGIN ERROR support phone number USA , POGO GAME LOGIN ERROR technical support number USA , POGO GAME LOGIN ERROR tech support telephone number, POGO GAME LOGIN ERROR help phone number, Intuit technical support phone number, POGO GAME LOGIN ERROR support number , Quickbook tech support phone number, Intuit POGO GAME LOGIN ERROR Desktop tech support phone number, POGO GAME LOGIN ERROR enterprise support phone number, POGO GAME LOGIN ERROR component repair tool for windows xp|vista|7 , POGO GAME LOGIN ERROR Desktop not connecting to internet. POGO GAME LOGIN ERROR unsupported system configuration, Dealing some random error message installing POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR Data export or import issues, POGO GAME LOGIN ERROR failed to make an internet connection, POGO GAME LOGIN ERROR multi user mode not syncing, POGO GAME LOGIN ERROR not opening in multi-user mode, POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 .POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 . Showing error while updating company data file in POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But POGO GAME LOGIN ERROR Desktop is also a fairly complex application. This complexity means that POGO GAME LOGIN ERROR is ne to having blems like how to restore POGO GAME LOGIN ERROR auto data recovery, POGO GAME LOGIN ERROR Connection blem and connection configuration, POGO GAME LOGIN ERROR Installation Support Phone Number, POGO GAME LOGIN ERROR Company File Not Opening in Multi User Mode, POGO GAME LOGIN ERROR Keeps Disconnecting From Server, POGO GAME LOGIN ERROR Error Message Server Busy, POGO GAME LOGIN ERROR Tech Support Phone Number, POGO GAME LOGIN ERROR Data File Needs To Be Updated. POGO GAME LOGIN ERROR Data File Recovery Extention, POGO GAME LOGIN ERROR connection has been lost, POGO GAME LOGIN ERROR Desktop Installation Error 1722,1334,15215&1904, POGO GAME LOGIN ERROR Desktop error code 6000,3371, POGO GAME LOGIN ERROR error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with POGO GAME LOGIN ERROR , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our POGO GAME LOGIN ERROR level 5 technicians are available for fix any queries all ducts of POGO GAME LOGIN ERROR . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of POGO GAME LOGIN ERROR Desktop . This is our best online customer care service. Contact us for resolve your any POGO GAME LOGIN ERROR blems. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:40:30 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:40:30 -0000 Subject: [GHC] #11890: POGO GAME LOGIN ERROR tech Support Number !! 1 844 446 4460 Message-ID: <044.2b946a54d37fbb7214053f1eb685a3aa@haskell.org> #11890: POGO GAME LOGIN ERROR tech Support Number !! 1 844 446 4460 -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- POGO GAME LOGIN ERROR tech Support Number !! 1 844 446 4460http://upstart.ubuntu.com/wiki/Obama%2B1844 %20446 %204460 %20Turbotax%20Helpdesk%20number,%20helpdesk%20phone%20number. WYNN 1-844 446 -4460 POGO GAME LOGIN ERROR Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number {| class="wikitable" |- ! POGO GAME LOGIN ERROR tech Support Number !! 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Contact Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Contact Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number ?USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 POGO GAME LOGIN ERROR Desktop care phone number. Jack fell on 1844 446 4460 POGO GAME LOGIN ERROR care number and broke his crown and jill came on 1844 446 4460 POGO GAME LOGIN ERROR care helpline number. JAck has a teddy bear called 1844 446 4460 POGO GAME LOGIN ERROR care helpline phone number, and jill has a barbie doll named 1844 446 4460 POGO GAME LOGIN ERROR care Helpline. Twiinkle twinkle little star 1844 446 4460 POGO GAME LOGIN ERROR Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 POGO GAME LOGIN ERROR care Helpdesk number. Up above the world of 1844 446 4460 POGO GAME LOGIN ERROR care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 POGO GAME LOGIN ERROR service phone number sat on a 1844 446 4460 POGO GAME LOGIN ERROR service number, Humpty dumpty had a gret fall 1844 446 4460 POGO GAME LOGIN ERROR Desktop service helpline phone number. All the kings horses all the 1844 446 4460 POGO GAME LOGIN ERROR service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 POGO GAME LOGIN ERROR service helpline, Yes sir yes sir three 1844 446 4460 POGO GAME LOGIN ERROR Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 POGO GAME LOGIN ERROR service helpdesk number one for the dame 1844 446 4460 POGO GAME LOGIN ERROR service helpdesk. One for the little boy 1844 446 4460 POGO GAME LOGIN ERROR support phone number who lives down the lane. Johhny johhny 1844 446 4460 POGO GAME LOGIN ERROR support number, Yes papa Eating sugar 1844 446 4460 POGO GAME LOGIN ERROR support ,No papa. telling lies 1844 446 4460 POGO GAME LOGIN ERROR support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 POGO GAME LOGIN ERROR Desktop support helpline number. A lion and a unicorn 1844 446 4460 POGO GAME LOGIN ERROR support helpline were in the jungle 1844 446 4460 POGO GAME LOGIN ERROR support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 POGO GAME LOGIN ERROR support helpdesk number so the unicorn gave birth to my child 1844 446 4460 POGO GAME LOGIN ERROR Desktop support helpdesk. POGO GAME LOGIN ERROR is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . POGO GAME LOGIN ERROR ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into POGO GAME LOGIN ERROR , including remote access capabilities, remote assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that POGO GAME LOGIN ERROR Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked POGO GAME LOGIN ERROR technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit POGO GAME LOGIN ERROR Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit POGO GAME LOGIN ERROR Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit POGO GAME LOGIN ERROR tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for POGO GAME LOGIN ERROR Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit POGO GAME LOGIN ERROR Care phone number 1-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. POGO GAME LOGIN ERROR technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that POGO GAME LOGIN ERROR technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of POGO GAME LOGIN ERROR technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit POGO GAME LOGIN ERROR Technical Support Phone number +1 844 446 4460 on the url & . Intuit POGO GAME LOGIN ERROR Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to POGO GAME LOGIN ERROR , Support phone number 1844 446 4460 , POGO GAME LOGIN ERROR Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit POGO GAME LOGIN ERROR Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit POGO GAME LOGIN ERROR Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best POGO GAME LOGIN ERROR support. This is best toll free number 1844 -446 -4460 .this is technical support number for POGO GAME LOGIN ERROR 24|7.you can call any time for any blem of POGO GAME LOGIN ERROR like POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR data recovery, POGO GAME LOGIN ERROR Desktop enterprises, POGO GAME LOGIN ERROR and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 POGO GAME LOGIN ERROR tech support , POGO GAME LOGIN ERROR Tech Support Phone Number USA , POGO GAME LOGIN ERROR Technical Support phone Number, POGO GAME LOGIN ERROR support phone number , POGO GAME LOGIN ERROR support phone number USA , POGO GAME LOGIN ERROR technical support number USA , POGO GAME LOGIN ERROR tech support telephone number, POGO GAME LOGIN ERROR help phone number, Intuit technical support phone number, POGO GAME LOGIN ERROR support number , Quickbook tech support phone number, Intuit POGO GAME LOGIN ERROR Desktop tech support phone number, POGO GAME LOGIN ERROR enterprise support phone number, POGO GAME LOGIN ERROR component repair tool for windows xp|vista|7 , POGO GAME LOGIN ERROR Desktop not connecting to internet. POGO GAME LOGIN ERROR unsupported system configuration, Dealing some random error message installing POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR Data export or import issues, POGO GAME LOGIN ERROR failed to make an internet connection, POGO GAME LOGIN ERROR multi user mode not syncing, POGO GAME LOGIN ERROR not opening in multi-user mode, POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 .POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 . Showing error while updating company data file in POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But POGO GAME LOGIN ERROR Desktop is also a fairly complex application. This complexity means that POGO GAME LOGIN ERROR is ne to having blems like how to restore POGO GAME LOGIN ERROR auto data recovery, POGO GAME LOGIN ERROR Connection blem and connection configuration, POGO GAME LOGIN ERROR Installation Support Phone Number, POGO GAME LOGIN ERROR Company File Not Opening in Multi User Mode, POGO GAME LOGIN ERROR Keeps Disconnecting From Server, POGO GAME LOGIN ERROR Error Message Server Busy, POGO GAME LOGIN ERROR Tech Support Phone Number, POGO GAME LOGIN ERROR Data File Needs To Be Updated. POGO GAME LOGIN ERROR Data File Recovery Extention, POGO GAME LOGIN ERROR connection has been lost, POGO GAME LOGIN ERROR Desktop Installation Error 1722,1334,15215&1904, POGO GAME LOGIN ERROR Desktop error code 6000,3371, POGO GAME LOGIN ERROR error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with POGO GAME LOGIN ERROR , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our POGO GAME LOGIN ERROR level 5 technicians are available for fix any queries all ducts of POGO GAME LOGIN ERROR . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of POGO GAME LOGIN ERROR Desktop . This is our best online customer care service. Contact us for resolve your any POGO GAME LOGIN ERROR blems. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:41:28 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:41:28 -0000 Subject: [GHC] #11891: wynn POGO GAMES CONTACT tech Support Phone Number || 1 844 446 4460 |- Message-ID: <044.ea44a774af82e6890364b9f318d458a2@haskell.org> #11891: wynn POGO GAMES CONTACT tech Support Phone Number || 1 844 446 4460 |- -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- wynn POGO GAMES CONTACT tech Support Phone Number || 1 844 446 4460 |-UA-75287313-1 WYNN 1-844 446 -4460 wynn POGO GAMES CONTACT Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number UA-75287313-1 {| class="wikitable" |- ! wynn POGO GAMES CONTACT tech Support Number !! 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number ?USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 wynn POGO GAMES CONTACT Desktop care phone number. Jack fell on 1844 446 4460 wynn POGO GAMES CONTACT care number and broke his crown and jill came on 1844 446 4460 wynn POGO GAMES CONTACT care helpline number. JAck has a teddy bear called 1844 446 4460 wynn POGO GAMES CONTACT care helpline phone number, and jill has a barbie doll named 1844 446 4460 wynn POGO GAMES CONTACT care Helpline. Twiinkle twinkle little star 1844 446 4460 wynn POGO GAMES CONTACT Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk number. Up above the world of 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 wynn POGO GAMES CONTACT service phone number sat on a 1844 446 4460 wynn POGO GAMES CONTACT service number, Humpty dumpty had a gret fall 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpline phone number. All the kings horses all the 1844 446 4460 wynn POGO GAMES CONTACT service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 wynn POGO GAMES CONTACT service helpline, Yes sir yes sir three 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk number one for the dame 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk. One for the little boy 1844 446 4460 wynn POGO GAMES CONTACT support phone number who lives down the lane. Johhny johhny 1844 446 4460 wynn POGO GAMES CONTACT support number, Yes papa Eating sugar 1844 446 4460 wynn POGO GAMES CONTACT support ,No papa. telling lies 1844 446 4460 wynn POGO GAMES CONTACT support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpline number. A lion and a unicorn 1844 446 4460 wynn POGO GAMES CONTACT support helpline were in the jungle 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk number so the unicorn gave birth to my child 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpdesk. wynn POGO GAMES CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . wynn POGO GAMES CONTACT ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of wynn POGO GAMES CONTACT for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into wynn POGO GAMES CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that wynn POGO GAMES CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked wynn POGO GAMES CONTACT technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit wynn POGO GAMES CONTACT Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit wynn POGO GAMES CONTACT Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit wynn POGO GAMES CONTACT tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for wynn POGO GAMES CONTACT Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit wynn POGO GAMES CONTACT Care phone number UA-75287313-11-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. wynn POGO GAMES CONTACT technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that wynn POGO GAMES CONTACT technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of wynn POGO GAMES CONTACT technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 on the url & . Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to wynn POGO GAMES CONTACT , Payroll Support phone number 1844 446 4460 , POGO GAMES CONTACT Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit wynn POGO GAMES CONTACT Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit wynn POGO GAMES CONTACT Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best wynn POGO GAMES CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for wynn POGO GAMES CONTACT 24|7.you can call any time for any blem of wynn POGO GAMES CONTACT like wynn POGO GAMES CONTACT payroll, wynn POGO GAMES CONTACT data recovery, wynn POGO GAMES CONTACT Desktop enterprises, wynn POGO GAMES CONTACT and Quikbooks . Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 wynn POGO GAMES CONTACT tech support , wynn POGO GAMES CONTACT Tech Support Phone Number USA , wynn POGO GAMES CONTACT Technical Support phone Number, wynn POGO GAMES CONTACT support phone number , wynn POGO GAMES CONTACT support phone number USA , wynn POGO GAMES CONTACT technical support number USA , wynn POGO GAMES CONTACT tech support telephone number, wynn POGO GAMES CONTACT help phone number, Intuit technical support phone number, wynn POGO GAMES CONTACT support number , Quickbook tech support phone number, Intuit wynn POGO GAMES CONTACT Desktop tech support phone number, wynn POGO GAMES CONTACT enterprise support phone number, wynn POGO GAMES CONTACT component repair tool for windows xp|vista|7 , wynn POGO GAMES CONTACT Desktop not connecting to internet. wynn POGO GAMES CONTACT unsupported system configuration, Dealing some random error message installing wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Data export or import issues, wynn POGO GAMES CONTACT failed to make an internet connection, wynn POGO GAMES CONTACT multi user mode not syncing, wynn POGO GAMES CONTACT not opening in multi-user mode, wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 .wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 . Showing error while updating company data file in wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But wynn POGO GAMES CONTACT Desktop is also a fairly complex application. This complexity means that wynn POGO GAMES CONTACT is ne to having blems like how to restore wynn POGO GAMES CONTACT auto data recovery, wynn POGO GAMES CONTACT Connection blem and connection configuration, wynn POGO GAMES CONTACT Installation Support Phone Number, wynn POGO GAMES CONTACT Company File Not Opening in Multi User Mode, wynn POGO GAMES CONTACT Keeps Disconnecting From Server, wynn POGO GAMES CONTACT Error Message Server Busy, wynn POGO GAMES CONTACT Payroll Tech Support Phone Number, wynn POGO GAMES CONTACT Data File Needs To Be Updated. wynn POGO GAMES CONTACT Data File Recovery Extention, wynn POGO GAMES CONTACT UA-75287313-1connection has been lost, wynn POGO GAMES CONTACT Desktop Installation Error 1722,1334,15215&1904, wynn POGO GAMES CONTACT Desktop error code 6000,3371, wynn POGO GAMES CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with wynn POGO GAMES CONTACT , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our wynn POGO GAMES CONTACT level 5 technicians are available for fix any queries all ducts of wynn POGO GAMES CONTACT . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of wynn POGO GAMES CONTACT Desktop . This is our best customer care service. Contact us for resolve your any wynn POGO GAMES CONTACT blems. #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington-Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #New York #Los Angeles #Chicago #Houston #Philadelphia #Phoenix #San Diego #San Antonio #Dallas #Detroit #San Jose #Indianapolis #Jacksonville #San Francisco #Columbus #Austin #Memphis #Baltimore #Charlotte #Fort Worth #Boston #Milwaukee #El Paso #Washington #Nashville-Davidson #Seattle #Denver #Las Vegas #Portland #Oklahoma City #Tucson #Albuquerque #Atlanta #Long Beach #Kansas City #Fresno #New Orleans #Cleveland #Sacramento #Mesa #Virginia Beach #Omaha #Colorado Springs #Oakland #Miami #Tulsa #Minneapolis #Honolulu #Arlington #Wichita #St. Louis #Raleigh #Santa Ana #Cincinnati #Anaheim #Tampa #Toledo #Pittsburgh #Aurora #Bakersfield #Riverside #Stockton #Corpus Christi #Lexington-Fayette #Buffalo #St. Paul #Anchorage #Newark #Plano #Fort Wayne #St. Petersburg #Glendale #Lincoln #Norfolk #Jersey City #Greensboro #Chandler #Birmingham #Henderson #Scottsdale #North Hempstead #Madison #Hialeah #Baton Rouge #Chesapeake #Orlando #Lubbock #Garland #Akron #Rochester #Chula Vista #Reno #Laredo #Durham #Modesto #Huntington #Montgomery #Boise #Arlington #San Bernardino #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:42:35 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:42:35 -0000 Subject: [GHC] #11892: MD@USA POGO GAME INSTALLATION , RELOAD, UPDATE CONTACT pro technical Support Phone Number USA || 1***844 ***446 ***4460 Message-ID: <044.878bdd184bdfb9f7a8f9896298791c91@haskell.org> #11892: MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number USA || 1***844 ***446 ***4460 -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number USA || 1***844 ***446 ***4460 {| class="wikitable" |- ! MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number !! 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number ?USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number USA || 1***844 ***446 ***4460 |} Jack and Jill went up the hill to call 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care phone number. Jack fell on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care number and broke his crown and jill came on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline number. JAck has a teddy bear called 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline phone number, and jill has a barbie doll named 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpline. Twiinkle twinkle little star 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk phone number how i wonder what you are 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk number. Up above the world of 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk, like a diamond in the sky. Humpty dumpty 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service phone number sat on a 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service number, Humpty dumpty had a gret fall 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline phone number. All the kings horses all the 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline number could not put humpty togather again. Ba ba black sheep have u 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline, Yes sir yes sir three 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk phone number bags full. One for my master 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk number one for the dame 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk. One for the little boy 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support phone number who lives down the lane. Johhny johhny 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support number, Yes papa Eating sugar 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support ,No papa. telling lies 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline phone number no papa faad thoda ha ha ha 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline number. A lion and a unicorn 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline were in the jungle 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk phone number, the lion beat the unicorn balck and brown 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk number so the unicorn gave birth to my child 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1***844 ***446 ***4460 . MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT products are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1***844 ***446 ***4460 and Tom Proulx in Mountain View, California, USA 1***844 ***446 ***4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and improved e-mail functionality through Microsoft Outlook and Outlook Express @1***844 ***446 ***4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1***844 ***446 ***4460 . Hi All, Facebook users have liked MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number 1***844 ***446 ***4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Intuit Technical Support Phone number +1***844 ***446 ***4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1***844 ***446 ***4460 is the best. Apple also has a handle for Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 . There are amazing videos of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 on youtube on their site www.youtube.com they say it is great. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline phone number 1***844 ***446 ***4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline number 1***844 ***446 ***4460 Proadvisor and Pro Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline 1***844 ***446 ***4460 and using their products. Youtube videos have been telling us the story of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 on the url & Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 has been the pioneer in the field of providing service in terms of issues related to MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , Payroll Support phone number 1***844 ***446 ***4460 , POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 and Proadvisor Tech support phone number 1***844 ***446 ***4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1***844 ***446 ***4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1***844 ***446 ***4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1***844 ***446 ***4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been promoting Tech support phone number 1***844 ***446 ***4460 stories through their platform. Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support @ 1***844 ***446 ***4460 is also one of the places that talks about Tech support phone number 1***844 ***446 ***4460 . You can pay for Tech support phone number 1***844 ***446 ***4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1***844 ***446 ***4460 as number1. Stories of Tech support phone number 1***844 ***446 ***4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1***844 ***446 ***4460 on Go or Page on craiglist.org you will know Tech support phone number 1***844 ***446 ***4460 is special. They provide best MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT 24|7.you can call any time for any problem of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT like MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprises, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support telephone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help phone number, Intuit technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number , Quickbook tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprise support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT component repair tool for windows xp|vista|7 , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not connecting to internet. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT unsupported system configuration, Dealing some random error message installing MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data export or import issues, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT failed to make an internet connection, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT multi user mode not syncing, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not opening in multi-user mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 .MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 . Showing error while updating company data file in MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is also a fairly complex application. This complexity means that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is prone to having problems like how to restore MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT auto data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Connection Problem and connection configuration, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Company File Not Opening in Multi User Mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Keeps Disconnecting From Server, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Message Server Busy, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Payroll Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Needs To Be Updated. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Recovery Extention, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT connection has been lost, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Error 1722,1334,15215&1904, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code 6000,3371, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , the consequences can be pretty dire. Luckily, many common problems are easy to fix -- once you know about them. Our MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT level 5 technicians are available for fix any queries all products of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . We provide best service of any problems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your problems of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . This is our best online customer care service. Contact us for resolve your any MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT problems. 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. Sales: 844 .446 .4040. Support: 844 -446 -4040. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone Number: 844 -446 -4040. We'd suggest trying the Support site first because it's full of usefull information: #1***844 ***446 ***4460 Intuit Customer Service Number #1***844 ***446 ***4460 Intuit Customer Care Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 Intuit Customer Support Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number #1***844 ***446 ***4460 Intuit Customer Service Phone Number #1***844 ***446 ***4460 Intuit Customer Care Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 Intuit Customer Support Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number #1***844 ***446 ***4460 Call Intuit #1***844 ***446 ***4460 Call Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact Intuit #1***844 ***446 ***4460 Contact Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Call MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Alabama,Alaska,Arizona,Arkansas,California ,USA ,Canada, New York, Los Angeles, Chicago, Houston, Philadelphia, Phoenix, San Antonio, San Diego, Dallas, San Jose, Austin, Jacksonville, San Francisco, Indianapolis, Columbus, Fort Worth, Charlotte, Detroit, El Paso, Seattle, Denver, Washington, Memphis, Boston, Nashville, Baltimore, Oklahoma City, Portland, Las Vegas, Louisville, Milwaukee, Albuquerque, Tucson, Fresno, Sacramento, Long Beach, Kansas City, Mesa, Atlanta, Virginia Beach, Omaha, Colorado Springs, Raleigh, Miami, Oakland, Minneapolis, Tulsa, Cleveland, Wichita, New Orleans, Arlington, Bakersfield, Tampa, Aurora, Honolulu, Anaheim, Santa Ana, Corpus Christi, Riverside, St. Louis, Lexington, Pittsburgh, Stockton, Anchorage, Cincinnati, Saint Paul, Greensboro, Toledo, Newark, Plano, Henderson, Lincoln, Orlando, Jersey City, Chula Vista, Buffalo, Fort Wayne, Chandler and St. Petersburg, t is very popular toll free number which provide by MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number. Call, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Help Desk Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number, #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington- Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:43:44 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:43:44 -0000 Subject: [GHC] #11893: #1***844 ***446 ***4460 MD@USA POGO GAME INSTALLATION , RELOAD, UPDATE CONTACT Customer Service Phone Number Message-ID: <044.3130006872a1ce939d3502475faa7185@haskell.org> #11893: #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number {| class="wikitable" |- ! MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number !! 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number ?USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number USA || 1***844 ***446 ***4460 |} Jack and Jill went up the hill to call 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care phone number. Jack fell on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care number and broke his crown and jill came on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline number. JAck has a teddy bear called 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline phone number, and jill has a barbie doll named 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpline. Twiinkle twinkle little star 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk phone number how i wonder what you are 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk number. Up above the world of 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk, like a diamond in the sky. Humpty dumpty 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service phone number sat on a 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service number, Humpty dumpty had a gret fall 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline phone number. All the kings horses all the 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline number could not put humpty togather again. Ba ba black sheep have u 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline, Yes sir yes sir three 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk phone number bags full. One for my master 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk number one for the dame 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk. One for the little boy 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support phone number who lives down the lane. Johhny johhny 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support number, Yes papa Eating sugar 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support ,No papa. telling lies 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline phone number no papa faad thoda ha ha ha 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline number. A lion and a unicorn 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline were in the jungle 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk phone number, the lion beat the unicorn balck and brown 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk number so the unicorn gave birth to my child 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1***844 ***446 ***4460 . MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT products are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1***844 ***446 ***4460 and Tom Proulx in Mountain View, California, USA 1***844 ***446 ***4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and improved e-mail functionality through Microsoft Outlook and Outlook Express @1***844 ***446 ***4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1***844 ***446 ***4460 . Hi All, Facebook users have liked MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number 1***844 ***446 ***4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Intuit Technical Support Phone number +1***844 ***446 ***4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1***844 ***446 ***4460 is the best. Apple also has a handle for Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 . There are amazing videos of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 on youtube on their site www.youtube.com they say it is great. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline phone number 1***844 ***446 ***4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline number 1***844 ***446 ***4460 Proadvisor and Pro Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline 1***844 ***446 ***4460 and using their products. Youtube videos have been telling us the story of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 on the url & Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 has been the pioneer in the field of providing service in terms of issues related to MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , Payroll Support phone number 1***844 ***446 ***4460 , POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 and Proadvisor Tech support phone number 1***844 ***446 ***4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1***844 ***446 ***4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1***844 ***446 ***4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1***844 ***446 ***4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been promoting Tech support phone number 1***844 ***446 ***4460 stories through their platform. Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support @ 1***844 ***446 ***4460 is also one of the places that talks about Tech support phone number 1***844 ***446 ***4460 . You can pay for Tech support phone number 1***844 ***446 ***4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1***844 ***446 ***4460 as number1. Stories of Tech support phone number 1***844 ***446 ***4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1***844 ***446 ***4460 on Go or Page on craiglist.org you will know Tech support phone number 1***844 ***446 ***4460 is special. They provide best MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT 24|7.you can call any time for any problem of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT like MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprises, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support telephone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help phone number, Intuit technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number , Quickbook tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprise support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT component repair tool for windows xp|vista|7 , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not connecting to internet. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT unsupported system configuration, Dealing some random error message installing MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data export or import issues, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT failed to make an internet connection, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT multi user mode not syncing, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not opening in multi-user mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 .MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 . Showing error while updating company data file in MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is also a fairly complex application. This complexity means that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is prone to having problems like how to restore MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT auto data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Connection Problem and connection configuration, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Company File Not Opening in Multi User Mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Keeps Disconnecting From Server, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Message Server Busy, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Payroll Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Needs To Be Updated. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Recovery Extention, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT connection has been lost, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Error 1722,1334,15215&1904, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code 6000,3371, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , the consequences can be pretty dire. Luckily, many common problems are easy to fix -- once you know about them. Our MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT level 5 technicians are available for fix any queries all products of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . We provide best service of any problems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your problems of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . This is our best online customer care service. Contact us for resolve your any MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT problems. 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. Sales: 844 .446 .4040. Support: 844 -446 -4040. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone Number: 844 -446 -4040. We'd suggest trying the Support site first because it's full of usefull information: #1***844 ***446 ***4460 Intuit Customer Service Number #1***844 ***446 ***4460 Intuit Customer Care Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 Intuit Customer Support Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number #1***844 ***446 ***4460 Intuit Customer Service Phone Number #1***844 ***446 ***4460 Intuit Customer Care Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 Intuit Customer Support Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number #1***844 ***446 ***4460 Call Intuit #1***844 ***446 ***4460 Call Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact Intuit #1***844 ***446 ***4460 Contact Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Call MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Alabama,Alaska,Arizona,Arkansas,California ,USA ,Canada, New York, Los Angeles, Chicago, Houston, Philadelphia, Phoenix, San Antonio, San Diego, Dallas, San Jose, Austin, Jacksonville, San Francisco, Indianapolis, Columbus, Fort Worth, Charlotte, Detroit, El Paso, Seattle, Denver, Washington, Memphis, Boston, Nashville, Baltimore, Oklahoma City, Portland, Las Vegas, Louisville, Milwaukee, Albuquerque, Tucson, Fresno, Sacramento, Long Beach, Kansas City, Mesa, Atlanta, Virginia Beach, Omaha, Colorado Springs, Raleigh, Miami, Oakland, Minneapolis, Tulsa, Cleveland, Wichita, New Orleans, Arlington, Bakersfield, Tampa, Aurora, Honolulu, Anaheim, Santa Ana, Corpus Christi, Riverside, St. Louis, Lexington, Pittsburgh, Stockton, Anchorage, Cincinnati, Saint Paul, Greensboro, Toledo, Newark, Plano, Henderson, Lincoln, Orlando, Jersey City, Chula Vista, Buffalo, Fort Wayne, Chandler and St. Petersburg, t is very popular toll free number which provide by MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number. Call, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Help Desk Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number, #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington- Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:45:03 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:45:03 -0000 Subject: [GHC] #11894: POGO GAME LOGIN ERROR premier support number USA || 1 844 446 4460 Message-ID: <044.248eb81c873db080f03ce8e53319290a@haskell.org> #11894: POGO GAME LOGIN ERROR premier support number USA || 1 844 446 4460 -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- POGO GAME LOGIN ERROR premier support number USA || 1 844 446 4460 http://upstart.ubuntu.com/wiki/Obama%2B1844 %20446 %204460 %20Turbotax%20Helpdesk%20number,%20helpdesk%20phone%20number. WYNN 1-844 446 -4460 POGO GAME LOGIN ERROR Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number {| class="wikitable" |- ! POGO GAME LOGIN ERROR tech Support Number !! 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Contact Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Contact Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number ?USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 POGO GAME LOGIN ERROR Desktop care phone number. Jack fell on 1844 446 4460 POGO GAME LOGIN ERROR care number and broke his crown and jill came on 1844 446 4460 POGO GAME LOGIN ERROR care helpline number. JAck has a teddy bear called 1844 446 4460 POGO GAME LOGIN ERROR care helpline phone number, and jill has a barbie doll named 1844 446 4460 POGO GAME LOGIN ERROR care Helpline. Twiinkle twinkle little star 1844 446 4460 POGO GAME LOGIN ERROR Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 POGO GAME LOGIN ERROR care Helpdesk number. Up above the world of 1844 446 4460 POGO GAME LOGIN ERROR care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 POGO GAME LOGIN ERROR service phone number sat on a 1844 446 4460 POGO GAME LOGIN ERROR service number, Humpty dumpty had a gret fall 1844 446 4460 POGO GAME LOGIN ERROR Desktop service helpline phone number. All the kings horses all the 1844 446 4460 POGO GAME LOGIN ERROR service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 POGO GAME LOGIN ERROR service helpline, Yes sir yes sir three 1844 446 4460 POGO GAME LOGIN ERROR Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 POGO GAME LOGIN ERROR service helpdesk number one for the dame 1844 446 4460 POGO GAME LOGIN ERROR service helpdesk. One for the little boy 1844 446 4460 POGO GAME LOGIN ERROR support phone number who lives down the lane. Johhny johhny 1844 446 4460 POGO GAME LOGIN ERROR support number, Yes papa Eating sugar 1844 446 4460 POGO GAME LOGIN ERROR support ,No papa. telling lies 1844 446 4460 POGO GAME LOGIN ERROR support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 POGO GAME LOGIN ERROR Desktop support helpline number. A lion and a unicorn 1844 446 4460 POGO GAME LOGIN ERROR support helpline were in the jungle 1844 446 4460 POGO GAME LOGIN ERROR support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 POGO GAME LOGIN ERROR support helpdesk number so the unicorn gave birth to my child 1844 446 4460 POGO GAME LOGIN ERROR Desktop support helpdesk. POGO GAME LOGIN ERROR is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . POGO GAME LOGIN ERROR ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into POGO GAME LOGIN ERROR , including remote access capabilities, remote assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that POGO GAME LOGIN ERROR Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked POGO GAME LOGIN ERROR technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit POGO GAME LOGIN ERROR Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit POGO GAME LOGIN ERROR Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit POGO GAME LOGIN ERROR tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for POGO GAME LOGIN ERROR Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit POGO GAME LOGIN ERROR Care phone number 1-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. POGO GAME LOGIN ERROR technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that POGO GAME LOGIN ERROR technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of POGO GAME LOGIN ERROR technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit POGO GAME LOGIN ERROR Technical Support Phone number +1 844 446 4460 on the url & . Intuit POGO GAME LOGIN ERROR Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to POGO GAME LOGIN ERROR , Support phone number 1844 446 4460 , POGO GAME LOGIN ERROR Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit POGO GAME LOGIN ERROR Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit POGO GAME LOGIN ERROR Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best POGO GAME LOGIN ERROR support. This is best toll free number 1844 -446 -4460 .this is technical support number for POGO GAME LOGIN ERROR 24|7.you can call any time for any blem of POGO GAME LOGIN ERROR like POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR data recovery, POGO GAME LOGIN ERROR Desktop enterprises, POGO GAME LOGIN ERROR and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 POGO GAME LOGIN ERROR tech support , POGO GAME LOGIN ERROR Tech Support Phone Number USA , POGO GAME LOGIN ERROR Technical Support phone Number, POGO GAME LOGIN ERROR support phone number , POGO GAME LOGIN ERROR support phone number USA , POGO GAME LOGIN ERROR technical support number USA , POGO GAME LOGIN ERROR tech support telephone number, POGO GAME LOGIN ERROR help phone number, Intuit technical support phone number, POGO GAME LOGIN ERROR support number , Quickbook tech support phone number, Intuit POGO GAME LOGIN ERROR Desktop tech support phone number, POGO GAME LOGIN ERROR enterprise support phone number, POGO GAME LOGIN ERROR component repair tool for windows xp|vista|7 , POGO GAME LOGIN ERROR Desktop not connecting to internet. POGO GAME LOGIN ERROR unsupported system configuration, Dealing some random error message installing POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR Data export or import issues, POGO GAME LOGIN ERROR failed to make an internet connection, POGO GAME LOGIN ERROR multi user mode not syncing, POGO GAME LOGIN ERROR not opening in multi-user mode, POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 .POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 . Showing error while updating company data file in POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But POGO GAME LOGIN ERROR Desktop is also a fairly complex application. This complexity means that POGO GAME LOGIN ERROR is ne to having blems like how to restore POGO GAME LOGIN ERROR auto data recovery, POGO GAME LOGIN ERROR Connection blem and connection configuration, POGO GAME LOGIN ERROR Installation Support Phone Number, POGO GAME LOGIN ERROR Company File Not Opening in Multi User Mode, POGO GAME LOGIN ERROR Keeps Disconnecting From Server, POGO GAME LOGIN ERROR Error Message Server Busy, POGO GAME LOGIN ERROR Tech Support Phone Number, POGO GAME LOGIN ERROR Data File Needs To Be Updated. POGO GAME LOGIN ERROR Data File Recovery Extention, POGO GAME LOGIN ERROR connection has been lost, POGO GAME LOGIN ERROR Desktop Installation Error 1722,1334,15215&1904, POGO GAME LOGIN ERROR Desktop error code 6000,3371, POGO GAME LOGIN ERROR error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with POGO GAME LOGIN ERROR , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our POGO GAME LOGIN ERROR level 5 technicians are available for fix any queries all ducts of POGO GAME LOGIN ERROR . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of POGO GAME LOGIN ERROR Desktop . This is our best online customer care service. Contact us for resolve your any POGO GAME LOGIN ERROR blems. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:49:01 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:49:01 -0000 Subject: [GHC] #11897: fast call 1844 446 4.460 POGO CLUB REFUND Sup port Phone Num ber Message-ID: <044.226bdd3be44451c27feb581b1b3d9b13@haskell.org> #11897: fast call 1844 446 4.460 POGO CLUB REFUND Sup port Phone Num ber -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- fast call 1844 446 4.460 POGO CLUB REFUND Sup port Phone Num berhttp://upstart.ubuntu.com/wiki/Obama%2B1844 %20444 %20444 0 %20Turbotax%20Helpdesk%20number,%20helpdesk%20phone%20number. #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #WyomingP.O.G.O. G.A.M.E.S . ***((((1 . 844 . 4 . 46. 44 . 6 0 ...... )))..P.O.G.O. G.A.M.E.S . customer support phone number usa https://www.facebook.com/P.O.G.O. G.A.M.E.S . -Customer-Care- Helpline-1-844 -446 -446 0 -17414 19149384 992/ https://www.facebook.com/P.O.G.O. G.A.M.E.S . -Customer-Care- Helpline-1-844 -446 -446 0 -17414 19149384 992/ https://www.facebook.com/P.O.G.O. G.A.M.E.S . -Customer-Care- Helpline-1-844 -446 -446 0 -17414 19149384 992/ P.O.G.O. G.A.M.E.S . ***((((1 . 844 . 4 . 46. 44 . 6 0 ........ )))..P.O.G.O. G.A.M.E.S . customer support phone number usa P.O.G.O. G.A.M.E.S . ***((((1 . 844 . 4 . 46. 44 . 6 0 ........ )))..P.O.G.O. G.A.M.E.S . customer support phone number usa P.O.G.O. G.A.M.E.S . ... .... ..customer.. service......... Phon..e number..... USA .... ..customer ..support.. toll ..free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. support C@!!-???++1 844 444 444 0 )))P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA -CANADA C@!!-???++1 844 444 444 0 )))dial)))) P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA $CANADA USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.S . ... .. customer service....... Phone....... number... USA .. customer support toll free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer number... for P.O.G.O. G.A.M.E.S . ... P.O.G.O. G.A.M.E.S . ... .. tech support number..., P.O.G.O. G.A.M.E.S . ... ..s phone....... number..., phone....... number... for P.O.G.O. G.A.M.E.S . ... ..s P.O.G.O. G.A.M.E.S . ... .. customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... customer support telephone....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer service....... phone....... number..., P.O.G.O. G.A.M.E.S . ... .. helpline phone....... number..., P.O.G.O. G.A.M.E.S . ... support number... usa P.O.G.O. G.A.M.E.S . ... 844 number..., P.O.G.O. G.A.M.E.S . ... customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... .. technical support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s customer service....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer care.. number..., P.O.G.O. G.A.M.E.S . ... ..s contact number... USA~ P.O.G.O. G.A.M.E.S . ... .. +1844 444 444 0 customer care.. phone....... number... P.O.G.O. G.A.M.E.S . ... .. customer care.. +1844 444 444 0 @ toll free number... usa P.O.G.O. G.A.M.E.S . ... support no? P.O.G.O. G.A.M.E.S . ... .. service....... 1-844 -446 -446 0 center number..., P.O.G.O. G.A.M.E.S . ... customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... telephone....... number..., P.O.G.O. G.A.M.E.S . ... .. help number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... service....... number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... telephone....... number..., P.O.G.O. G.A.M.E.S . ... help number..., P.O.G.O. G.A.M.E.S . ... helpline number..., P.O.G.O. G.A.M.E.S . ... .. tech support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s service....... center number..., P.O.G.O. G.A.M.E.S . ... customer care.. number..., P.O.G.O. G.A.M.E.S . ... support Canada phone....... number... P.O.G.O. G.A.M.E.S . ... canada support number..., P.O.G.O. G.A.M.E.S . ... phone....... number... canada, P.O.G.O. G.A.M.E.S . ... canada phone....... number... P.O.G.O. G.A.M.E.S . ... service....... center contact number..., P.O.G.O. G.A.M.E.S . ... canada contact number..., P.O.G.O. G.A.M.E.S . ... contact number... canada P.O.G.O. G.A.M.E.S . ... service....... toll free number..., P.O.G.O. G.A.M.E.S . ... customer care..P.O.G.O. G.A.M.E.S . ... .... ..customer.. service......... Phon..e number..... USA .... ..customer ..support.. toll ..free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. support C@!!-???++1 844 444 444 0 )))P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA -CANADA C@!!-???++1 844 444 444 0 )))dial)))) P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA $CANADA USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.S . ... .. customer service....... Phone....... number... USA .. customer support toll free number...)@!! https://www.facebook.com/P.O.G.O. G.A.M.E.S . -Customer-Care-Helpline-1-844 -446 -446 0 -17414 19149384 992/ P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer number... for P.O.G.O. G.A.M.E.S . ... P.O.G.O. G.A.M.E.S . ... .. tech support number..., P.O.G.O. G.A.M.E.S . ... ..s phone....... number..., phone....... number... for P.O.G.O. G.A.M.E.S . ... ..s P.O.G.O. G.A.M.E.S . ... .. customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... customer support telephone....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer service....... phone....... number..., P.O.G.O. G.A.M.E.S . ... .. helpline phone....... number..., P.O.G.O. G.A.M.E.S . ... support number... usa P.O.G.O. G.A.M.E.S . ... 844 number..., P.O.G.O. G.A.M.E.S . ... customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... .. technical support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s customer service....... number..., https://www.facebook.com/P.O.G.O. G.A.M.E.S . -Customer-Care- Helpline-1-844 -446 -446 0 -17414 19149384 992/ P.O.G.O. G.A.M.E.S . ... ..s customer care.. number..., P.O.G.O. G.A.M.E.S . ... ..s contact number... USA~ P.O.G.O. G.A.M.E.S . ... .. +1844 444 444 0 customer care.. phone....... number... P.O.G.O. G.A.M.E.S . ... .. customer care.. +1844 444 444 0 @ toll free number... usa P.O.G.O. G.A.M.E.S . ... support no? P.O.G.O. G.A.M.E.S . ... .. service....... 1-844 -446 -446 0 center number..., P.O.G.O. G.A.M.E.S . ... customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... telephone....... number..., P.O.G.O. G.A.M.E.S . ... .. help number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... service....... number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... telephone....... number..., P.O.G.O. G.A.M.E.S . ... help number..., P.O.G.O. G.A.M.E.S . ... helpline number..., P.O.G.O. G.A.M.E.S . ... .. tech support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s service....... center number..., P.O.G.O. G.A.M.E.S . ... customer care.. number..., P.O.G.O. G.A.M.E.S . ... support Canada phone....... number... P.O.G.O. G.A.M.E.S . ... canada support number..., P.O.G.O. G.A.M.E.S . ... phone....... number... canada, P.O.G.O. G.A.M.E.S . ... canada phone....... number... P.O.G.O. G.A.M.E.S . ... service....... center contact number..., P.O.G.O. G.A.M.E.S . ... canada contact number..., P.O.G.O. G.A.M.E.S . ... contact number... canada P.O.G.O. G.A.M.E.S . ... service....... toll free number..., P.O.G.O. G.A.M.E.S . ... customer care..P.O.G.O. G.A.M.E.S . ... .... ..customer.. service......... Phon..e number..... USA .... ..customer ..support.. toll ..free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer service....... phone....... number... https://www.facebook.com/P.O.G.O. G.A.M.E.S . -Customer-Care- Helpline-1-844 -446 -446 0 -17414 19149384 992/ P.O.G.O. G.A.M.E.S . ... .. support C@!!-???++1 844 444 444 0 )))P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA -CANADA C@!!-???++1 844 444 444 0 )))dial)))) P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA $CANADA USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.S . ... .. customer service....... Phone....... number... USA .. customer support toll free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer number... for P.O.G.O. G.A.M.E.S . ... P.O.G.O. G.A.M.E.S . ... .. tech support number..., P.O.G.O. G.A.M.E.S . ... ..s phone....... number..., phone....... number... for P.O.G.O. G.A.M.E.S . ... ..s P.O.G.O. G.A.M.E.S . ... .. customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... customer support telephone....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer service....... phone....... number..., P.O.G.O. G.A.M.E.S . ... .. helpline phone....... number..., P.O.G.O. G.A.M.E.S . ... support number... usa P.O.G.O. G.A.M.E.S . ... 844 number..., P.O.G.O. G.A.M.E.S . ... customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... .. technical support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s customer service....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer care.. number..., P.O.G.O. G.A.M.E.S . ... ..s contact number... USA~ P.O.G.O. G.A.M.E.S . ... .. +1844 444 444 0 customer care.. phone....... number... P.O.G.O. G.A.M.E.S . ... .. customer care.. +1844 444 444 0 @ toll free number... usa P.O.G.O. G.A.M.E.S . ... support no? P.O.G.O. G.A.M.E.S . ... .. service....... 1-844 -446 -446 0 center number..., P.O.G.O. G.A.M.E.S . ... customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... telephone....... number..., P.O.G.O. G.A.M.E.S . ... .. help number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... service....... number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... telephone....... number..., P.O.G.O. G.A.M.E.S . ... help number..., P.O.G.O. G.A.M.E.S . ... helpline number..., P.O.G.O. G.A.M.E.S . ... .. tech support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s service....... center number..., P.O.G.O. G.A.M.E.S . ... customer care.. number..., P.O.G.O. G.A.M.E.S . ... support Canada phone....... number... P.O.G.O. G.A.M.E.S . ... canada support number..., P.O.G.O. G.A.M.E.S . ... phone....... number... canada, P.O.G.O. G.A.M.E.S . ... canada phone....... number... P.O.G.O. G.A.M.E.S . ... service....... center contact number..., P.O.G.O. G.A.M.E.S . ... canada contact number..., P.O.G.O. G.A.M.E.S . ... contact number... canada P.O.G.O. G.A.M.E.S . ... service....... toll free number..., P.O.G.O. G.A.M.E.S . ... customer care.. P.O.G.O. G.A.M.E.S . ***((((1 . 844 . 4 . 46. 44 . 6 0 ........ )))..P.O.G.O. G.A.M.E.S . customer support phone number usa https://www.facebook.com/P.O.G.O. G.A.M.E.S . -Customer-Care- Helpline-1-844 -446 -446 0 -17414 19149384 992/ P.O.G.O. G.A.M.E.S . ***((((1 . 844 . 4 . 46. 44 . 6 0 ........ )))..P.O.G.O. G.A.M.E.S . customer support phone number usa P.O.G.O. G.A.M.E.S . ***((((1 . 844 . 4 . 46. 44 . 6 0 ........ )))..P.O.G.O. G.A.M.E.S . customer support phone number usa P.O.G.O. G.A.M.E.S . ... .... ..customer.. service......... Phon..e number..... USA .... ..customer ..support.. toll ..free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. support C@!!-???++1 844 444 444 0 )))P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA -CANADA C@!!-???++1 844 444 444 0 )))dial)))) P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA $CANADA USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.S . ... .. customer service....... Phone....... number... USA .. customer support toll free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer number... for P.O.G.O. G.A.M.E.S . ... P.O.G.O. G.A.M.E.S . ... .. tech support number..., P.O.G.O. G.A.M.E.S . ... ..s phone....... number..., phone....... number... for P.O.G.O. G.A.M.E.S . ... ..s P.O.G.O. G.A.M.E.S . ... .. customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... customer support telephone....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer service....... phone....... number..., P.O.G.O. G.A.M.E.S . ... .. helpline phone....... number..., P.O.G.O. G.A.M.E.S . ... support number... usa P.O.G.O. G.A.M.E.S . ... 844 number..., P.O.G.O. G.A.M.E.S . ... customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... .. technical support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s customer service....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer care.. number..., P.O.G.O. G.A.M.E.S . ... ..s contact number... USA~ P.O.G.O. G.A.M.E.S . ... .. +1844 444 444 0 customer care.. phone....... number... P.O.G.O. G.A.M.E.S . ... .. customer care.. +1844 444 444 0 @ toll free number... usa P.O.G.O. G.A.M.E.S . ... support no? P.O.G.O. G.A.M.E.S . ... .. service....... 1-844 -446 -446 0 center number..., P.O.G.O. G.A.M.E.S . ... customer service....... number... usa, https://www.youtube.com/watch?v=rTuGtdQCTTc https://www.youtube.com/watch?v=0HuwWXjuZR0 https://www.youtube.com/watch?v=8NClb4 8gmY8 https://www.youtube.com/watch?v=GhQTM3I4Qlc https://www.youtube.com/watch?v=a1Y5YhgvEHM https://www.youtube.com/watch?v=8NClb4 8gmY8 https://www.youtube.com/watch?v=GhQTM3I4QlcP.O.G.O. G.A.M.E.S . ... telephone....... number..., P.O.G.O. G.A.M.E.S . ... .. help number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... service....... number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... telephone....... number..., P.O.G.O. G.A.M.E.S . ... help number..., P.O.G.O. G.A.M.E.S . ... helpline number..., P.O.G.O. G.A.M.E.S . ... .. tech support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s service....... center number..., P.O.G.O. G.A.M.E.S . ... customer care.. number..., P.O.G.O. G.A.M.E.S . ... support Canada phone....... number... P.O.G.O. G.A.M.E.S . ... canada support number..., P.O.G.O. G.A.M.E.S . ... phone....... number... canada, P.O.G.O. G.A.M.E.S . ... canada phone....... number... P.O.G.O. G.A.M.E.S . ... service....... center contact number..., P.O.G.O. G.A.M.E.S . ... canada contact number..., P.O.G.O. G.A.M.E.S . ... contact number... canada P.O.G.O. G.A.M.E.S . ... service....... toll free number..., P.O.G.O. G.A.M.E.S . ... customer care..P.O.G.O. G.A.M.E.S . ... .... ..customer.. service......... Phon..e number..... USA .... ..customer ..support.. toll ..free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. support C@!!-???++1 844 444 444 0 )))P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA -CANADA C@!!-???++1 844 444 444 0 )))dial)))) P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA $CANADA USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.S . ... .. customer service....... Phone....... number... USA .. customer support toll free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer number... for P.O.G.O. G.A.M.E.S . ... P.O.G.O. G.A.M.E.S . ... .. tech support number..., P.O.G.O. G.A.M.E.S . ... ..s phone....... number..., phone....... number... for P.O.G.O. G.A.M.E.S . ... ..s P.O.G.O. G.A.M.E.S . ... .. customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... customer support telephone....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer service....... phone....... number..., P.O.G.O. G.A.M.E.S . ... .. helpline phone....... number..., P.O.G.O. G.A.M.E.S . ... support number... usa P.O.G.O. G.A.M.E.S . ... 844 number..., P.O.G.O. G.A.M.E.S . ... customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... .. technical support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s customer service....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer care.. number..., P.O.G.O. G.A.M.E.S . ... ..s contact number... USA~ P.O.G.O. G.A.M.E.S . ... .. +1844 444 444 0 customer care.. phone....... number... P.O.G.O. G.A.M.E.S . ... .. customer care.. +1844 444 444 0 @ toll free number... usa P.O.G.O. G.A.M.E.S . ... support no? P.O.G.O. G.A.M.E.S . ... .. service....... 1-844 -446 -446 0 center number..., P.O.G.O. G.A.M.E.S . ... customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... telephone....... number..., P.O.G.O. G.A.M.E.S . ... .. help number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... service....... number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... telephone....... number..., P.O.G.O. G.A.M.E.S . ... help number..., P.O.G.O. G.A.M.E.S . ... helpline number..., P.O.G.O. G.A.M.E.S . ... .. tech support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s service....... center number..., P.O.G.O. G.A.M.E.S . ... customer care.. number..., P.O.G.O. G.A.M.E.S . ... support Canada phone....... number... P.O.G.O. G.A.M.E.S . ... canada support number..., P.O.G.O. G.A.M.E.S . ... phone....... number... canada, P.O.G.O. G.A.M.E.S . ... canada phone....... number... P.O.G.O. G.A.M.E.S . ... service....... center contact number..., P.O.G.O. G.A.M.E.S . ... canada contact number..., P.O.G.O. G.A.M.E.S . ... contact number... canada P.O.G.O. G.A.M.E.S . ... service....... toll free number..., P.O.G.O. G.A.M.E.S . ... customer care..P.O.G.O. G.A.M.E.S . ... .... ..customer.. service......... Phon..e number..... USA .... ..customer ..support.. toll ..free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. support C@!!-???++1 844 444 444 0 )))P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA -CANADA C@!!-???++1 844 444 444 0 )))dial)))) P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA $CANADA USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.S . ... .. customer service....... Phone....... number... USA .. customer support toll free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer number... for P.O.G.O. G.A.M.E.S . ... P.O.G.O. G.A.M.E.S . ... .. tech support number..., P.O.G.O. G.A.M.E.S . ... ..s phone....... number..., phone....... number... for P.O.G.O. G.A.M.E.S . ... ..s P.O.G.O. G.A.M.E.S . ... .. customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... customer support telephone....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer service....... phone....... number..., P.O.G.O. G.A.M.E.S . ... .. helpline phone....... number..., P.O.G.O. G.A.M.E.S . ... support number... usa P.O.G.O. G.A.M.E.S . ... 844 number..., P.O.G.O. G.A.M.E.S . ... customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... .. technical support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s customer service....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer care.. number..., P.O.G.O. G.A.M.E.S . ... ..s contact number... USA~ P.O.G.O. G.A.M.E.S . ... .. +1844 444 444 0 customer care.. phone....... number... P.O.G.O. G.A.M.E.S . ... .. customer care.. +1844 444 444 0 @ toll free number... usa P.O.G.O. G.A.M.E.S . ... support no? P.O.G.O. G.A.M.E.S . ... .. service....... 1-844 -446 -446 0 center number..., P.O.G.O. G.A.M.E.S . ... customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... telephone....... number..., P.O.G.O. G.A.M.E.S . ... .. help number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... service....... number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... telephone....... number..., P.O.G.O. G.A.M.E.S . ... help number..., P.O.G.O. G.A.M.E.S . ... helpline number..., P.O.G.O. G.A.M.E.S . ... .. tech support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s service....... center number..., P.O.G.O. G.A.M.E.S . ... customer care.. number..., P.O.G.O. G.A.M.E.S . ... support Canada phone....... number... P.O.G.O. G.A.M.E.S . ... canada support number..., P.O.G.O. G.A.M.E.S . ... phone....... number... canada, P.O.G.O. G.A.M.E.S . ... canada phone....... number... P.O.G.O. G.A.M.E.S . ... service....... center contact number..., P.O.G.O. G.A.M.E.S . ... canada contact number..., P.O.G.O. G.A.M.E.S . ... contact number... canada P.O.G.O. G.A.M.E.S . ... service....... toll free number..., P.O.G.O. G.A.M.E.S . ... customer care.. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:50:13 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:50:13 -0000 Subject: [GHC] #11898: jaldi se call 1844 446 4.460 POGO CLUB REFUND Cus tomer Care Phone Num ber Message-ID: <044.af8bdb784c4a11824d923320ec95559b@haskell.org> #11898: jaldi se call 1844 446 4.460 POGO CLUB REFUND Cus tomer Care Phone Num ber -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- jaldi se call 1844 446 4.460 POGO CLUB REFUND Cus tomer Care Phone Num ber ######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number ######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support ######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support pogo support number, pogo support helpline number, pogo support toll free, pogo support, pogo technical support number, pogo technical support Phone number, pogo support Online Help, POGO GAMES support toll free number, pogo Tech Support Phone Number, pogo helpline phone number, POGO GAMES customer support number, Pogo helpline phone number, pogo support ,Pogo support Online Help, Pogo Tech Support Phone Number, Pogo technical support number, Pogo technical support Phone number, POGO GAMES Customer Support Call Us : 1-844-446-4460 Now To Get Support, Instant Fix. 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 POGO GAMES s phone number 1-844-446-4460 POGO GAMES phone number 1-844-446-4460 POGO GAMES s online how to contact 1-844-446-4460 pogo by phone Phone number for 1-844-446-4460 pogo 1-844-446-4460 pogo technical support number 1-844-446-4460 POGO GAMES s support phone number 1-844-446-4460 pogo contact phone number1-844-446-4460 POGO GAMES s contact number 1-844-446-4460 POGO GAMES helpline call 1-844-446-4460 pogo 1-844-446-4460 POGO GAMES s customer service phone number phone number for 1-844-446-4460 POGO GAMES s 1-844-446-4460 POGO GAMES s customer service 1-844-446-4460 pogo help center 1-844-446-4460 problems with 1-844-446-4460 pogo 1-844-446-4460 how do i contact 1-844-446-4460 pogo 1-844-446-4460 how to contact 1-844-446-4460 pogo 1-844-446-4460 POGO GAMES s contact number 1-844-446-4460 pogo not working 1-844-446-4460 pogo.com customer service phone number 1-844-446-4460 phone number for pogo.com 1-844-446-4460 pogo.com customer service 1-844-446-4460 pogo support -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:51:30 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:51:30 -0000 Subject: [GHC] #11899: CALL 1844 446 4460 club pogo customer service phone number Message-ID: <044.bd44fc545934a9b6b74bfcb235d34cdc@haskell.org> #11899: CALL 1844 446 4460 club pogo customer service phone number -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- CALL 1844 446 4460 club pogo customer service phone http://upstart.ubuntu.com/wiki/Obama%2B1844 %20446 %204460 %20Turbotax%20Helpdesk%20number,%20helpdesk%20phone%20number. WYNN 1-844 446 -4460 POGO GAME LOGIN ERROR Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number {| class="wikitable" |- ! POGO GAME LOGIN ERROR tech Support Number !! 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Contact Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Contact Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number ?USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 POGO GAME LOGIN ERROR Desktop care phone number. Jack fell on 1844 446 4460 POGO GAME LOGIN ERROR care number and broke his crown and jill came on 1844 446 4460 POGO GAME LOGIN ERROR care helpline number. JAck has a teddy bear called 1844 446 4460 POGO GAME LOGIN ERROR care helpline phone number, and jill has a barbie doll named 1844 446 4460 POGO GAME LOGIN ERROR care Helpline. Twiinkle twinkle little star 1844 446 4460 POGO GAME LOGIN ERROR Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 POGO GAME LOGIN ERROR care Helpdesk number. Up above the world of 1844 446 4460 POGO GAME LOGIN ERROR care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 POGO GAME LOGIN ERROR service phone number sat on a 1844 446 4460 POGO GAME LOGIN ERROR service number, Humpty dumpty had a gret fall 1844 446 4460 POGO GAME LOGIN ERROR Desktop service helpline phone number. All the kings horses all the 1844 446 4460 POGO GAME LOGIN ERROR service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 POGO GAME LOGIN ERROR service helpline, Yes sir yes sir three 1844 446 4460 POGO GAME LOGIN ERROR Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 POGO GAME LOGIN ERROR service helpdesk number one for the dame 1844 446 4460 POGO GAME LOGIN ERROR service helpdesk. One for the little boy 1844 446 4460 POGO GAME LOGIN ERROR support phone number who lives down the lane. Johhny johhny 1844 446 4460 POGO GAME LOGIN ERROR support number, Yes papa Eating sugar 1844 446 4460 POGO GAME LOGIN ERROR support ,No papa. telling lies 1844 446 4460 POGO GAME LOGIN ERROR support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 POGO GAME LOGIN ERROR Desktop support helpline number. A lion and a unicorn 1844 446 4460 POGO GAME LOGIN ERROR support helpline were in the jungle 1844 446 4460 POGO GAME LOGIN ERROR support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 POGO GAME LOGIN ERROR support helpdesk number so the unicorn gave birth to my child 1844 446 4460 POGO GAME LOGIN ERROR Desktop support helpdesk. POGO GAME LOGIN ERROR is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . POGO GAME LOGIN ERROR ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into POGO GAME LOGIN ERROR , including remote access capabilities, remote assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that POGO GAME LOGIN ERROR Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked POGO GAME LOGIN ERROR technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit POGO GAME LOGIN ERROR Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit POGO GAME LOGIN ERROR Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit POGO GAME LOGIN ERROR tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for POGO GAME LOGIN ERROR Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit POGO GAME LOGIN ERROR Care phone number 1-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. POGO GAME LOGIN ERROR technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that POGO GAME LOGIN ERROR technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of POGO GAME LOGIN ERROR technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit POGO GAME LOGIN ERROR Technical Support Phone number +1 844 446 4460 on the url & . Intuit POGO GAME LOGIN ERROR Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to POGO GAME LOGIN ERROR , Support phone number 1844 446 4460 , POGO GAME LOGIN ERROR Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit POGO GAME LOGIN ERROR Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit POGO GAME LOGIN ERROR Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best POGO GAME LOGIN ERROR support. This is best toll free number 1844 -446 -4460 .this is technical support number for POGO GAME LOGIN ERROR 24|7.you can call any time for any blem of POGO GAME LOGIN ERROR like POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR data recovery, POGO GAME LOGIN ERROR Desktop enterprises, POGO GAME LOGIN ERROR and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 POGO GAME LOGIN ERROR tech support , POGO GAME LOGIN ERROR Tech Support Phone Number USA , POGO GAME LOGIN ERROR Technical Support phone Number, POGO GAME LOGIN ERROR support phone number , POGO GAME LOGIN ERROR support phone number USA , POGO GAME LOGIN ERROR technical support number USA , POGO GAME LOGIN ERROR tech support telephone number, POGO GAME LOGIN ERROR help phone number, Intuit technical support phone number, POGO GAME LOGIN ERROR support number , Quickbook tech support phone number, Intuit POGO GAME LOGIN ERROR Desktop tech support phone number, POGO GAME LOGIN ERROR enterprise support phone number, POGO GAME LOGIN ERROR component repair tool for windows xp|vista|7 , POGO GAME LOGIN ERROR Desktop not connecting to internet. POGO GAME LOGIN ERROR unsupported system configuration, Dealing some random error message installing POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR Data export or import issues, POGO GAME LOGIN ERROR failed to make an internet connection, POGO GAME LOGIN ERROR multi user mode not syncing, POGO GAME LOGIN ERROR not opening in multi-user mode, POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 .POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 . Showing error while updating company data file in POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But POGO GAME LOGIN ERROR Desktop is also a fairly complex application. This complexity means that POGO GAME LOGIN ERROR is ne to having blems like how to restore POGO GAME LOGIN ERROR auto data recovery, POGO GAME LOGIN ERROR Connection blem and connection configuration, POGO GAME LOGIN ERROR Installation Support Phone Number, POGO GAME LOGIN ERROR Company File Not Opening in Multi User Mode, POGO GAME LOGIN ERROR Keeps Disconnecting From Server, POGO GAME LOGIN ERROR Error Message Server Busy, POGO GAME LOGIN ERROR Tech Support Phone Number, POGO GAME LOGIN ERROR Data File Needs To Be Updated. POGO GAME LOGIN ERROR Data File Recovery Extention, POGO GAME LOGIN ERROR connection has been lost, POGO GAME LOGIN ERROR Desktop Installation Error 1722,1334,15215&1904, POGO GAME LOGIN ERROR Desktop error code 6000,3371, POGO GAME LOGIN ERROR error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with POGO GAME LOGIN ERROR , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our POGO GAME LOGIN ERROR level 5 technicians are available for fix any queries all ducts of POGO GAME LOGIN ERROR . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of POGO GAME LOGIN ERROR Desktop . This is our best online customer care service. Contact us for resolve your any POGO GAME LOGIN ERROR blems. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:53:50 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:53:50 -0000 Subject: [GHC] #11900: HELP@@ 1 844 446 4460 phone number for pogo customer service Message-ID: <044.02a028d421b5d841ad032e9cde34f594@haskell.org> #11900: HELP@@ 1 844 446 4460 phone number for pogo customer service -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- HELP@@ 1 844 446 4460 phone number for pogo customer serviceUA-75287313-1 WYNN 1-844 446 -4460 wynn POGO GAMES CONTACT Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number UA-75287313-1 {| class="wikitable" |- ! wynn POGO GAMES CONTACT tech Support Number !! 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number ?USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 wynn POGO GAMES CONTACT Desktop care phone number. Jack fell on 1844 446 4460 wynn POGO GAMES CONTACT care number and broke his crown and jill came on 1844 446 4460 wynn POGO GAMES CONTACT care helpline number. JAck has a teddy bear called 1844 446 4460 wynn POGO GAMES CONTACT care helpline phone number, and jill has a barbie doll named 1844 446 4460 wynn POGO GAMES CONTACT care Helpline. Twiinkle twinkle little star 1844 446 4460 wynn POGO GAMES CONTACT Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk number. Up above the world of 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 wynn POGO GAMES CONTACT service phone number sat on a 1844 446 4460 wynn POGO GAMES CONTACT service number, Humpty dumpty had a gret fall 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpline phone number. All the kings horses all the 1844 446 4460 wynn POGO GAMES CONTACT service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 wynn POGO GAMES CONTACT service helpline, Yes sir yes sir three 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk number one for the dame 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk. One for the little boy 1844 446 4460 wynn POGO GAMES CONTACT support phone number who lives down the lane. Johhny johhny 1844 446 4460 wynn POGO GAMES CONTACT support number, Yes papa Eating sugar 1844 446 4460 wynn POGO GAMES CONTACT support ,No papa. telling lies 1844 446 4460 wynn POGO GAMES CONTACT support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpline number. A lion and a unicorn 1844 446 4460 wynn POGO GAMES CONTACT support helpline were in the jungle 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk number so the unicorn gave birth to my child 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpdesk. wynn POGO GAMES CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . wynn POGO GAMES CONTACT ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of wynn POGO GAMES CONTACT for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into wynn POGO GAMES CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that wynn POGO GAMES CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked wynn POGO GAMES CONTACT technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit wynn POGO GAMES CONTACT Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit wynn POGO GAMES CONTACT Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit wynn POGO GAMES CONTACT tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for wynn POGO GAMES CONTACT Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit wynn POGO GAMES CONTACT Care phone number UA-75287313-11-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. wynn POGO GAMES CONTACT technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that wynn POGO GAMES CONTACT technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of wynn POGO GAMES CONTACT technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 on the url & . Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to wynn POGO GAMES CONTACT , Payroll Support phone number 1844 446 4460 , POGO GAMES CONTACT Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit wynn POGO GAMES CONTACT Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit wynn POGO GAMES CONTACT Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best wynn POGO GAMES CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for wynn POGO GAMES CONTACT 24|7.you can call any time for any blem of wynn POGO GAMES CONTACT like wynn POGO GAMES CONTACT payroll, wynn POGO GAMES CONTACT data recovery, wynn POGO GAMES CONTACT Desktop enterprises, wynn POGO GAMES CONTACT and Quikbooks . Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 wynn POGO GAMES CONTACT tech support , wynn POGO GAMES CONTACT Tech Support Phone Number USA , wynn POGO GAMES CONTACT Technical Support phone Number, wynn POGO GAMES CONTACT support phone number , wynn POGO GAMES CONTACT support phone number USA , wynn POGO GAMES CONTACT technical support number USA , wynn POGO GAMES CONTACT tech support telephone number, wynn POGO GAMES CONTACT help phone number, Intuit technical support phone number, wynn POGO GAMES CONTACT support number , Quickbook tech support phone number, Intuit wynn POGO GAMES CONTACT Desktop tech support phone number, wynn POGO GAMES CONTACT enterprise support phone number, wynn POGO GAMES CONTACT component repair tool for windows xp|vista|7 , wynn POGO GAMES CONTACT Desktop not connecting to internet. wynn POGO GAMES CONTACT unsupported system configuration, Dealing some random error message installing wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Data export or import issues, wynn POGO GAMES CONTACT failed to make an internet connection, wynn POGO GAMES CONTACT multi user mode not syncing, wynn POGO GAMES CONTACT not opening in multi-user mode, wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 .wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 . Showing error while updating company data file in wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But wynn POGO GAMES CONTACT Desktop is also a fairly complex application. This complexity means that wynn POGO GAMES CONTACT is ne to having blems like how to restore wynn POGO GAMES CONTACT auto data recovery, wynn POGO GAMES CONTACT Connection blem and connection configuration, wynn POGO GAMES CONTACT Installation Support Phone Number, wynn POGO GAMES CONTACT Company File Not Opening in Multi User Mode, wynn POGO GAMES CONTACT Keeps Disconnecting From Server, wynn POGO GAMES CONTACT Error Message Server Busy, wynn POGO GAMES CONTACT Payroll Tech Support Phone Number, wynn POGO GAMES CONTACT Data File Needs To Be Updated. wynn POGO GAMES CONTACT Data File Recovery Extention, wynn POGO GAMES CONTACT UA-75287313-1connection has been lost, wynn POGO GAMES CONTACT Desktop Installation Error 1722,1334,15215&1904, wynn POGO GAMES CONTACT Desktop error code 6000,3371, wynn POGO GAMES CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with wynn POGO GAMES CONTACT , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our wynn POGO GAMES CONTACT level 5 technicians are available for fix any queries all ducts of wynn POGO GAMES CONTACT . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of wynn POGO GAMES CONTACT Desktop . This is our best customer care service. Contact us for resolve your any wynn POGO GAMES CONTACT blems. #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington-Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #New York #Los Angeles #Chicago #Houston #Philadelphia #Phoenix #San Diego #San Antonio #Dallas #Detroit #San Jose #Indianapolis #Jacksonville #San Francisco #Columbus #Austin #Memphis #Baltimore #Charlotte #Fort Worth #Boston #Milwaukee #El Paso #Washington #Nashville-Davidson #Seattle #Denver #Las Vegas #Portland #Oklahoma City #Tucson #Albuquerque #Atlanta #Long Beach #Kansas City #Fresno #New Orleans #Cleveland #Sacramento #Mesa #Virginia Beach #Omaha #Colorado Springs #Oakland #Miami #Tulsa #Minneapolis #Honolulu #Arlington #Wichita #St. Louis #Raleigh #Santa Ana #Cincinnati #Anaheim #Tampa #Toledo #Pittsburgh #Aurora #Bakersfield #Riverside #Stockton #Corpus Christi #Lexington-Fayette #Buffalo #St. Paul #Anchorage #Newark #Plano #Fort Wayne #St. Petersburg #Glendale #Lincoln #Norfolk #Jersey City #Greensboro #Chandler #Birmingham #Henderson #Scottsdale #North Hempstead #Madison #Hialeah #Baton Rouge #Chesapeake #Orlando #Lubbock #Garland #Akron #Rochester #Chula Vista #Reno #Laredo #Durham #Modesto #Huntington #Montgomery #Boise #Arlington #San Bernardino #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:55:00 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:55:00 -0000 Subject: [GHC] #11901: DOUBLE CHECK 1 844 446 4460 phone number for pogo customer support Message-ID: <044.28cfa31cb385d013ee52a784235e07f7@haskell.org> #11901: DOUBLE CHECK 1 844 446 4460 phone number for pogo customer support -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- DOUBLE CHECK 1 844 446 4460 phone number for pogo customer support {| class="wikitable" |- ! MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number !! 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number ?USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number USA || 1***844 ***446 ***4460 |} Jack and Jill went up the hill to call 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care phone number. Jack fell on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care number and broke his crown and jill came on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline number. JAck has a teddy bear called 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline phone number, and jill has a barbie doll named 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpline. Twiinkle twinkle little star 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk phone number how i wonder what you are 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk number. Up above the world of 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk, like a diamond in the sky. Humpty dumpty 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service phone number sat on a 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service number, Humpty dumpty had a gret fall 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline phone number. All the kings horses all the 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline number could not put humpty togather again. Ba ba black sheep have u 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline, Yes sir yes sir three 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk phone number bags full. One for my master 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk number one for the dame 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk. One for the little boy 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support phone number who lives down the lane. Johhny johhny 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support number, Yes papa Eating sugar 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support ,No papa. telling lies 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline phone number no papa faad thoda ha ha ha 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline number. A lion and a unicorn 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline were in the jungle 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk phone number, the lion beat the unicorn balck and brown 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk number so the unicorn gave birth to my child 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1***844 ***446 ***4460 . MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT products are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1***844 ***446 ***4460 and Tom Proulx in Mountain View, California, USA 1***844 ***446 ***4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and improved e-mail functionality through Microsoft Outlook and Outlook Express @1***844 ***446 ***4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1***844 ***446 ***4460 . Hi All, Facebook users have liked MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number 1***844 ***446 ***4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Intuit Technical Support Phone number +1***844 ***446 ***4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1***844 ***446 ***4460 is the best. Apple also has a handle for Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 . There are amazing videos of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 on youtube on their site www.youtube.com they say it is great. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline phone number 1***844 ***446 ***4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline number 1***844 ***446 ***4460 Proadvisor and Pro Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline 1***844 ***446 ***4460 and using their products. Youtube videos have been telling us the story of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 on the url & Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 has been the pioneer in the field of providing service in terms of issues related to MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , Payroll Support phone number 1***844 ***446 ***4460 , POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 and Proadvisor Tech support phone number 1***844 ***446 ***4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1***844 ***446 ***4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1***844 ***446 ***4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1***844 ***446 ***4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been promoting Tech support phone number 1***844 ***446 ***4460 stories through their platform. Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support @ 1***844 ***446 ***4460 is also one of the places that talks about Tech support phone number 1***844 ***446 ***4460 . You can pay for Tech support phone number 1***844 ***446 ***4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1***844 ***446 ***4460 as number1. Stories of Tech support phone number 1***844 ***446 ***4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1***844 ***446 ***4460 on Go or Page on craiglist.org you will know Tech support phone number 1***844 ***446 ***4460 is special. They provide best MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT 24|7.you can call any time for any problem of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT like MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprises, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support telephone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help phone number, Intuit technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number , Quickbook tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprise support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT component repair tool for windows xp|vista|7 , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not connecting to internet. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT unsupported system configuration, Dealing some random error message installing MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data export or import issues, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT failed to make an internet connection, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT multi user mode not syncing, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not opening in multi-user mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 .MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 . Showing error while updating company data file in MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is also a fairly complex application. This complexity means that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is prone to having problems like how to restore MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT auto data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Connection Problem and connection configuration, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Company File Not Opening in Multi User Mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Keeps Disconnecting From Server, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Message Server Busy, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Payroll Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Needs To Be Updated. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Recovery Extention, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT connection has been lost, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Error 1722,1334,15215&1904, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code 6000,3371, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , the consequences can be pretty dire. Luckily, many common problems are easy to fix -- once you know about them. Our MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT level 5 technicians are available for fix any queries all products of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . We provide best service of any problems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your problems of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . This is our best online customer care service. Contact us for resolve your any MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT problems. 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. Sales: 844 .446 .4040. Support: 844 -446 -4040. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone Number: 844 -446 -4040. We'd suggest trying the Support site first because it's full of usefull information: #1***844 ***446 ***4460 Intuit Customer Service Number #1***844 ***446 ***4460 Intuit Customer Care Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 Intuit Customer Support Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number #1***844 ***446 ***4460 Intuit Customer Service Phone Number #1***844 ***446 ***4460 Intuit Customer Care Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 Intuit Customer Support Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number #1***844 ***446 ***4460 Call Intuit #1***844 ***446 ***4460 Call Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact Intuit #1***844 ***446 ***4460 Contact Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Call MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Alabama,Alaska,Arizona,Arkansas,California ,USA ,Canada, New York, Los Angeles, Chicago, Houston, Philadelphia, Phoenix, San Antonio, San Diego, Dallas, San Jose, Austin, Jacksonville, San Francisco, Indianapolis, Columbus, Fort Worth, Charlotte, Detroit, El Paso, Seattle, Denver, Washington, Memphis, Boston, Nashville, Baltimore, Oklahoma City, Portland, Las Vegas, Louisville, Milwaukee, Albuquerque, Tucson, Fresno, Sacramento, Long Beach, Kansas City, Mesa, Atlanta, Virginia Beach, Omaha, Colorado Springs, Raleigh, Miami, Oakland, Minneapolis, Tulsa, Cleveland, Wichita, New Orleans, Arlington, Bakersfield, Tampa, Aurora, Honolulu, Anaheim, Santa Ana, Corpus Christi, Riverside, St. Louis, Lexington, Pittsburgh, Stockton, Anchorage, Cincinnati, Saint Paul, Greensboro, Toledo, Newark, Plano, Henderson, Lincoln, Orlando, Jersey City, Chula Vista, Buffalo, Fort Wayne, Chandler and St. Petersburg, t is very popular toll free number which provide by MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number. Call, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Help Desk Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number, #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington- Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:57:59 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:57:59 -0000 Subject: [GHC] #11902: WANT HELP CALL 1 844 446 4460 pogo customer service phone number CALL CALL @@@@@@@@@@@ Message-ID: <044.ffcaa2b78b0ba1a4b9faa825d7b872d6@haskell.org> #11902: WANT HELP CALL 1 844 446 4460 pogo customer service phone number CALL CALL @@@@@@@@@@@ -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- WANT HELP CALL 1 844 446 4460 pogo customer service phone number CALL CALL @@@@@@@@@@@UA-75287313-1 WYNN 1-844 446 -4460 wynn POGO GAMES CONTACT Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number UA-75287313-1 {| class="wikitable" |- ! wynn POGO GAMES CONTACT tech Support Number !! 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number ?USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 wynn POGO GAMES CONTACT Desktop care phone number. Jack fell on 1844 446 4460 wynn POGO GAMES CONTACT care number and broke his crown and jill came on 1844 446 4460 wynn POGO GAMES CONTACT care helpline number. JAck has a teddy bear called 1844 446 4460 wynn POGO GAMES CONTACT care helpline phone number, and jill has a barbie doll named 1844 446 4460 wynn POGO GAMES CONTACT care Helpline. Twiinkle twinkle little star 1844 446 4460 wynn POGO GAMES CONTACT Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk number. Up above the world of 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 wynn POGO GAMES CONTACT service phone number sat on a 1844 446 4460 wynn POGO GAMES CONTACT service number, Humpty dumpty had a gret fall 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpline phone number. All the kings horses all the 1844 446 4460 wynn POGO GAMES CONTACT service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 wynn POGO GAMES CONTACT service helpline, Yes sir yes sir three 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk number one for the dame 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk. One for the little boy 1844 446 4460 wynn POGO GAMES CONTACT support phone number who lives down the lane. Johhny johhny 1844 446 4460 wynn POGO GAMES CONTACT support number, Yes papa Eating sugar 1844 446 4460 wynn POGO GAMES CONTACT support ,No papa. telling lies 1844 446 4460 wynn POGO GAMES CONTACT support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpline number. A lion and a unicorn 1844 446 4460 wynn POGO GAMES CONTACT support helpline were in the jungle 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk number so the unicorn gave birth to my child 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpdesk. wynn POGO GAMES CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . wynn POGO GAMES CONTACT ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of wynn POGO GAMES CONTACT for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into wynn POGO GAMES CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that wynn POGO GAMES CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked wynn POGO GAMES CONTACT technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit wynn POGO GAMES CONTACT Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit wynn POGO GAMES CONTACT Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit wynn POGO GAMES CONTACT tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for wynn POGO GAMES CONTACT Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit wynn POGO GAMES CONTACT Care phone number UA-75287313-11-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. wynn POGO GAMES CONTACT technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that wynn POGO GAMES CONTACT technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of wynn POGO GAMES CONTACT technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 on the url & . Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to wynn POGO GAMES CONTACT , Payroll Support phone number 1844 446 4460 , POGO GAMES CONTACT Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit wynn POGO GAMES CONTACT Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit wynn POGO GAMES CONTACT Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best wynn POGO GAMES CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for wynn POGO GAMES CONTACT 24|7.you can call any time for any blem of wynn POGO GAMES CONTACT like wynn POGO GAMES CONTACT payroll, wynn POGO GAMES CONTACT data recovery, wynn POGO GAMES CONTACT Desktop enterprises, wynn POGO GAMES CONTACT and Quikbooks . Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 wynn POGO GAMES CONTACT tech support , wynn POGO GAMES CONTACT Tech Support Phone Number USA , wynn POGO GAMES CONTACT Technical Support phone Number, wynn POGO GAMES CONTACT support phone number , wynn POGO GAMES CONTACT support phone number USA , wynn POGO GAMES CONTACT technical support number USA , wynn POGO GAMES CONTACT tech support telephone number, wynn POGO GAMES CONTACT help phone number, Intuit technical support phone number, wynn POGO GAMES CONTACT support number , Quickbook tech support phone number, Intuit wynn POGO GAMES CONTACT Desktop tech support phone number, wynn POGO GAMES CONTACT enterprise support phone number, wynn POGO GAMES CONTACT component repair tool for windows xp|vista|7 , wynn POGO GAMES CONTACT Desktop not connecting to internet. wynn POGO GAMES CONTACT unsupported system configuration, Dealing some random error message installing wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Data export or import issues, wynn POGO GAMES CONTACT failed to make an internet connection, wynn POGO GAMES CONTACT multi user mode not syncing, wynn POGO GAMES CONTACT not opening in multi-user mode, wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 .wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 . Showing error while updating company data file in wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But wynn POGO GAMES CONTACT Desktop is also a fairly complex application. This complexity means that wynn POGO GAMES CONTACT is ne to having blems like how to restore wynn POGO GAMES CONTACT auto data recovery, wynn POGO GAMES CONTACT Connection blem and connection configuration, wynn POGO GAMES CONTACT Installation Support Phone Number, wynn POGO GAMES CONTACT Company File Not Opening in Multi User Mode, wynn POGO GAMES CONTACT Keeps Disconnecting From Server, wynn POGO GAMES CONTACT Error Message Server Busy, wynn POGO GAMES CONTACT Payroll Tech Support Phone Number, wynn POGO GAMES CONTACT Data File Needs To Be Updated. wynn POGO GAMES CONTACT Data File Recovery Extention, wynn POGO GAMES CONTACT UA-75287313-1connection has been lost, wynn POGO GAMES CONTACT Desktop Installation Error 1722,1334,15215&1904, wynn POGO GAMES CONTACT Desktop error code 6000,3371, wynn POGO GAMES CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with wynn POGO GAMES CONTACT , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our wynn POGO GAMES CONTACT level 5 technicians are available for fix any queries all ducts of wynn POGO GAMES CONTACT . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of wynn POGO GAMES CONTACT Desktop . This is our best customer care service. Contact us for resolve your any wynn POGO GAMES CONTACT blems. #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington-Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #New York #Los Angeles #Chicago #Houston #Philadelphia #Phoenix #San Diego #San Antonio #Dallas #Detroit #San Jose #Indianapolis #Jacksonville #San Francisco #Columbus #Austin #Memphis #Baltimore #Charlotte #Fort Worth #Boston #Milwaukee #El Paso #Washington #Nashville-Davidson #Seattle #Denver #Las Vegas #Portland #Oklahoma City #Tucson #Albuquerque #Atlanta #Long Beach #Kansas City #Fresno #New Orleans #Cleveland #Sacramento #Mesa #Virginia Beach #Omaha #Colorado Springs #Oakland #Miami #Tulsa #Minneapolis #Honolulu #Arlington #Wichita #St. Louis #Raleigh #Santa Ana #Cincinnati #Anaheim #Tampa #Toledo #Pittsburgh #Aurora #Bakersfield #Riverside #Stockton #Corpus Christi #Lexington-Fayette #Buffalo #St. Paul #Anchorage #Newark #Plano #Fort Wayne #St. Petersburg #Glendale #Lincoln #Norfolk #Jersey City #Greensboro #Chandler #Birmingham #Henderson #Scottsdale #North Hempstead #Madison #Hialeah #Baton Rouge #Chesapeake #Orlando #Lubbock #Garland #Akron #Rochester #Chula Vista #Reno #Laredo #Durham #Modesto #Huntington #Montgomery #Boise #Arlington #San Bernardino #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 15:59:15 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 15:59:15 -0000 Subject: [GHC] #11903: DOREMON 1 844 446 4460 pogo games customer service phone #$%%%^%^^%$@@@@@@@@@@ Message-ID: <044.9be754ecacadca823bb4b9916571bc33@haskell.org> #11903: DOREMON 1 844 446 4460 pogo games customer service phone #$%%%^%^^%$@@@@@@@@@@ -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- DOREMON 1 844 446 4460 pogo games customer service phone #$%%%^%^^%$@@@@@@@@@@ {| class="wikitable" |- ! MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number !! 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number ?USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number USA || 1***844 ***446 ***4460 |} Jack and Jill went up the hill to call 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care phone number. Jack fell on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care number and broke his crown and jill came on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline number. JAck has a teddy bear called 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline phone number, and jill has a barbie doll named 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpline. Twiinkle twinkle little star 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk phone number how i wonder what you are 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk number. Up above the world of 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk, like a diamond in the sky. Humpty dumpty 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service phone number sat on a 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service number, Humpty dumpty had a gret fall 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline phone number. All the kings horses all the 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline number could not put humpty togather again. Ba ba black sheep have u 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline, Yes sir yes sir three 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk phone number bags full. One for my master 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk number one for the dame 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk. One for the little boy 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support phone number who lives down the lane. Johhny johhny 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support number, Yes papa Eating sugar 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support ,No papa. telling lies 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline phone number no papa faad thoda ha ha ha 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline number. A lion and a unicorn 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline were in the jungle 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk phone number, the lion beat the unicorn balck and brown 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk number so the unicorn gave birth to my child 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1***844 ***446 ***4460 . MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT products are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1***844 ***446 ***4460 and Tom Proulx in Mountain View, California, USA 1***844 ***446 ***4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and improved e-mail functionality through Microsoft Outlook and Outlook Express @1***844 ***446 ***4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1***844 ***446 ***4460 . Hi All, Facebook users have liked MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number 1***844 ***446 ***4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Intuit Technical Support Phone number +1***844 ***446 ***4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1***844 ***446 ***4460 is the best. Apple also has a handle for Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 . There are amazing videos of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 on youtube on their site www.youtube.com they say it is great. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline phone number 1***844 ***446 ***4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline number 1***844 ***446 ***4460 Proadvisor and Pro Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline 1***844 ***446 ***4460 and using their products. Youtube videos have been telling us the story of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 on the url & Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 has been the pioneer in the field of providing service in terms of issues related to MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , Payroll Support phone number 1***844 ***446 ***4460 , POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 and Proadvisor Tech support phone number 1***844 ***446 ***4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1***844 ***446 ***4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1***844 ***446 ***4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1***844 ***446 ***4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been promoting Tech support phone number 1***844 ***446 ***4460 stories through their platform. Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support @ 1***844 ***446 ***4460 is also one of the places that talks about Tech support phone number 1***844 ***446 ***4460 . You can pay for Tech support phone number 1***844 ***446 ***4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1***844 ***446 ***4460 as number1. Stories of Tech support phone number 1***844 ***446 ***4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1***844 ***446 ***4460 on Go or Page on craiglist.org you will know Tech support phone number 1***844 ***446 ***4460 is special. They provide best MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT 24|7.you can call any time for any problem of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT like MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprises, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support telephone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help phone number, Intuit technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number , Quickbook tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprise support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT component repair tool for windows xp|vista|7 , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not connecting to internet. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT unsupported system configuration, Dealing some random error message installing MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data export or import issues, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT failed to make an internet connection, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT multi user mode not syncing, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not opening in multi-user mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 .MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 . Showing error while updating company data file in MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is also a fairly complex application. This complexity means that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is prone to having problems like how to restore MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT auto data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Connection Problem and connection configuration, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Company File Not Opening in Multi User Mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Keeps Disconnecting From Server, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Message Server Busy, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Payroll Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Needs To Be Updated. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Recovery Extention, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT connection has been lost, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Error 1722,1334,15215&1904, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code 6000,3371, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , the consequences can be pretty dire. Luckily, many common problems are easy to fix -- once you know about them. Our MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT level 5 technicians are available for fix any queries all products of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . We provide best service of any problems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your problems of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . This is our best online customer care service. Contact us for resolve your any MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT problems. 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. Sales: 844 .446 .4040. Support: 844 -446 -4040. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone Number: 844 -446 -4040. We'd suggest trying the Support site first because it's full of usefull information: #1***844 ***446 ***4460 Intuit Customer Service Number #1***844 ***446 ***4460 Intuit Customer Care Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 Intuit Customer Support Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number #1***844 ***446 ***4460 Intuit Customer Service Phone Number #1***844 ***446 ***4460 Intuit Customer Care Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 Intuit Customer Support Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number #1***844 ***446 ***4460 Call Intuit #1***844 ***446 ***4460 Call Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact Intuit #1***844 ***446 ***4460 Contact Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Call MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Alabama,Alaska,Arizona,Arkansas,California ,USA ,Canada, New York, Los Angeles, Chicago, Houston, Philadelphia, Phoenix, San Antonio, San Diego, Dallas, San Jose, Austin, Jacksonville, San Francisco, Indianapolis, Columbus, Fort Worth, Charlotte, Detroit, El Paso, Seattle, Denver, Washington, Memphis, Boston, Nashville, Baltimore, Oklahoma City, Portland, Las Vegas, Louisville, Milwaukee, Albuquerque, Tucson, Fresno, Sacramento, Long Beach, Kansas City, Mesa, Atlanta, Virginia Beach, Omaha, Colorado Springs, Raleigh, Miami, Oakland, Minneapolis, Tulsa, Cleveland, Wichita, New Orleans, Arlington, Bakersfield, Tampa, Aurora, Honolulu, Anaheim, Santa Ana, Corpus Christi, Riverside, St. Louis, Lexington, Pittsburgh, Stockton, Anchorage, Cincinnati, Saint Paul, Greensboro, Toledo, Newark, Plano, Henderson, Lincoln, Orlando, Jersey City, Chula Vista, Buffalo, Fort Wayne, Chandler and St. Petersburg, t is very popular toll free number which provide by MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number. Call, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Help Desk Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number, #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington- Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:02:30 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:02:30 -0000 Subject: [GHC] #11904: EA GAMES 1 844 446 4460 pogo help phone number @@@@@@@@@ Message-ID: <044.7aa51a377ddb327461474a5eec81d9f8@haskell.org> #11904: EA GAMES 1 844 446 4460 pogo help phone number @@@@@@@@@ -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- EA GAMES 1 844 446 4460 pogo help phone number @@@@@@@@UA-75287313-1 WYNN 1-844 446 -4460 wynn POGO GAMES CONTACT Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number UA-75287313-1 {| class="wikitable" |- ! wynn POGO GAMES CONTACT tech Support Number !! 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number ?USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 wynn POGO GAMES CONTACT Desktop care phone number. Jack fell on 1844 446 4460 wynn POGO GAMES CONTACT care number and broke his crown and jill came on 1844 446 4460 wynn POGO GAMES CONTACT care helpline number. JAck has a teddy bear called 1844 446 4460 wynn POGO GAMES CONTACT care helpline phone number, and jill has a barbie doll named 1844 446 4460 wynn POGO GAMES CONTACT care Helpline. Twiinkle twinkle little star 1844 446 4460 wynn POGO GAMES CONTACT Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk number. Up above the world of 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 wynn POGO GAMES CONTACT service phone number sat on a 1844 446 4460 wynn POGO GAMES CONTACT service number, Humpty dumpty had a gret fall 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpline phone number. All the kings horses all the 1844 446 4460 wynn POGO GAMES CONTACT service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 wynn POGO GAMES CONTACT service helpline, Yes sir yes sir three 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk number one for the dame 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk. One for the little boy 1844 446 4460 wynn POGO GAMES CONTACT support phone number who lives down the lane. Johhny johhny 1844 446 4460 wynn POGO GAMES CONTACT support number, Yes papa Eating sugar 1844 446 4460 wynn POGO GAMES CONTACT support ,No papa. telling lies 1844 446 4460 wynn POGO GAMES CONTACT support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpline number. A lion and a unicorn 1844 446 4460 wynn POGO GAMES CONTACT support helpline were in the jungle 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk number so the unicorn gave birth to my child 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpdesk. wynn POGO GAMES CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . wynn POGO GAMES CONTACT ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of wynn POGO GAMES CONTACT for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into wynn POGO GAMES CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that wynn POGO GAMES CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked wynn POGO GAMES CONTACT technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit wynn POGO GAMES CONTACT Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit wynn POGO GAMES CONTACT Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit wynn POGO GAMES CONTACT tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for wynn POGO GAMES CONTACT Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit wynn POGO GAMES CONTACT Care phone number UA-75287313-11-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. wynn POGO GAMES CONTACT technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that wynn POGO GAMES CONTACT technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of wynn POGO GAMES CONTACT technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 on the url & . Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to wynn POGO GAMES CONTACT , Payroll Support phone number 1844 446 4460 , POGO GAMES CONTACT Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit wynn POGO GAMES CONTACT Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit wynn POGO GAMES CONTACT Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best wynn POGO GAMES CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for wynn POGO GAMES CONTACT 24|7.you can call any time for any blem of wynn POGO GAMES CONTACT like wynn POGO GAMES CONTACT payroll, wynn POGO GAMES CONTACT data recovery, wynn POGO GAMES CONTACT Desktop enterprises, wynn POGO GAMES CONTACT and Quikbooks . Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 wynn POGO GAMES CONTACT tech support , wynn POGO GAMES CONTACT Tech Support Phone Number USA , wynn POGO GAMES CONTACT Technical Support phone Number, wynn POGO GAMES CONTACT support phone number , wynn POGO GAMES CONTACT support phone number USA , wynn POGO GAMES CONTACT technical support number USA , wynn POGO GAMES CONTACT tech support telephone number, wynn POGO GAMES CONTACT help phone number, Intuit technical support phone number, wynn POGO GAMES CONTACT support number , Quickbook tech support phone number, Intuit wynn POGO GAMES CONTACT Desktop tech support phone number, wynn POGO GAMES CONTACT enterprise support phone number, wynn POGO GAMES CONTACT component repair tool for windows xp|vista|7 , wynn POGO GAMES CONTACT Desktop not connecting to internet. wynn POGO GAMES CONTACT unsupported system configuration, Dealing some random error message installing wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Data export or import issues, wynn POGO GAMES CONTACT failed to make an internet connection, wynn POGO GAMES CONTACT multi user mode not syncing, wynn POGO GAMES CONTACT not opening in multi-user mode, wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 .wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 . Showing error while updating company data file in wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But wynn POGO GAMES CONTACT Desktop is also a fairly complex application. This complexity means that wynn POGO GAMES CONTACT is ne to having blems like how to restore wynn POGO GAMES CONTACT auto data recovery, wynn POGO GAMES CONTACT Connection blem and connection configuration, wynn POGO GAMES CONTACT Installation Support Phone Number, wynn POGO GAMES CONTACT Company File Not Opening in Multi User Mode, wynn POGO GAMES CONTACT Keeps Disconnecting From Server, wynn POGO GAMES CONTACT Error Message Server Busy, wynn POGO GAMES CONTACT Payroll Tech Support Phone Number, wynn POGO GAMES CONTACT Data File Needs To Be Updated. wynn POGO GAMES CONTACT Data File Recovery Extention, wynn POGO GAMES CONTACT UA-75287313-1connection has been lost, wynn POGO GAMES CONTACT Desktop Installation Error 1722,1334,15215&1904, wynn POGO GAMES CONTACT Desktop error code 6000,3371, wynn POGO GAMES CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with wynn POGO GAMES CONTACT , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our wynn POGO GAMES CONTACT level 5 technicians are available for fix any queries all ducts of wynn POGO GAMES CONTACT . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of wynn POGO GAMES CONTACT Desktop . This is our best customer care service. Contact us for resolve your any wynn POGO GAMES CONTACT blems. #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington-Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #New York #Los Angeles #Chicago #Houston #Philadelphia #Phoenix #San Diego #San Antonio #Dallas #Detroit #San Jose #Indianapolis #Jacksonville #San Francisco #Columbus #Austin #Memphis #Baltimore #Charlotte #Fort Worth #Boston #Milwaukee #El Paso #Washington #Nashville-Davidson #Seattle #Denver #Las Vegas #Portland #Oklahoma City #Tucson #Albuquerque #Atlanta #Long Beach #Kansas City #Fresno #New Orleans #Cleveland #Sacramento #Mesa #Virginia Beach #Omaha #Colorado Springs #Oakland #Miami #Tulsa #Minneapolis #Honolulu #Arlington #Wichita #St. Louis #Raleigh #Santa Ana #Cincinnati #Anaheim #Tampa #Toledo #Pittsburgh #Aurora #Bakersfield #Riverside #Stockton #Corpus Christi #Lexington-Fayette #Buffalo #St. Paul #Anchorage #Newark #Plano #Fort Wayne #St. Petersburg #Glendale #Lincoln #Norfolk #Jersey City #Greensboro #Chandler #Birmingham #Henderson #Scottsdale #North Hempstead #Madison #Hialeah #Baton Rouge #Chesapeake #Orlando #Lubbock #Garland #Akron #Rochester #Chula Vista #Reno #Laredo #Durham #Modesto #Huntington #Montgomery #Boise #Arlington #San Bernardino #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:07:18 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:07:18 -0000 Subject: [GHC] #11906: HELP@ALL 1 844 446 4460 club pogo number Message-ID: <044.e7b37937ee27e632cc3c9c41a87d0f77@haskell.org> #11906: HELP at ALL 1 844 446 4460 club pogo number -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- HELP at ALL 1 844 446 4460 club pogo number {| class="wikitable" |- ! MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number !! 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number ?USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number USA || 1***844 ***446 ***4460 |} Jack and Jill went up the hill to call 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care phone number. Jack fell on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care number and broke his crown and jill came on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline number. JAck has a teddy bear called 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline phone number, and jill has a barbie doll named 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpline. Twiinkle twinkle little star 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk phone number how i wonder what you are 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk number. Up above the world of 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk, like a diamond in the sky. Humpty dumpty 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service phone number sat on a 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service number, Humpty dumpty had a gret fall 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline phone number. All the kings horses all the 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline number could not put humpty togather again. Ba ba black sheep have u 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline, Yes sir yes sir three 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk phone number bags full. One for my master 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk number one for the dame 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk. One for the little boy 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support phone number who lives down the lane. Johhny johhny 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support number, Yes papa Eating sugar 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support ,No papa. telling lies 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline phone number no papa faad thoda ha ha ha 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline number. A lion and a unicorn 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline were in the jungle 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk phone number, the lion beat the unicorn balck and brown 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk number so the unicorn gave birth to my child 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1***844 ***446 ***4460 . MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT products are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1***844 ***446 ***4460 and Tom Proulx in Mountain View, California, USA 1***844 ***446 ***4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and improved e-mail functionality through Microsoft Outlook and Outlook Express @1***844 ***446 ***4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1***844 ***446 ***4460 . Hi All, Facebook users have liked MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number 1***844 ***446 ***4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Intuit Technical Support Phone number +1***844 ***446 ***4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1***844 ***446 ***4460 is the best. Apple also has a handle for Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 . There are amazing videos of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 on youtube on their site www.youtube.com they say it is great. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline phone number 1***844 ***446 ***4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline number 1***844 ***446 ***4460 Proadvisor and Pro Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline 1***844 ***446 ***4460 and using their products. Youtube videos have been telling us the story of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 on the url & Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 has been the pioneer in the field of providing service in terms of issues related to MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , Payroll Support phone number 1***844 ***446 ***4460 , POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 and Proadvisor Tech support phone number 1***844 ***446 ***4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1***844 ***446 ***4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1***844 ***446 ***4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1***844 ***446 ***4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been promoting Tech support phone number 1***844 ***446 ***4460 stories through their platform. Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support @ 1***844 ***446 ***4460 is also one of the places that talks about Tech support phone number 1***844 ***446 ***4460 . You can pay for Tech support phone number 1***844 ***446 ***4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1***844 ***446 ***4460 as number1. Stories of Tech support phone number 1***844 ***446 ***4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1***844 ***446 ***4460 on Go or Page on craiglist.org you will know Tech support phone number 1***844 ***446 ***4460 is special. They provide best MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT 24|7.you can call any time for any problem of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT like MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprises, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support telephone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help phone number, Intuit technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number , Quickbook tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprise support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT component repair tool for windows xp|vista|7 , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not connecting to internet. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT unsupported system configuration, Dealing some random error message installing MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data export or import issues, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT failed to make an internet connection, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT multi user mode not syncing, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not opening in multi-user mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 .MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 . Showing error while updating company data file in MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is also a fairly complex application. This complexity means that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is prone to having problems like how to restore MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT auto data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Connection Problem and connection configuration, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Company File Not Opening in Multi User Mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Keeps Disconnecting From Server, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Message Server Busy, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Payroll Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Needs To Be Updated. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Recovery Extention, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT connection has been lost, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Error 1722,1334,15215&1904, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code 6000,3371, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , the consequences can be pretty dire. Luckily, many common problems are easy to fix -- once you know about them. Our MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT level 5 technicians are available for fix any queries all products of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . We provide best service of any problems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your problems of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . This is our best online customer care service. Contact us for resolve your any MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT problems. 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. Sales: 844 .446 .4040. Support: 844 -446 -4040. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone Number: 844 -446 -4040. We'd suggest trying the Support site first because it's full of usefull information: #1***844 ***446 ***4460 Intuit Customer Service Number #1***844 ***446 ***4460 Intuit Customer Care Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 Intuit Customer Support Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number #1***844 ***446 ***4460 Intuit Customer Service Phone Number #1***844 ***446 ***4460 Intuit Customer Care Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 Intuit Customer Support Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number #1***844 ***446 ***4460 Call Intuit #1***844 ***446 ***4460 Call Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact Intuit #1***844 ***446 ***4460 Contact Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Call MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Alabama,Alaska,Arizona,Arkansas,California ,USA ,Canada, New York, Los Angeles, Chicago, Houston, Philadelphia, Phoenix, San Antonio, San Diego, Dallas, San Jose, Austin, Jacksonville, San Francisco, Indianapolis, Columbus, Fort Worth, Charlotte, Detroit, El Paso, Seattle, Denver, Washington, Memphis, Boston, Nashville, Baltimore, Oklahoma City, Portland, Las Vegas, Louisville, Milwaukee, Albuquerque, Tucson, Fresno, Sacramento, Long Beach, Kansas City, Mesa, Atlanta, Virginia Beach, Omaha, Colorado Springs, Raleigh, Miami, Oakland, Minneapolis, Tulsa, Cleveland, Wichita, New Orleans, Arlington, Bakersfield, Tampa, Aurora, Honolulu, Anaheim, Santa Ana, Corpus Christi, Riverside, St. Louis, Lexington, Pittsburgh, Stockton, Anchorage, Cincinnati, Saint Paul, Greensboro, Toledo, Newark, Plano, Henderson, Lincoln, Orlando, Jersey City, Chula Vista, Buffalo, Fort Wayne, Chandler and St. Petersburg, t is very popular toll free number which provide by MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number. Call, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Help Desk Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number, #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington- Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:08:37 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:08:37 -0000 Subject: [GHC] #11907: (EA GAMES ) 1844 446 4.460 POGO CLUB REFUND Sup port Help LINE Num ber Message-ID: <044.3e82be437b5d8345c071700af9f22cb2@haskell.org> #11907: (EA GAMES ) 1844 446 4.460 POGO CLUB REFUND Sup port Help LINE Num ber -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- (EA GAMES ) 1844 446 4.460 POGO CLUB REFUND Sup port Help LINE Num ber ######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number POGO GAMES tech Support Number 1-844-446-4460 POGO GAMES s Technical Support phone Number ######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support ######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support######## 1-844-446-4460 ###### POGO GAMES s technical support number//POGO GAMES s telephone number//POGO GAMES tech support pogo support number, pogo support helpline number, pogo support toll free, pogo support, pogo technical support number, pogo technical support Phone number, pogo support Online Help, POGO GAMES support toll free number, pogo Tech Support Phone Number, pogo helpline phone number, POGO GAMES customer support number, Pogo helpline phone number, pogo support ,Pogo support Online Help, Pogo Tech Support Phone Number, Pogo technical support number, Pogo technical support Phone number, POGO GAMES Customer Support Call Us : 1-844-446-4460 Now To Get Support, Instant Fix. 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 !@ Pogo Technical Support Number?-Pogo customer care service-POGO GAMES s support phone number-Pogo customer support phone number USA 1-844-446-4460 POGO GAMES s phone number 1-844-446-4460 POGO GAMES phone number 1-844-446-4460 POGO GAMES s online how to contact 1-844-446-4460 pogo by phone Phone number for 1-844-446-4460 pogo 1-844-446-4460 pogo technical support number 1-844-446-4460 POGO GAMES s support phone number 1-844-446-4460 pogo contact phone number1-844-446-4460 POGO GAMES s contact number 1-844-446-4460 POGO GAMES helpline call 1-844-446-4460 pogo 1-844-446-4460 POGO GAMES s customer service phone number phone number for 1-844-446-4460 POGO GAMES s 1-844-446-4460 POGO GAMES s customer service 1-844-446-4460 pogo help center 1-844-446-4460 problems with 1-844-446-4460 pogo 1-844-446-4460 how do i contact 1-844-446-4460 pogo 1-844-446-4460 how to contact 1-844-446-4460 pogo 1-844-446-4460 POGO GAMES s contact number 1-844-446-4460 pogo not working 1-844-446-4460 pogo.com customer service phone number 1-844-446-4460 phone number for pogo.com 1-844-446-4460 pogo.com customer service 1-844-446-4460 pogo support -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:09:56 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:09:56 -0000 Subject: [GHC] #11908: RELOADING +1 8444464460 POGO GAMES Support Number +1 8444464460 POGO GAMES Message-ID: <044.18f8e57d2345bea03475679b57bd4304@haskell.org> #11908: RELOADING +1 8444464460 POGO GAMES Support Number +1 8444464460 POGO GAMES -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- RELOADING +1 8444464460 POGO GAMES Support Number +1 8444464460 POGO GAMES {| class="wikitable" |- ! MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number !! 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number ?USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number USA || 1***844 ***446 ***4460 |} Jack and Jill went up the hill to call 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care phone number. Jack fell on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care number and broke his crown and jill came on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline number. JAck has a teddy bear called 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline phone number, and jill has a barbie doll named 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpline. Twiinkle twinkle little star 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk phone number how i wonder what you are 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk number. Up above the world of 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk, like a diamond in the sky. Humpty dumpty 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service phone number sat on a 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service number, Humpty dumpty had a gret fall 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline phone number. All the kings horses all the 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline number could not put humpty togather again. Ba ba black sheep have u 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline, Yes sir yes sir three 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk phone number bags full. One for my master 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk number one for the dame 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk. One for the little boy 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support phone number who lives down the lane. Johhny johhny 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support number, Yes papa Eating sugar 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support ,No papa. telling lies 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline phone number no papa faad thoda ha ha ha 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline number. A lion and a unicorn 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline were in the jungle 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk phone number, the lion beat the unicorn balck and brown 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk number so the unicorn gave birth to my child 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1***844 ***446 ***4460 . MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT products are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1***844 ***446 ***4460 and Tom Proulx in Mountain View, California, USA 1***844 ***446 ***4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and improved e-mail functionality through Microsoft Outlook and Outlook Express @1***844 ***446 ***4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1***844 ***446 ***4460 . Hi All, Facebook users have liked MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number 1***844 ***446 ***4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Intuit Technical Support Phone number +1***844 ***446 ***4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1***844 ***446 ***4460 is the best. Apple also has a handle for Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 . There are amazing videos of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 on youtube on their site www.youtube.com they say it is great. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline phone number 1***844 ***446 ***4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline number 1***844 ***446 ***4460 Proadvisor and Pro Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline 1***844 ***446 ***4460 and using their products. Youtube videos have been telling us the story of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 on the url & Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 has been the pioneer in the field of providing service in terms of issues related to MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , Payroll Support phone number 1***844 ***446 ***4460 , POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 and Proadvisor Tech support phone number 1***844 ***446 ***4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1***844 ***446 ***4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1***844 ***446 ***4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1***844 ***446 ***4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been promoting Tech support phone number 1***844 ***446 ***4460 stories through their platform. Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support @ 1***844 ***446 ***4460 is also one of the places that talks about Tech support phone number 1***844 ***446 ***4460 . You can pay for Tech support phone number 1***844 ***446 ***4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1***844 ***446 ***4460 as number1. Stories of Tech support phone number 1***844 ***446 ***4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1***844 ***446 ***4460 on Go or Page on craiglist.org you will know Tech support phone number 1***844 ***446 ***4460 is special. They provide best MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT 24|7.you can call any time for any problem of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT like MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprises, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support telephone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help phone number, Intuit technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number , Quickbook tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprise support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT component repair tool for windows xp|vista|7 , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not connecting to internet. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT unsupported system configuration, Dealing some random error message installing MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data export or import issues, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT failed to make an internet connection, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT multi user mode not syncing, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not opening in multi-user mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 .MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 . Showing error while updating company data file in MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is also a fairly complex application. This complexity means that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is prone to having problems like how to restore MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT auto data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Connection Problem and connection configuration, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Company File Not Opening in Multi User Mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Keeps Disconnecting From Server, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Message Server Busy, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Payroll Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Needs To Be Updated. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Recovery Extention, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT connection has been lost, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Error 1722,1334,15215&1904, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code 6000,3371, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , the consequences can be pretty dire. Luckily, many common problems are easy to fix -- once you know about them. Our MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT level 5 technicians are available for fix any queries all products of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . We provide best service of any problems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your problems of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . This is our best online customer care service. Contact us for resolve your any MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT problems. 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. Sales: 844 .446 .4040. Support: 844 -446 -4040. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone Number: 844 -446 -4040. We'd suggest trying the Support site first because it's full of usefull information: #1***844 ***446 ***4460 Intuit Customer Service Number #1***844 ***446 ***4460 Intuit Customer Care Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 Intuit Customer Support Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number #1***844 ***446 ***4460 Intuit Customer Service Phone Number #1***844 ***446 ***4460 Intuit Customer Care Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 Intuit Customer Support Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number #1***844 ***446 ***4460 Call Intuit #1***844 ***446 ***4460 Call Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact Intuit #1***844 ***446 ***4460 Contact Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Call MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Alabama,Alaska,Arizona,Arkansas,California ,USA ,Canada, New York, Los Angeles, Chicago, Houston, Philadelphia, Phoenix, San Antonio, San Diego, Dallas, San Jose, Austin, Jacksonville, San Francisco, Indianapolis, Columbus, Fort Worth, Charlotte, Detroit, El Paso, Seattle, Denver, Washington, Memphis, Boston, Nashville, Baltimore, Oklahoma City, Portland, Las Vegas, Louisville, Milwaukee, Albuquerque, Tucson, Fresno, Sacramento, Long Beach, Kansas City, Mesa, Atlanta, Virginia Beach, Omaha, Colorado Springs, Raleigh, Miami, Oakland, Minneapolis, Tulsa, Cleveland, Wichita, New Orleans, Arlington, Bakersfield, Tampa, Aurora, Honolulu, Anaheim, Santa Ana, Corpus Christi, Riverside, St. Louis, Lexington, Pittsburgh, Stockton, Anchorage, Cincinnati, Saint Paul, Greensboro, Toledo, Newark, Plano, Henderson, Lincoln, Orlando, Jersey City, Chula Vista, Buffalo, Fort Wayne, Chandler and St. Petersburg, t is very popular toll free number which provide by MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number. Call, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Help Desk Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number, #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington- Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:11:16 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:11:16 -0000 Subject: [GHC] #11909: INSTALLATION CALL 1 844 446 4460 contact pogo customer service Message-ID: <044.2b5205a68ab3b4d836536c545d581bfb@haskell.org> #11909: INSTALLATION CALL 1 844 446 4460 contact pogo customer service -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- INSTALLATION CALL 1 844 446 4460 contact pogo customer service {| class="wikitable" |- ! MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number !! 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number ?USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number USA || 1***844 ***446 ***4460 |} Jack and Jill went up the hill to call 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care phone number. Jack fell on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care number and broke his crown and jill came on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline number. JAck has a teddy bear called 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline phone number, and jill has a barbie doll named 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpline. Twiinkle twinkle little star 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk phone number how i wonder what you are 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk number. Up above the world of 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk, like a diamond in the sky. Humpty dumpty 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service phone number sat on a 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service number, Humpty dumpty had a gret fall 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline phone number. All the kings horses all the 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline number could not put humpty togather again. Ba ba black sheep have u 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline, Yes sir yes sir three 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk phone number bags full. One for my master 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk number one for the dame 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk. One for the little boy 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support phone number who lives down the lane. Johhny johhny 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support number, Yes papa Eating sugar 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support ,No papa. telling lies 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline phone number no papa faad thoda ha ha ha 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline number. A lion and a unicorn 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline were in the jungle 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk phone number, the lion beat the unicorn balck and brown 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk number so the unicorn gave birth to my child 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1***844 ***446 ***4460 . MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT products are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1***844 ***446 ***4460 and Tom Proulx in Mountain View, California, USA 1***844 ***446 ***4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and improved e-mail functionality through Microsoft Outlook and Outlook Express @1***844 ***446 ***4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1***844 ***446 ***4460 . Hi All, Facebook users have liked MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number 1***844 ***446 ***4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Intuit Technical Support Phone number +1***844 ***446 ***4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1***844 ***446 ***4460 is the best. Apple also has a handle for Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 . There are amazing videos of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 on youtube on their site www.youtube.com they say it is great. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline phone number 1***844 ***446 ***4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline number 1***844 ***446 ***4460 Proadvisor and Pro Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline 1***844 ***446 ***4460 and using their products. Youtube videos have been telling us the story of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 on the url & Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 has been the pioneer in the field of providing service in terms of issues related to MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , Payroll Support phone number 1***844 ***446 ***4460 , POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 and Proadvisor Tech support phone number 1***844 ***446 ***4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1***844 ***446 ***4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1***844 ***446 ***4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1***844 ***446 ***4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been promoting Tech support phone number 1***844 ***446 ***4460 stories through their platform. Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support @ 1***844 ***446 ***4460 is also one of the places that talks about Tech support phone number 1***844 ***446 ***4460 . You can pay for Tech support phone number 1***844 ***446 ***4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1***844 ***446 ***4460 as number1. Stories of Tech support phone number 1***844 ***446 ***4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1***844 ***446 ***4460 on Go or Page on craiglist.org you will know Tech support phone number 1***844 ***446 ***4460 is special. They provide best MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT 24|7.you can call any time for any problem of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT like MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprises, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support telephone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help phone number, Intuit technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number , Quickbook tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprise support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT component repair tool for windows xp|vista|7 , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not connecting to internet. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT unsupported system configuration, Dealing some random error message installing MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data export or import issues, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT failed to make an internet connection, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT multi user mode not syncing, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not opening in multi-user mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 .MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 . Showing error while updating company data file in MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is also a fairly complex application. This complexity means that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is prone to having problems like how to restore MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT auto data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Connection Problem and connection configuration, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Company File Not Opening in Multi User Mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Keeps Disconnecting From Server, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Message Server Busy, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Payroll Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Needs To Be Updated. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Recovery Extention, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT connection has been lost, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Error 1722,1334,15215&1904, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code 6000,3371, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , the consequences can be pretty dire. Luckily, many common problems are easy to fix -- once you know about them. Our MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT level 5 technicians are available for fix any queries all products of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . We provide best service of any problems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your problems of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . This is our best online customer care service. Contact us for resolve your any MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT problems. 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. Sales: 844 .446 .4040. Support: 844 -446 -4040. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone Number: 844 -446 -4040. We'd suggest trying the Support site first because it's full of usefull information: #1***844 ***446 ***4460 Intuit Customer Service Number #1***844 ***446 ***4460 Intuit Customer Care Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 Intuit Customer Support Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number #1***844 ***446 ***4460 Intuit Customer Service Phone Number #1***844 ***446 ***4460 Intuit Customer Care Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 Intuit Customer Support Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number #1***844 ***446 ***4460 Call Intuit #1***844 ***446 ***4460 Call Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact Intuit #1***844 ***446 ***4460 Contact Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Call MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Alabama,Alaska,Arizona,Arkansas,California ,USA ,Canada, New York, Los Angeles, Chicago, Houston, Philadelphia, Phoenix, San Antonio, San Diego, Dallas, San Jose, Austin, Jacksonville, San Francisco, Indianapolis, Columbus, Fort Worth, Charlotte, Detroit, El Paso, Seattle, Denver, Washington, Memphis, Boston, Nashville, Baltimore, Oklahoma City, Portland, Las Vegas, Louisville, Milwaukee, Albuquerque, Tucson, Fresno, Sacramento, Long Beach, Kansas City, Mesa, Atlanta, Virginia Beach, Omaha, Colorado Springs, Raleigh, Miami, Oakland, Minneapolis, Tulsa, Cleveland, Wichita, New Orleans, Arlington, Bakersfield, Tampa, Aurora, Honolulu, Anaheim, Santa Ana, Corpus Christi, Riverside, St. Louis, Lexington, Pittsburgh, Stockton, Anchorage, Cincinnati, Saint Paul, Greensboro, Toledo, Newark, Plano, Henderson, Lincoln, Orlando, Jersey City, Chula Vista, Buffalo, Fort Wayne, Chandler and St. Petersburg, t is very popular toll free number which provide by MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number. Call, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Help Desk Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number, #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington- Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:12:30 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:12:30 -0000 Subject: [GHC] #11910: 8889596787 ms office tech support phone number microsoft office customer service phone number ms office phone number Message-ID: <046.09ee3036158f73b2e8f3761f9bc20ba4@haskell.org> #11910: 8889596787 ms office tech support phone number microsoft office customer service phone number ms office phone number -------------------------------------+------------------------------------- Reporter: pk77136 | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- C at ll USA-1888-959-6787 and UK-8889596787 ms office technical support phone number microsoft office customer service phone number, microsoft office phone number Posted on 4/15/2016 by ragajghar C at ll USA-1888-959-6787 and UK-8889596787 ms office technical support phone number microsoft office customer service phone number, microsoft office phone number C at ll USA-1888-959-6787 and UK-8889596787 ms office tech support phone number microsoft office customer service phone number ms office phone number ms office customer support phone number ms office support ms support number ms phone number ms number ms contact number ms office support number ms support phone number ms tech support phone number ms help number ms customer service number ms office support phone number ms office help number ms tech support number ms customer support number ms office phone number ms technical support phone number ms customer service phone number ms customer support phone number ms technical support number ms help phone number phone number for ms ms telephone number ms office contact number ms office tech support number ms helpline number phone number for ms support ms office technical support phone number ms office customer service phone number ms contact phone number ms office technical support number ms office 365 support number phone number for ms office support ms office customer service number phone number for ms office ms 18OO number ms office help phone number contact number for ms ms windows support number contact ms phone number ms office tech support phone number ms support telephone number ms support contact number ms office 365 support phone number ms help desk number ms windows support phone number ms 365 support number ms office 2013 support phone number ms account support number number to ms ms help desk phone number ms office number ms office 365 contact number ms phone support number ms office customer support number ms office 365 help phone number ms phone number customer service ms office 365 phone number ms live contact number telephone number for ms support ms office contact phone number ms email support phone number ms customer service telephone number ms office telephone number ms office customer support phone number ms windows customer service phone number ms office 365 customer support phone number telephone number for ms ms windows technical support phone number number for ms office support ms live support number ms office customer service telephone number ms phone number support ms office 2010 support phone number number for ms support telephone number for ms office support phone number to ms ms 365 contact number ms windows help number ms 1 8OO number ms customer support telephone number ms live support phone number ms windows tech support phone number ms office phone number customer service phone number for ms office 365 phone number ms office support ms 8OO number ms support team phone number ms office 2010 contact number phone number ms ms 365 phone number contact number for ms support ms telephone support number phone number for ms tech support ms office support contact number phone number ms support phone number for ms customer service contact ms support phone number ms number support ms office support telephone number contact number for ms office ms office 2013 technical support phone number ms office 18OO number ms office 2013 support contact number ms call number ms live help number ms office 8OO number customer service number for ms ms 365 help number ms office 2013 tech support phone number ms 365 help phone number phone number for ms technical support ms troubleshooting phone number contact phone number for ms office ms windows customer support phone number ms windows help phone number contact number for ms office support ms help telephone number ms email support contact number ms phone number customer support ms online support number phone number to ms support ms office 2013 customer service phone number ms office 2013 phone number ms office phone support number ms number customer service ms office phone number support ms assistance number ms service phone number ms assistance phone number ms windows contact number ms 365 contact phone number 8OO number for ms tech support windows ms phone number contact phone number for ms support number to ms support ms help contact number ms phone number for support ms live phone number support number for ms ms email contact number phone number for ms customer support 1-8OO-ms phone number ms office 2013 support number ms 8OO number tech support phone number for ms windows ms office helpline number ms product support phone number ms telephone number customer service ms office 2010 support number telephone number for ms tech support ms tech number number for ms technical support phone number of ms customer service ms live account support number ms tech support contact number call ms tech support phone number ms office 2010 technical support phone number ms customer number contact ms technical support phone number ms office 365 customer service number phone number to ms customer service tech support number for ms ms technical support telephone number ms office 365 customer support number windows ms contact number ms customer care phone number phone number ms office ms online support phone number ms windows technical support number customer service number for ms office ms 365 customer service phone number ms online phone number ms technical help phone number ms product support number ms office 365 contact phone number ms main phone number ms support team number ms technical support contact number contact phone number for ms ms contact support number ms email customer service number tech support ms phone number phone number for ms help telephone number ms support phone number for ms office 365 support ms phone number tech support ms customer service and support phone number ms customer service and support number ms troubleshooting number ms office 2010 tech support phone number ms customer services phone number ms email support number telephone number for ms technical support ms windows telephone number ms office 365 technical support number 1 8OO number for ms ms support 8OO number ms.com support phone number ms tech help phone number ms tech support telephone number ms tel number ms telephone number for technical support contact number ms ms.com contact number contact ms support number contact ms tech support phone number ms live customer service phone number ms helpline phone number contact ms office support phone number ms office 2013 support telephone number ms office 365 tech support number ms office 2010 customer support phone number ms help support phone number ms live account support phone number ms account support phone number ms contact number usa number to ms customer service ms support call number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:12:41 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:12:41 -0000 Subject: [GHC] #11911: ms office 1-888-959-6787 ms office customer service number microsoft office technical support phone number Message-ID: <046.79492d19691d334adf3669cd68c40e41@haskell.org> #11911: ms office 1-888-959-6787 ms office customer service number microsoft office technical support phone number -------------------------------------+------------------------------------- Reporter: pk77136 | Owner: Type: task | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Technical Support @@ 18889596787 @@ microsoft office tech support phone number microsoft office customer care number @@ Technical Support @@ 18889596787 @@ microsoft office tech support phone number microsoft office customer care number @@ '. ' 1-888-959-6787 usa 18889596787 ms office tech support phone number microsoft office customer service microsoft office 365 technical support phone number microsoft office customer support phone number Canada 1-888-959-6787 ms office customer support phone number microsoft office customer care microsoft office 365 technical support phone number microsoft office customer support phone number canada 1-888-959-6787 ms office customer support phone number microsoft office customer care microsoft office 365 technical support phone number microsoft office customer support phone number USA 1-888-959-6787 ms office tech support phone number microsoft office customer service microsoft office 365 technical support phone number microsoft office customer support phone number USA 1-888-959-6787 ms office tech support phone number microsoft office customer service microsoft office 365 technical support phone number microsoft office customer support phone number Canada/USA 1-888-959-6787 ms office tech support phone number microsoft office customer service microsoft office 365 technical support phone number microsoft office customer support phone number 1-80O-655-0455 microsoft office customer service Phone number USA Office customer support toll free number)@!! Microsoft Office-1-888-959-6787 usa 18889596787 Microsoft Office tech support phone number Microsoft Technical support phone number Microsoft customer service phone number Microsoft Office Tech ++++1-888-959-6787 usa 18889596787 !!Microsoft Customer Support Phone Microsoft customer care number microsoft office support phone Number Office Support-1-888-959-6787 usa 18889596787 Microsoft Microsoft Tech support Telephone number Microsoft Customer Support Phone number 24/7 *Office Tech support Telephone number [[>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft tech support microsoft help microsoft office customer service microsoft help Number]] [[1-888-959-6787 usa 18889596787------<->---<-> microsoft office technical support phone Number microsoft support call microsoft office support microsoft office technical support phone Number]] Microsoft Office Tech ++++1-888-959-6787 usa 18889596787 !!Microsoft Customer Support Phone Keyword microsoft office support phone Number------++++ Microsoft Office Tech support mobile number +1-888-959-6787 usa 18889596787 !!Microsoft Customer Support Phone Keyword microsoft office support phone Number------++++ 24/7 *Office-- @ 1-888-959-6787 usa 18889596787 Microsoft Microsoft Tech support Telephone number +1-888-959-6787 usa 18889596787 !!Microsoft Customer Support Phone 24/7 *Office-- @ 1-888-959-6787 usa 18889596787 Microsoft Microsoft Tech support Telephone number +1-888-959-6787 usa 18889596787 FREE !!Microsoft Customer Support Phone Keyword microsoft office support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office support microsoft support microsoft customer service microsoft support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft tech support microsoft help microsoft office customer service microsoft help Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft technical support microsoft office help microsoft office support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office contact microsoft customer support microsoft phone Number---------<->--------------<<............>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft office help Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft tech support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> call microsoft microsoft technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft contact microsoft online support contact microsoft office microsoft phone support microsoft support email microsoft contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft support microsoft technical support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office phone support office 365 support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office help microsoft 365 support microsoft office 365 support microsoft office customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office customer support call microsoft support microsoft office 21-1-3 support microsoft office customer service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft product support microsoft telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office tech support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office microsoft call center microsoft office help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft tech support microsoft office 21-1-1- help microsoft office 21-1-1- support Microsoft office support microsoft live chat contact microsoft phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft telephone support Microsoft support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft tech support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 phone support Microsoft office help microsoft office helpline contact microsoft office support microsoft office 21-1-3 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft helpline microsoft help desk phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer service and support Microsoft customer service microsoft support live chat support microsoft office chat with microsoft support call microsoft office support microsoft office technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office customer support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office telephone support microsoft office help desk microsoft office technical support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft help Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 365 support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office support microsoft contact email telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft support microsoft office contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-7 help Microsoft technical support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 tech support microsoft word customer service Microsoft customer support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft 1-81-1- Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft support phone microsoft live support microsoft office telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-7 support office 365 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 technical support microsoft Microsoft customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft Microsoft tech support microsoft Microsoft support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> live chat microsoft microsoft customer care office 365 customer support contact microsoft office support by phone call microsoft office microsoft office customer service telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft helpline phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft support microsoft office online help microsoft support contact microsoft online help microsoft office 365 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft help desk Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft Microsoft support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft 365 support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office live chat microsoft Microsoft customer service microsoft call microsoft office phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> customer service call microsoft tech support customer service microsoft microsoft customer support phone microsoft live help microsoft office Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact microsoft tech support microsoft office 21-1-3 help microsoft office customer service telephone microsoft word tech support microsoft Microsoft contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact microsoft by phone microsoft office support phone microsoft office 365 contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact microsoft customer service microsoft office support telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft phone support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft live phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office microsoft office 365 help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft live chat support microsoft customer support email microsoft word phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer service and support online microsoft tech help microsoft phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> customer service microsoft office 21-1-3 support office 365 telephone support Microsoft office tech support Microsoft office support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-3 technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 365 phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft live contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft headquarters phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> tech support microsoft microsoft office customer service phone office 365 customer service microsoft office 1-81-1- Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-3 support contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 help Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft Microsoft technical support microsoft customer services microsoft help phone Microsoft 8 tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 81-1- Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> customer service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft helpline Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-3 tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact microsoft support by phone microsoft technical help microsoft word customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office support email microsoft support team microsoft troubleshooting phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft word help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft email support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 21-1-3 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office phone microsoft contact support microsoft word support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft office support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft 8 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft office microsoft online tech support microsoft online support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft Microsoft 7 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office online support support microsoft office 21-1-1- microsoft tech support phone phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> to microsoft support contacting microsoft microsoft support call microsoft support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787<<>>>>>>>>>>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> email microsoft support microsoft office phone support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> window office office 365 phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 365 customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> technical support microsoft telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft office phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> support microsoft Microsoft technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office support microsoft email support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft word tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft live support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact microsoft technical support contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> to microsoft support microsoft office contact support microsoft office microsoft office Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> to call microsoft phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for support support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft customer service email contact microsoft office 365 support microsoft office 365 help microsoft office helpline Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-1- support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> customer support microsoft customer service for microsoft microsoft contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft support office telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> to microsoft microsoft tech support email microsoft 365 contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office call support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft technical support microsoft Microsoft help Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> call from microsoft microsoft product support services contact Microsoft support Microsoft customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office probleMicrosoft microsoft Microsoft 7 tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer support telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft help center office 21-1-1- support Microsoft live support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoftoffice microsoft office support contact microsoft live support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-1- customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> tech support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft Microsoft tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft live customer support call microsoft technical support contact microsoft live Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft customer support services can i call microsoft support customer service microsoft office phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office 365 microsoft Microsoft 7 technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office microsoft office 21-1-3 customer service phone microsoft support microsoft phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787<<>>>>>>>>>>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft 81-1- Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> customer service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office microsoft support team phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft office customer service microsoft help email Microsoft 7 tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft online phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft technical help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-1- contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft phone contact Microsoft office customer support tech support for microsoft office office 365 support phone live chat microsoft support microsoft Microsoft contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft office phone support microsoft word customer service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft 365 phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft word technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft office support microsoft office telephone Microsoft 7 customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-3 tech support contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft email customer service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft tech support microsoft office support contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft help microsoft online customer service contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft office customer support phone microsoft office call center phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft customer service microsoft Microsoft customer service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft live tech support contact microsoft support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft technical support microsoft word customer support microsoft office 21-1-3 help microsoft office 21-1-7 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft technical support email microsoft word customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 365 telephone support microsoft office call microsoft office 365 phone support microsoft office live help microsoft office 21-1-1- support microsoft word contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 21-1-1- help microsoft telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for technical support office support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office for phone microsoft support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft 7 microsoft email support microsoft support telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft support help contact microsoft office support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft office tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft support contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-3 support telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office customer care microsoft office tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787<<>>>>>>>>>>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft tech microsoft 365 phone support help microsoft call microsoft customer service microsoft phone no microsoft office troubleshooting support for microsoft office Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> to microsoft customer service how to contact microsoft contact microsoft office by phone microsoft Microsoft 7 support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer service phone microsoft live help Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft Microsoft tech support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft.com phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft call support microsoft office live chat support microsoft Microsoft 7 customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 365 tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for office 365 support microsoft tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for Microsoft 7 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft word contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office microsoft 365 tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft 365 help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft technical support customer service for microsoft office customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft Microsoft 7 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft online contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft main office phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office live support microsoft help hotline call office 365 support microsoft office 365 technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office online help Microsoft office 365 support microsoft support online microsoft contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<->s live chat with microsoft support Microsoft live customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact microsoft support contact for microsoft customer service microsoft technical assistance phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office word help Microsoft support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft word support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> technical support for microsoft microsoft offie contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office support.microsoft.com help with microsoft office office support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft Microsoft customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact for microsoft microsoft Microsoft help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft support hours office 365 support contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office support contact microsoft customer support Microsoft 365 support Microsoft office help microsoft live chat support online microsoft email support contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> customer support Microsoft office contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contacting microsoft customer service Microsoft 7 customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone with microsoft office microsoft account support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<->s microsoft account support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> to microsoft microsoft tech support hours microsoft office contacts microsoft office tech support contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-3 phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> chat with microsoft tech support contact microsoft microsoft Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> customer service microsoft technical assistance contact help microsoft microsoft office contact phone microsoft help contact microsoft assistance Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft service center microsoft support telephone support microsoft live chat support microsoft microsoft sales microsoft office help and support phone for microsoft support microsoft 365 contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> 81-1- Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft tech support calling microsoft support microsoft Microsoft customer support Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:13:51 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:13:51 -0000 Subject: [GHC] #11911: ms office 1-888-959-6787 ms office customer service number microsoft office technical support phone number In-Reply-To: <046.79492d19691d334adf3669cd68c40e41@haskell.org> References: <046.79492d19691d334adf3669cd68c40e41@haskell.org> Message-ID: <061.863c710fc93e1b7040ad7060c2640d7c@haskell.org> #11911: ms office 1-888-959-6787 ms office customer service number microsoft office technical support phone number -------------------------------------+------------------------------------- Reporter: pk77136 | Owner: Type: task | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by pk77136): Technical Support @@ 18889596787 @@ microsoft office tech support phone number microsoft office customer care number @@ Technical Support @@ 18889596787 @@ microsoft office tech support phone number microsoft office customer care number @@ '. ' 1-888-959-6787 usa 18889596787 ms office tech support phone number microsoft office customer service microsoft office 365 technical support phone number microsoft office customer support phone number Canada 1-888-959-6787 ms office customer support phone number microsoft office customer care microsoft office 365 technical support phone number microsoft office customer support phone number canada 1-888-959-6787 ms office customer support phone number microsoft office customer care microsoft office 365 technical support phone number microsoft office customer support phone number USA 1-888-959-6787 ms office tech support phone number microsoft office customer service microsoft office 365 technical support phone number microsoft office customer support phone number USA 1-888-959-6787 ms office tech support phone number microsoft office customer service microsoft office 365 technical support phone number microsoft office customer support phone number Canada/USA 1-888-959-6787 ms office tech support phone number microsoft office customer service microsoft office 365 technical support phone number microsoft office customer support phone number 1-80O-655-0455 microsoft office customer service Phone number USA Office customer support toll free number)@!! Microsoft Office-1-888-959-6787 usa 18889596787 Microsoft Office tech support phone number Microsoft Technical support phone number Microsoft customer service phone number Microsoft Office Tech ++++1-888-959-6787 usa 18889596787 !!Microsoft Customer Support Phone Microsoft customer care number microsoft office support phone Number Office Support-1-888-959-6787 usa 18889596787 Microsoft Microsoft Tech support Telephone number Microsoft Customer Support Phone number 24/7 *Office Tech support Telephone number [[>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft tech support microsoft help microsoft office customer service microsoft help Number]] [[1-888-959-6787 usa 18889596787------<->---<-> microsoft office technical support phone Number microsoft support call microsoft office support microsoft office technical support phone Number]] Microsoft Office Tech ++++1-888-959-6787 usa 18889596787 !!Microsoft Customer Support Phone Keyword microsoft office support phone Number------++++ Microsoft Office Tech support mobile number +1-888-959-6787 usa 18889596787 !!Microsoft Customer Support Phone Keyword microsoft office support phone Number------++++ 24/7 *Office-- @ 1-888-959-6787 usa 18889596787 Microsoft Microsoft Tech support Telephone number +1-888-959-6787 usa 18889596787 !!Microsoft Customer Support Phone 24/7 *Office-- @ 1-888-959-6787 usa 18889596787 Microsoft Microsoft Tech support Telephone number +1-888-959-6787 usa 18889596787 FREE !!Microsoft Customer Support Phone Keyword microsoft office support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office support microsoft support microsoft customer service microsoft support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft tech support microsoft help microsoft office customer service microsoft help Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft technical support microsoft office help microsoft office support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office contact microsoft customer support microsoft phone Number---------<->--------------<<............>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft office help Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft tech support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> call microsoft microsoft technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft contact microsoft online support contact microsoft office microsoft phone support microsoft support email microsoft contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft support microsoft technical support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office phone support office 365 support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office help microsoft 365 support microsoft office 365 support microsoft office customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office customer support call microsoft support microsoft office 21-1-3 support microsoft office customer service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft product support microsoft telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office tech support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office microsoft call center microsoft office help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft tech support microsoft office 21-1-1- help microsoft office 21-1-1- support Microsoft office support microsoft live chat contact microsoft phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft telephone support Microsoft support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft tech support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 phone support Microsoft office help microsoft office helpline contact microsoft office support microsoft office 21-1-3 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft helpline microsoft help desk phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer service and support Microsoft customer service microsoft support live chat support microsoft office chat with microsoft support call microsoft office support microsoft office technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office customer support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office telephone support microsoft office help desk microsoft office technical support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft help Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 365 support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office support microsoft contact email telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft support microsoft office contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-7 help Microsoft technical support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 tech support microsoft word customer service Microsoft customer support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft 1-81-1- Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft support phone microsoft live support microsoft office telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-7 support office 365 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 technical support microsoft Microsoft customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft Microsoft tech support microsoft Microsoft support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> live chat microsoft microsoft customer care office 365 customer support contact microsoft office support by phone call microsoft office microsoft office customer service telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft helpline phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft support microsoft office online help microsoft support contact microsoft online help microsoft office 365 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft help desk Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft Microsoft support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft 365 support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office live chat microsoft Microsoft customer service microsoft call microsoft office phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> customer service call microsoft tech support customer service microsoft microsoft customer support phone microsoft live help microsoft office Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact microsoft tech support microsoft office 21-1-3 help microsoft office customer service telephone microsoft word tech support microsoft Microsoft contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact microsoft by phone microsoft office support phone microsoft office 365 contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact microsoft customer service microsoft office support telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft phone support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft live phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office microsoft office 365 help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft live chat support microsoft customer support email microsoft word phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer service and support online microsoft tech help microsoft phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> customer service microsoft office 21-1-3 support office 365 telephone support Microsoft office tech support Microsoft office support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-3 technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 365 phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft live contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft headquarters phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> tech support microsoft microsoft office customer service phone office 365 customer service microsoft office 1-81-1- Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-3 support contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 help Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft Microsoft technical support microsoft customer services microsoft help phone Microsoft 8 tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 81-1- Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> customer service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft helpline Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-3 tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact microsoft support by phone microsoft technical help microsoft word customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office support email microsoft support team microsoft troubleshooting phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft word help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft email support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 21-1-3 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office phone microsoft contact support microsoft word support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft office support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft 8 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft office microsoft online tech support microsoft online support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft Microsoft 7 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office online support support microsoft office 21-1-1- microsoft tech support phone phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> to microsoft support contacting microsoft microsoft support call microsoft support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787<<>>>>>>>>>>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> email microsoft support microsoft office phone support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> window office office 365 phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 365 customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> technical support microsoft telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft office phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> support microsoft Microsoft technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office support microsoft email support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft word tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft live support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact microsoft technical support contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> to microsoft support microsoft office contact support microsoft office microsoft office Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> to call microsoft phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for support support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft customer service email contact microsoft office 365 support microsoft office 365 help microsoft office helpline Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-1- support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> customer support microsoft customer service for microsoft microsoft contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft support office telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> to microsoft microsoft tech support email microsoft 365 contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office call support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft technical support microsoft Microsoft help Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> call from microsoft microsoft product support services contact Microsoft support Microsoft customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office probleMicrosoft microsoft Microsoft 7 tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer support telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft help center office 21-1-1- support Microsoft live support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoftoffice microsoft office support contact microsoft live support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-1- customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> tech support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft Microsoft tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft live customer support call microsoft technical support contact microsoft live Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft customer support services can i call microsoft support customer service microsoft office phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office 365 microsoft Microsoft 7 technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office microsoft office 21-1-3 customer service phone microsoft support microsoft phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787<<>>>>>>>>>>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft 81-1- Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> customer service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office microsoft support team phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft office customer service microsoft help email Microsoft 7 tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft online phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft technical help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-1- contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft phone contact Microsoft office customer support tech support for microsoft office office 365 support phone live chat microsoft support microsoft Microsoft contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft office phone support microsoft word customer service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft 365 phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft word technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft office support microsoft office telephone Microsoft 7 customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-3 tech support contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft email customer service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft tech support microsoft office support contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft help microsoft online customer service contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft office customer support phone microsoft office call center phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft customer service microsoft Microsoft customer service Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft live tech support contact microsoft support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft technical support microsoft word customer support microsoft office 21-1-3 help microsoft office 21-1-7 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft technical support email microsoft word customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 365 telephone support microsoft office call microsoft office 365 phone support microsoft office live help microsoft office 21-1-1- support microsoft word contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 21-1-1- help microsoft telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for technical support office support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office for phone microsoft support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft 7 microsoft email support microsoft support telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft support help contact microsoft office support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> Microsoft office tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft support contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-3 support telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office customer care microsoft office tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787<<>>>>>>>>>>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft tech microsoft 365 phone support help microsoft call microsoft customer service microsoft phone no microsoft office troubleshooting support for microsoft office Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> to microsoft customer service how to contact microsoft contact microsoft office by phone microsoft Microsoft 7 support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft customer service phone microsoft live help Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft Microsoft tech support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft.com phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft call support microsoft office live chat support microsoft Microsoft 7 customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 365 tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for office 365 support microsoft tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for Microsoft 7 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft microsoft word contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> telephone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office microsoft 365 tech support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft 365 help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft technical support customer service for microsoft office customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft Microsoft 7 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft online contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft main office phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office live support microsoft help hotline call office 365 support microsoft office 365 technical support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office online help Microsoft office 365 support microsoft support online microsoft contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<->s live chat with microsoft support Microsoft live customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact microsoft support contact for microsoft customer service microsoft technical assistance phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office word help Microsoft support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft word support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> technical support for microsoft microsoft offie contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office support.microsoft.com help with microsoft office office support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft Microsoft customer support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contact for microsoft microsoft Microsoft help phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft support hours office 365 support contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft office support contact microsoft customer support Microsoft 365 support Microsoft office help microsoft live chat support online microsoft email support contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> customer support Microsoft office contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> contacting microsoft customer service Microsoft 7 customer service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> phone with microsoft office microsoft account support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> office 365 support phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<->s microsoft account support Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> to microsoft microsoft tech support hours microsoft office contacts microsoft office tech support contact Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft office 21-1-3 phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> chat with microsoft tech support contact microsoft microsoft Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> customer service microsoft technical assistance contact help microsoft microsoft office contact phone microsoft help contact microsoft assistance Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft service phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> microsoft service center microsoft support telephone support microsoft live chat support microsoft microsoft sales microsoft office help and support phone for microsoft support microsoft 365 contact phone Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> 81-1- Number---------<->--------------<<.......................>>>1-888-959-6787 usa 18889596787------<->---<-> for microsoft tech support calling microsoft support microsoft Microsoft customer support Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:13:58 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:13:58 -0000 Subject: [GHC] #11912: 1=844 446 4460 POGO GAMES contact information Message-ID: <044.6d1b4d7f89c585e183175b277990af71@haskell.org> #11912: 1=844 446 4460 POGO GAMES contact information -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- 1=844 446 4460 POGO GAMES contact informationUA-75287313-1 WYNN 1-844 446 -4460 wynn POGO GAMES CONTACT Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number UA-75287313-1 {| class="wikitable" |- ! wynn POGO GAMES CONTACT tech Support Number !! 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number ?USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 wynn POGO GAMES CONTACT Desktop care phone number. Jack fell on 1844 446 4460 wynn POGO GAMES CONTACT care number and broke his crown and jill came on 1844 446 4460 wynn POGO GAMES CONTACT care helpline number. JAck has a teddy bear called 1844 446 4460 wynn POGO GAMES CONTACT care helpline phone number, and jill has a barbie doll named 1844 446 4460 wynn POGO GAMES CONTACT care Helpline. Twiinkle twinkle little star 1844 446 4460 wynn POGO GAMES CONTACT Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk number. Up above the world of 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 wynn POGO GAMES CONTACT service phone number sat on a 1844 446 4460 wynn POGO GAMES CONTACT service number, Humpty dumpty had a gret fall 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpline phone number. All the kings horses all the 1844 446 4460 wynn POGO GAMES CONTACT service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 wynn POGO GAMES CONTACT service helpline, Yes sir yes sir three 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk number one for the dame 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk. One for the little boy 1844 446 4460 wynn POGO GAMES CONTACT support phone number who lives down the lane. Johhny johhny 1844 446 4460 wynn POGO GAMES CONTACT support number, Yes papa Eating sugar 1844 446 4460 wynn POGO GAMES CONTACT support ,No papa. telling lies 1844 446 4460 wynn POGO GAMES CONTACT support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpline number. A lion and a unicorn 1844 446 4460 wynn POGO GAMES CONTACT support helpline were in the jungle 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk number so the unicorn gave birth to my child 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpdesk. wynn POGO GAMES CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . wynn POGO GAMES CONTACT ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of wynn POGO GAMES CONTACT for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into wynn POGO GAMES CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that wynn POGO GAMES CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked wynn POGO GAMES CONTACT technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit wynn POGO GAMES CONTACT Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit wynn POGO GAMES CONTACT Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit wynn POGO GAMES CONTACT tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for wynn POGO GAMES CONTACT Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit wynn POGO GAMES CONTACT Care phone number UA-75287313-11-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. wynn POGO GAMES CONTACT technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that wynn POGO GAMES CONTACT technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of wynn POGO GAMES CONTACT technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 on the url & . Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to wynn POGO GAMES CONTACT , Payroll Support phone number 1844 446 4460 , POGO GAMES CONTACT Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit wynn POGO GAMES CONTACT Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit wynn POGO GAMES CONTACT Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best wynn POGO GAMES CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for wynn POGO GAMES CONTACT 24|7.you can call any time for any blem of wynn POGO GAMES CONTACT like wynn POGO GAMES CONTACT payroll, wynn POGO GAMES CONTACT data recovery, wynn POGO GAMES CONTACT Desktop enterprises, wynn POGO GAMES CONTACT and Quikbooks . Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 wynn POGO GAMES CONTACT tech support , wynn POGO GAMES CONTACT Tech Support Phone Number USA , wynn POGO GAMES CONTACT Technical Support phone Number, wynn POGO GAMES CONTACT support phone number , wynn POGO GAMES CONTACT support phone number USA , wynn POGO GAMES CONTACT technical support number USA , wynn POGO GAMES CONTACT tech support telephone number, wynn POGO GAMES CONTACT help phone number, Intuit technical support phone number, wynn POGO GAMES CONTACT support number , Quickbook tech support phone number, Intuit wynn POGO GAMES CONTACT Desktop tech support phone number, wynn POGO GAMES CONTACT enterprise support phone number, wynn POGO GAMES CONTACT component repair tool for windows xp|vista|7 , wynn POGO GAMES CONTACT Desktop not connecting to internet. wynn POGO GAMES CONTACT unsupported system configuration, Dealing some random error message installing wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Data export or import issues, wynn POGO GAMES CONTACT failed to make an internet connection, wynn POGO GAMES CONTACT multi user mode not syncing, wynn POGO GAMES CONTACT not opening in multi-user mode, wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 .wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 . Showing error while updating company data file in wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But wynn POGO GAMES CONTACT Desktop is also a fairly complex application. This complexity means that wynn POGO GAMES CONTACT is ne to having blems like how to restore wynn POGO GAMES CONTACT auto data recovery, wynn POGO GAMES CONTACT Connection blem and connection configuration, wynn POGO GAMES CONTACT Installation Support Phone Number, wynn POGO GAMES CONTACT Company File Not Opening in Multi User Mode, wynn POGO GAMES CONTACT Keeps Disconnecting From Server, wynn POGO GAMES CONTACT Error Message Server Busy, wynn POGO GAMES CONTACT Payroll Tech Support Phone Number, wynn POGO GAMES CONTACT Data File Needs To Be Updated. wynn POGO GAMES CONTACT Data File Recovery Extention, wynn POGO GAMES CONTACT UA-75287313-1connection has been lost, wynn POGO GAMES CONTACT Desktop Installation Error 1722,1334,15215&1904, wynn POGO GAMES CONTACT Desktop error code 6000,3371, wynn POGO GAMES CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with wynn POGO GAMES CONTACT , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our wynn POGO GAMES CONTACT level 5 technicians are available for fix any queries all ducts of wynn POGO GAMES CONTACT . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of wynn POGO GAMES CONTACT Desktop . This is our best customer care service. Contact us for resolve your any wynn POGO GAMES CONTACT blems. #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington-Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #New York #Los Angeles #Chicago #Houston #Philadelphia #Phoenix #San Diego #San Antonio #Dallas #Detroit #San Jose #Indianapolis #Jacksonville #San Francisco #Columbus #Austin #Memphis #Baltimore #Charlotte #Fort Worth #Boston #Milwaukee #El Paso #Washington #Nashville-Davidson #Seattle #Denver #Las Vegas #Portland #Oklahoma City #Tucson #Albuquerque #Atlanta #Long Beach #Kansas City #Fresno #New Orleans #Cleveland #Sacramento #Mesa #Virginia Beach #Omaha #Colorado Springs #Oakland #Miami #Tulsa #Minneapolis #Honolulu #Arlington #Wichita #St. Louis #Raleigh #Santa Ana #Cincinnati #Anaheim #Tampa #Toledo #Pittsburgh #Aurora #Bakersfield #Riverside #Stockton #Corpus Christi #Lexington-Fayette #Buffalo #St. Paul #Anchorage #Newark #Plano #Fort Wayne #St. Petersburg #Glendale #Lincoln #Norfolk #Jersey City #Greensboro #Chandler #Birmingham #Henderson #Scottsdale #North Hempstead #Madison #Hialeah #Baton Rouge #Chesapeake #Orlando #Lubbock #Garland #Akron #Rochester #Chula Vista #Reno #Laredo #Durham #Modesto #Huntington #Montgomery #Boise #Arlington #San Bernardino #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:15:18 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:15:18 -0000 Subject: [GHC] #11913: KONTACT 1-844-446-4460 problems with 1-844-446-4460 pogo Message-ID: <044.4f73c1ffff930101bbbc0a7bbcee5f59@haskell.org> #11913: KONTACT 1-844-446-4460 problems with 1-844-446-4460 pogo -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- KONTACT 1-844-446-4460 problems with 1-844-446-4460 pogo {| class="wikitable" |- ! MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number !! 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number ?USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number USA || 1***844 ***446 ***4460 |} Jack and Jill went up the hill to call 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care phone number. Jack fell on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care number and broke his crown and jill came on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline number. JAck has a teddy bear called 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline phone number, and jill has a barbie doll named 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpline. Twiinkle twinkle little star 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk phone number how i wonder what you are 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk number. Up above the world of 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk, like a diamond in the sky. Humpty dumpty 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service phone number sat on a 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service number, Humpty dumpty had a gret fall 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline phone number. All the kings horses all the 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline number could not put humpty togather again. Ba ba black sheep have u 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline, Yes sir yes sir three 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk phone number bags full. One for my master 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk number one for the dame 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk. One for the little boy 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support phone number who lives down the lane. Johhny johhny 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support number, Yes papa Eating sugar 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support ,No papa. telling lies 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline phone number no papa faad thoda ha ha ha 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline number. A lion and a unicorn 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline were in the jungle 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk phone number, the lion beat the unicorn balck and brown 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk number so the unicorn gave birth to my child 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1***844 ***446 ***4460 . MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT products are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1***844 ***446 ***4460 and Tom Proulx in Mountain View, California, USA 1***844 ***446 ***4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and improved e-mail functionality through Microsoft Outlook and Outlook Express @1***844 ***446 ***4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1***844 ***446 ***4460 . Hi All, Facebook users have liked MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number 1***844 ***446 ***4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Intuit Technical Support Phone number +1***844 ***446 ***4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1***844 ***446 ***4460 is the best. Apple also has a handle for Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 . There are amazing videos of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 on youtube on their site www.youtube.com they say it is great. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline phone number 1***844 ***446 ***4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline number 1***844 ***446 ***4460 Proadvisor and Pro Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline 1***844 ***446 ***4460 and using their products. Youtube videos have been telling us the story of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 on the url & Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 has been the pioneer in the field of providing service in terms of issues related to MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , Payroll Support phone number 1***844 ***446 ***4460 , POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 and Proadvisor Tech support phone number 1***844 ***446 ***4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1***844 ***446 ***4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1***844 ***446 ***4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1***844 ***446 ***4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been promoting Tech support phone number 1***844 ***446 ***4460 stories through their platform. Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support @ 1***844 ***446 ***4460 is also one of the places that talks about Tech support phone number 1***844 ***446 ***4460 . You can pay for Tech support phone number 1***844 ***446 ***4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1***844 ***446 ***4460 as number1. Stories of Tech support phone number 1***844 ***446 ***4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1***844 ***446 ***4460 on Go or Page on craiglist.org you will know Tech support phone number 1***844 ***446 ***4460 is special. They provide best MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT 24|7.you can call any time for any problem of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT like MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprises, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support telephone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help phone number, Intuit technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number , Quickbook tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprise support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT component repair tool for windows xp|vista|7 , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not connecting to internet. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT unsupported system configuration, Dealing some random error message installing MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data export or import issues, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT failed to make an internet connection, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT multi user mode not syncing, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not opening in multi-user mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 .MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 . Showing error while updating company data file in MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is also a fairly complex application. This complexity means that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is prone to having problems like how to restore MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT auto data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Connection Problem and connection configuration, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Company File Not Opening in Multi User Mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Keeps Disconnecting From Server, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Message Server Busy, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Payroll Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Needs To Be Updated. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Recovery Extention, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT connection has been lost, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Error 1722,1334,15215&1904, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code 6000,3371, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , the consequences can be pretty dire. Luckily, many common problems are easy to fix -- once you know about them. Our MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT level 5 technicians are available for fix any queries all products of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . We provide best service of any problems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your problems of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . This is our best online customer care service. Contact us for resolve your any MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT problems. 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. Sales: 844 .446 .4040. Support: 844 -446 -4040. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone Number: 844 -446 -4040. We'd suggest trying the Support site first because it's full of usefull information: #1***844 ***446 ***4460 Intuit Customer Service Number #1***844 ***446 ***4460 Intuit Customer Care Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 Intuit Customer Support Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number #1***844 ***446 ***4460 Intuit Customer Service Phone Number #1***844 ***446 ***4460 Intuit Customer Care Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 Intuit Customer Support Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number #1***844 ***446 ***4460 Call Intuit #1***844 ***446 ***4460 Call Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact Intuit #1***844 ***446 ***4460 Contact Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Call MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Alabama,Alaska,Arizona,Arkansas,California ,USA ,Canada, New York, Los Angeles, Chicago, Houston, Philadelphia, Phoenix, San Antonio, San Diego, Dallas, San Jose, Austin, Jacksonville, San Francisco, Indianapolis, Columbus, Fort Worth, Charlotte, Detroit, El Paso, Seattle, Denver, Washington, Memphis, Boston, Nashville, Baltimore, Oklahoma City, Portland, Las Vegas, Louisville, Milwaukee, Albuquerque, Tucson, Fresno, Sacramento, Long Beach, Kansas City, Mesa, Atlanta, Virginia Beach, Omaha, Colorado Springs, Raleigh, Miami, Oakland, Minneapolis, Tulsa, Cleveland, Wichita, New Orleans, Arlington, Bakersfield, Tampa, Aurora, Honolulu, Anaheim, Santa Ana, Corpus Christi, Riverside, St. Louis, Lexington, Pittsburgh, Stockton, Anchorage, Cincinnati, Saint Paul, Greensboro, Toledo, Newark, Plano, Henderson, Lincoln, Orlando, Jersey City, Chula Vista, Buffalo, Fort Wayne, Chandler and St. Petersburg, t is very popular toll free number which provide by MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number. Call, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Help Desk Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number, #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington- Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:16:29 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:16:29 -0000 Subject: [GHC] #11914: Call us anytime 24|7 on 1844 -446 -4460 for technical support. Message-ID: <044.62d81bf6780d85ad9b2c3a01b6f082d9@haskell.org> #11914: Call us anytime 24|7 on 1844 -446 -4460 for technical support. -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Call us anytime 24|7 on 1844 -446 -4460 for technical support.UA-75287313-1 WYNN 1-844 446 -4460 wynn POGO GAMES CONTACT Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number UA-75287313-1 {| class="wikitable" |- ! wynn POGO GAMES CONTACT tech Support Number !! 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number ?USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 wynn POGO GAMES CONTACT Desktop care phone number. Jack fell on 1844 446 4460 wynn POGO GAMES CONTACT care number and broke his crown and jill came on 1844 446 4460 wynn POGO GAMES CONTACT care helpline number. JAck has a teddy bear called 1844 446 4460 wynn POGO GAMES CONTACT care helpline phone number, and jill has a barbie doll named 1844 446 4460 wynn POGO GAMES CONTACT care Helpline. Twiinkle twinkle little star 1844 446 4460 wynn POGO GAMES CONTACT Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk number. Up above the world of 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 wynn POGO GAMES CONTACT service phone number sat on a 1844 446 4460 wynn POGO GAMES CONTACT service number, Humpty dumpty had a gret fall 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpline phone number. All the kings horses all the 1844 446 4460 wynn POGO GAMES CONTACT service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 wynn POGO GAMES CONTACT service helpline, Yes sir yes sir three 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk number one for the dame 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk. One for the little boy 1844 446 4460 wynn POGO GAMES CONTACT support phone number who lives down the lane. Johhny johhny 1844 446 4460 wynn POGO GAMES CONTACT support number, Yes papa Eating sugar 1844 446 4460 wynn POGO GAMES CONTACT support ,No papa. telling lies 1844 446 4460 wynn POGO GAMES CONTACT support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpline number. A lion and a unicorn 1844 446 4460 wynn POGO GAMES CONTACT support helpline were in the jungle 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk number so the unicorn gave birth to my child 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpdesk. wynn POGO GAMES CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . wynn POGO GAMES CONTACT ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of wynn POGO GAMES CONTACT for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into wynn POGO GAMES CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that wynn POGO GAMES CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked wynn POGO GAMES CONTACT technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit wynn POGO GAMES CONTACT Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit wynn POGO GAMES CONTACT Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit wynn POGO GAMES CONTACT tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for wynn POGO GAMES CONTACT Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit wynn POGO GAMES CONTACT Care phone number UA-75287313-11-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. wynn POGO GAMES CONTACT technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that wynn POGO GAMES CONTACT technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of wynn POGO GAMES CONTACT technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 on the url & . Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to wynn POGO GAMES CONTACT , Payroll Support phone number 1844 446 4460 , POGO GAMES CONTACT Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit wynn POGO GAMES CONTACT Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit wynn POGO GAMES CONTACT Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best wynn POGO GAMES CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for wynn POGO GAMES CONTACT 24|7.you can call any time for any blem of wynn POGO GAMES CONTACT like wynn POGO GAMES CONTACT payroll, wynn POGO GAMES CONTACT data recovery, wynn POGO GAMES CONTACT Desktop enterprises, wynn POGO GAMES CONTACT and Quikbooks . Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 wynn POGO GAMES CONTACT tech support , wynn POGO GAMES CONTACT Tech Support Phone Number USA , wynn POGO GAMES CONTACT Technical Support phone Number, wynn POGO GAMES CONTACT support phone number , wynn POGO GAMES CONTACT support phone number USA , wynn POGO GAMES CONTACT technical support number USA , wynn POGO GAMES CONTACT tech support telephone number, wynn POGO GAMES CONTACT help phone number, Intuit technical support phone number, wynn POGO GAMES CONTACT support number , Quickbook tech support phone number, Intuit wynn POGO GAMES CONTACT Desktop tech support phone number, wynn POGO GAMES CONTACT enterprise support phone number, wynn POGO GAMES CONTACT component repair tool for windows xp|vista|7 , wynn POGO GAMES CONTACT Desktop not connecting to internet. wynn POGO GAMES CONTACT unsupported system configuration, Dealing some random error message installing wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Data export or import issues, wynn POGO GAMES CONTACT failed to make an internet connection, wynn POGO GAMES CONTACT multi user mode not syncing, wynn POGO GAMES CONTACT not opening in multi-user mode, wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 .wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 . Showing error while updating company data file in wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But wynn POGO GAMES CONTACT Desktop is also a fairly complex application. This complexity means that wynn POGO GAMES CONTACT is ne to having blems like how to restore wynn POGO GAMES CONTACT auto data recovery, wynn POGO GAMES CONTACT Connection blem and connection configuration, wynn POGO GAMES CONTACT Installation Support Phone Number, wynn POGO GAMES CONTACT Company File Not Opening in Multi User Mode, wynn POGO GAMES CONTACT Keeps Disconnecting From Server, wynn POGO GAMES CONTACT Error Message Server Busy, wynn POGO GAMES CONTACT Payroll Tech Support Phone Number, wynn POGO GAMES CONTACT Data File Needs To Be Updated. wynn POGO GAMES CONTACT Data File Recovery Extention, wynn POGO GAMES CONTACT UA-75287313-1connection has been lost, wynn POGO GAMES CONTACT Desktop Installation Error 1722,1334,15215&1904, wynn POGO GAMES CONTACT Desktop error code 6000,3371, wynn POGO GAMES CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with wynn POGO GAMES CONTACT , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our wynn POGO GAMES CONTACT level 5 technicians are available for fix any queries all ducts of wynn POGO GAMES CONTACT . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of wynn POGO GAMES CONTACT Desktop . This is our best customer care service. Contact us for resolve your any wynn POGO GAMES CONTACT blems. #New York, New York #Los Angeles, California #Chicago, Illinois #Houston, Texas #Philadelphia, Pennsylvania #Phoenix, Arizona #San Diego, California #San Antonio, Texas #Dallas, Texas #Detroit, Michigan #San Jose, California #Indianapolis, Indiana #Jacksonville, Florida #San Francisco, California #Columbus, Ohio #Austin, Texas #Memphis, Tennessee #Baltimore, Maryland #Charlotte, North Carolina #Fort Worth, Texas #Boston, Massachusetts #Milwaukee, Wisconsin #El Paso, Texas #Washington, District of Columbia #Nashville-Davidson, Tennessee #Seattle, Washington #Denver, Colorado #Las Vegas, Nevada #Portland, Oregon #Oklahoma City, Oklahoma #Tucson, Arizona #Albuquerque, New Mexico #Atlanta, Georgia #Long Beach, California #Kansas City, Missouri #Fresno, California #New Orleans, Louisiana #Cleveland, Ohio #Sacramento, California #Mesa, Arizona #Virginia Beach, Virginia #Omaha, Nebraska #Colorado Springs, Colorado #Oakland, California #Miami, Florida #Tulsa, Oklahoma #Minneapolis, Minnesota #Honolulu, Hawaii #Arlington, Texas #Wichita, Kansas #St. Louis, Missouri #Raleigh, North Carolina #Santa Ana, California #Cincinnati, Ohio #Anaheim, California #Tampa, Florida #Toledo, Ohio #Pittsburgh, Pennsylvania #Aurora, Colorado #Bakersfield, California #Riverside, California #Stockton, California #Corpus Christi, Texas #Lexington-Fayette, Kentucky #Buffalo, New York #St. Paul, Minnesota #Anchorage, Alaska #Newark, New Jersey #Plano, Texas #Fort Wayne, Indiana #St. Petersburg, Florida #Glendale, Arizona #Lincoln, Nebraska #Norfolk, Virginia #Jersey City, New Jersey #Greensboro, North Carolina #Chandler, Arizona #Birmingham, Alabama #Henderson, Nevada #Scottsdale, Arizona #North Hempstead, New York #Madison, Wisconsin #Hialeah, Florida #Baton Rouge, Louisiana #Chesapeake, Virginia #Orlando, Florida #Lubbock, Texas #Garland, Texas #Akron, Ohio #Rochester, New York #Chula Vista, California #Reno, Nevada #Laredo, Texas #Durham, North Carolina #Modesto, California #Huntington, New York #Montgomery, Alabama #Boise, Idaho #Arlington, Virginia #San Bernardino, California #New York #Los Angeles #Chicago #Houston #Philadelphia #Phoenix #San Diego #San Antonio #Dallas #Detroit #San Jose #Indianapolis #Jacksonville #San Francisco #Columbus #Austin #Memphis #Baltimore #Charlotte #Fort Worth #Boston #Milwaukee #El Paso #Washington #Nashville-Davidson #Seattle #Denver #Las Vegas #Portland #Oklahoma City #Tucson #Albuquerque #Atlanta #Long Beach #Kansas City #Fresno #New Orleans #Cleveland #Sacramento #Mesa #Virginia Beach #Omaha #Colorado Springs #Oakland #Miami #Tulsa #Minneapolis #Honolulu #Arlington #Wichita #St. Louis #Raleigh #Santa Ana #Cincinnati #Anaheim #Tampa #Toledo #Pittsburgh #Aurora #Bakersfield #Riverside #Stockton #Corpus Christi #Lexington-Fayette #Buffalo #St. Paul #Anchorage #Newark #Plano #Fort Wayne #St. Petersburg #Glendale #Lincoln #Norfolk #Jersey City #Greensboro #Chandler #Birmingham #Henderson #Scottsdale #North Hempstead #Madison #Hialeah #Baton Rouge #Chesapeake #Orlando #Lubbock #Garland #Akron #Rochester #Chula Vista #Reno #Laredo #Durham #Modesto #Huntington #Montgomery #Boise #Arlington #San Bernardino #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #Wyoming -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:19:01 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:19:01 -0000 Subject: [GHC] #11915: CALL_NOW@@+1800-213-2171 microsoft outlook 2010 support phone number@@1 microsoft outlook customer support@@call outlook 365 support | microsoft outlook 365 login@@ microsoft outlook 365 technical support phone number Message-ID: <050.8f41f5d124083ce8d7f4b86c30856ab9@haskell.org> #11915: CALL_NOW@@+1800-213-2171 microsoft outlook 2010 support phone number@@1 microsoft outlook customer support@@call outlook 365 support | microsoft outlook 365 login@@ microsoft outlook 365 technical support phone number -------------------------------------+------------------------------------- Reporter: dsvgfdsgfds | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Call 1800 213 2171 Microsoft office 365 technical support number Call 1800 213 2171 Microsoft office 365 technical support phone Call 1800 213 2171 Microsoft office 365 technical support phone number Call 1800 213 2171 Microsoft office 365 technical support telephone Call 1800 213 2171 Microsoft office 365 technical support telephone number Call 1800 213 2171 Microsoft office 365 technical support contact Call 1800 213 2171 Microsoft office 365 technical support contact number Call 1800 213 2171 Microsoft office 365 technical support help Call 1800 213 2171 Microsoft office 365 technical support help number Call 1800 213 2171 Microsoft office 365 technical support helpline Call 1800 213 2171 Microsoft office 365 technical support helpline number Call 1800 213 2171 Microsoft office 365 technical support helpline phone Call 1800 213 2171 Microsoft office 365 technical support helpline phone number Call 1800 213 2171 Microsoft office 365 technical support helpline phone number usa Call 1800 213 2171 Microsoft office 365 technical support helpline telephone number Call 1800 213 2171 Microsoft office 365 technical support helpline telephone Call 1800 213 2171 Microsoft office 365 technical support helpdesk Call 1800 213 2171 Microsoft office 365 technical support helpdesk number Call 1800 213 2171 Microsoft office 365 technical support toll free Call 1800 213 2171 Microsoft office 365 technical support toll free number Call 1800 213 2171 Microsoft office 365 technical support toll free phone Call 1800 213 2171 Microsoft office 365 technical support toll free phone number Call 1800 213 2171 Microsoft office 365 technical support toll free telephone Call 1800 213 2171 Microsoft office 365 technical support toll free telephone number Call 1800 213 2171 Microsoft office 365 technical support toll free telephone number usa Call 1800 213 2171 Microsoft office 365 tech support number Call 1800 213 2171 Microsoft office 365 tech support phone Call 1800 213 2171 Microsoft office 365 tech support phone number Call 1800 213 2171 Microsoft office 365 tech support phone number usa Call 1800 213 2171 Microsoft office 365 tech support telephone Call 1800 213 2171 Microsoft office 365 tech support telephone number Call 1800 213 2171 Microsoft office 365 tech support contact Call 1800 213 2171 Microsoft office 365 tech support contact number Call 1800 213 2171 Microsoft office 365 tech support contact number usa Call 1800 213 2171 Microsoft office 365 tech support help Call 1800 213 2171 Microsoft office 365 tech support help number Call 1800 213 2171 Microsoft office 365 tech support help number usa Call 1800 213 2171 Microsoft office 365 tech support helpline Call 1800 213 2171 Microsoft office 365 tech support helpline number Call 1800 213 2171 Microsoft office 365 tech support helpline phone Call 1800 213 2171 Microsoft office 365 tech support helpline phone number Call 1800 213 2171 Microsoft office 365 tech support helpline telephone Call 1800 213 2171 Microsoft office 365 tech support helpline telephone number Call 1800 213 2171 Microsoft office 365 tech support helpdesk Call 1800 213 2171 Microsoft office 365 tech support helpdesk number Call 1800 213 2171 Microsoft office 365 tech support helpdesk number usa Call 1800 213 2171 Microsoft office 365 tech support toll free Call 1800 213 2171 Microsoft office 365 tech support toll free number Call 1800 213 2171 Microsoft office 365 tech support toll free number usa Call 1800 213 2171 Microsoft office 365 tech support toll free phone Call 1800 213 2171 Microsoft office 365 tech support toll free phone number Call 1800 213 2171 Microsoft office 365 tech support toll free telephone Call 1800 213 2171 Microsoft office 365 tech support toll free telephone number Call 1800 213 2171 Microsoft office 365 tech support toll free telephone number usa Call 1800 213 2171 Microsoft office 365 customer support number Call 1800 213 2171 Microsoft office 365 customer support number usa Call 1800 213 2171 Microsoft office 365 customer support phone Call 1800 213 2171 Microsoft office 365 customer support phone number Call 1800 213 2171 Microsoft office 365 customer support phone number usa Call 1800 213 2171 Microsoft office 365 customer support telephone Call 1800 213 2171 Microsoft office 365 customer support telephone number Call 1800 213 2171 Microsoft office 365 customer support telephone number usa Call 1800 213 2171 Microsoft office 365 customer support help Call 1800 213 2171 Microsoft office 365 customer support help number Call 1800 213 2171 Microsoft office 365 customer support help number usa Call 1800 213 2171 Microsoft office 365 customer support helpdesk Call 1800 213 2171 Microsoft office 365 customer support helpdesk number Call 1800 213 2171 Microsoft office 365 customer support helpdesk number usa Call 1800 213 2171 Microsoft office 365 customer support helpline Call 1800 213 2171 Microsoft office 365 customer support helpline number Call 1800 213 2171 Microsoft office 365 customer support helpline number usa Call 1800 213 2171 Microsoft office 365 customer support helpline phone Call 1800 213 2171 Microsoft office 365 customer support helpline phone number Call 1800 213 2171 Microsoft office 365 customer support helpline telephone Call 1800 213 2171 Microsoft office 365 customer support helpline telephone number Call 1800 213 2171 Microsoft office 365 customer support helpline telephone number usa Call 1800 213 2171 Microsoft office 365 customer support toll free Call 1800 213 2171 Microsoft office 365 customer support toll free number Call 1800 213 2171 Microsoft office 365 customer support toll free number usa Call 1800 213 2171 Microsoft office 365 customer support toll free phone Call 1800 213 2171 Microsoft office 365 customer support toll free phone number Call 1800 213 2171 Microsoft office 365 customer support toll free telephone Call 1800 213 2171 Microsoft office 365 customer support toll free telephone number Call 1800 213 2171 Microsoft office 365 customer support toll free telephone number usa Call 1800 213 2171 Microsoft office 365 customer service number Call 1800 213 2171 Microsoft office 365 customer service number usa Call 1800 213 2171 Microsoft office 365 customer service phone Call 1800 213 2171 Microsoft office 365 customer service phone number Call 1800 213 2171 Microsoft office 365 customer service phone number usa Call 1800 213 2171 Microsoft office 365 customer service telephone Call 1800 213 2171 Microsoft office 365 customer service telephone number Call 1800 213 2171 Microsoft office 365 customer service telephone number usa Call 1800 213 2171 Microsoft office 365 customer service contact Call 1800 213 2171 Microsoft office 365 customer service contact number Call 1800 213 2171 Microsoft office 365 customer service contact number usa Call 1800 213 2171 Microsoft office 365 customer service calls Call 1800 213 2171 Microsoft office 365 customer service help Call 1800 213 2171 Microsoft office 365 customer service help number Call 1800 213 2171 Microsoft office 365 customer service help number usa Call 1800 213 2171 Microsoft office 365 customer service helpdesk Call 1800 213 2171 Microsoft office 365 customer service helpdesk number Call 1800 213 2171 Microsoft office 365 customer service helpdesk number usa Call 1800 213 2171 Microsoft office 365 customer service helpline Call 1800 213 2171 Microsoft office 365 customer service helpline number Call 1800 213 2171 Microsoft office 365 customer service helpline phone Call 1800 213 2171 Microsoft office 365 customer service helpline phone number Call 1800 213 2171 Microsoft office 365 customer service helpline telephone Call 1800 213 2171 Microsoft office 365 customer service helpline telephone number Call 1800 213 2171 Microsoft office 365 customer service helpline telephone number usa Call 1800 213 2171 Microsoft office 365 customer care number Call 1800 213 2171 Microsoft office 365 customer care number usa Call 1800 213 2171 Microsoft office 365 customer care phone Call 1800 213 2171 Microsoft office 365 customer care phone number Call 1800 213 2171 Microsoft office 365 customer care phone number usa Call 1800 213 2171 Microsoft office 365 customer care telephone Call 1800 213 2171 Microsoft office 365 customer care telephone number Call 1800 213 2171 Microsoft office 365 customer care telephone number usa Call 1800 213 2171 Microsoft office 365 customer care calls Call 1800 213 2171 Microsoft office 365 customer care contact Call 1800 213 2171 Microsoft office 365 customer care contact number Call 1800 213 2171 Microsoft office 365 customer care contact number usa Call 1800 213 2171 Microsoft office 365 customer care help Call 1800 213 2171 Microsoft office 365 customer care help number Call 1800 213 2171 Microsoft office 365 customer care help number usa Call 1800 213 2171 Microsoft office 365 customer care helpdesk Call 1800 213 2171 Microsoft office 365 customer care helpdesk number Call 1800 213 2171 Microsoft office 365 customer care helpdesk number usa Call 1800 213 2171 Microsoft office 365 customer care helpline Call 1800 213 2171 Microsoft office 365 customer care helpline number Call 1800 213 2171 Microsoft office 365 customer care helpline number usa Call 1800 213 2171 Microsoft office 365 customer care helpline phone Call 1800 213 2171 Microsoft office 365 customer care helpline phone number Call 1800 213 2171 Microsoft office 365 customer care helpline telephone Call 1800 213 2171 Microsoft office 365 customer care helpline telephone number Call 1800 213 2171 Microsoft office 365 customer care helpline telephone number usa Call 1800 213 2171 Microsoft office 365 customer care toll free Call 1800 213 2171 Microsoft office 365 customer care toll free number Call 1800 213 2171 Microsoft office 365 customer care toll free number usa Call 1800 213 2171 Microsoft office 365 customer care toll free phone Call 1800 213 2171 Microsoft office 365 customer care toll free phone number Call 1800 213 2171 Microsoft office 365 customer care toll free telephone Call 1800 213 2171 Microsoft office 365 customer care toll free telephone number Call 1800 213 2171 Microsoft office 365 customer care toll free telephone number usa Call 1800 213 2171 Microsoft office 365 technical issues number Call 1800 213 2171 Microsoft office 365 technical issues number usa Call 1800 213 2171 Microsoft office 365 technical issues phone Call 1800 213 2171 Microsoft office 365 technical issues phone number Call 1800 213 2171 Microsoft office 365 technical issues phone number usa Call 1800 213 2171 Microsoft office 365 technical issues telephone Call 1800 213 2171 Microsoft office 365 technical issues telephone number Call 1800 213 2171 Microsoft office 365 technical issues telephone number usa Call 1800 213 2171 Microsoft office 365 technical issues calls Call 1800 213 2171 Microsoft office 365 technical issues contacts Call 1800 213 2171 Microsoft office 365 technical issues contact number Call 1800 213 2171 Microsoft office 365 technical issues contact number usa Call 1800 213 2171 Microsoft office 365 technical issues help Call 1800 213 2171 Microsoft office 365 technical issues help number Call 1800 213 2171 Microsoft office 365 technical issues help number usa Call 1800 213 2171 Microsoft office 365 technical issues helpdesk Call 1800 213 2171 Microsoft office 365 technical issues helpdesk number Call 1800 213 2171 Microsoft office 365 technical issues helpdesk number usa Call 1800 213 2171 Microsoft office 365 technical issues helpline Call 1800 213 2171 Microsoft office 365 technical issues helpline number Call 1800 213 2171 Microsoft office 365 technical issues helpline phone Call 1800 213 2171 Microsoft office 365 technical issues helpline phone number Call 1800 213 2171 Microsoft office 365 technical issues helpline phone number usa Call 1800 213 2171 Microsoft office 365 technical issues helpline telephone Call 1800 213 2171 Microsoft office 365 technical issues helpline telephone number Call 1800 213 2171 Microsoft office 365 technical issues helpline telephone number usa Call 1800 213 2171 Microsoft office 365 technical issues toll free Call 1800 213 2171 Microsoft office 365 technical issues toll free number Call 1800 213 2171 Microsoft office 365 technical issues toll free number usa Call 1800 213 2171 Microsoft office 365 technical issues toll free phone Call 1800 213 2171 Microsoft office 365 technical issues toll free phone number Call 1800 213 2171 Microsoft office 365 technical issues toll free telephone Call 1800 213 2171 Microsoft office 365 technical issues toll free telephone number Call 1800 213 2171 Microsoft office 365 technical issues toll free telephone number usa Call 1800 213 2171 Microsoft office 365 technical problem number Call 1800 213 2171 Microsoft office 365 technical problem number usa Call 1800 213 2171 Microsoft office 365 technical problem phone Call 1800 213 2171 Microsoft office 365 technical problem phone number Call 1800 213 2171 Microsoft office 365 technical problem phone number usa Call 1800 213 2171 Microsoft office 365 technical problem telephone Call 1800 213 2171 Microsoft office 365 technical problem telephone number Call 1800 213 2171 Microsoft office 365 technical problem telephone number usa Call 1800 213 2171 Microsoft office 365 technical problem calls Call 1800 213 2171 Microsoft office 365 technical problem contact Call 1800 213 2171 Microsoft office 365 technical problem contact number Call 1800 213 2171 Microsoft office 365 technical problem contact number usa Call 1800 213 2171 Microsoft office 365 technical problem help Call 1800 213 2171 Microsoft office 365 technical problem help number Call 1800 213 2171 Microsoft office 365 technical problem help desk Call 1800 213 2171 Microsoft office 365 technical problem help desk number Call 1800 213 2171 Microsoft office 365 technical problem helpline Call 1800 213 2171 Microsoft office 365 technical problem helpline number Call 1800 213 2171 Microsoft office 365 technical problem helpline phone Call 1800 213 2171 Microsoft office 365 technical problem helpline phone number Call 1800 213 2171 Microsoft office 365 technical problem helpline phone number usa Call 1800 213 2171 Microsoft office 365 technical problem helpline telephone Call 1800 213 2171 Microsoft office 365 technical problem helpline telephone number Call 1800 213 2171 Microsoft office 365 technical problem helpline telephone number usa Call 1800 213 2171 Microsoft office 365 technical problem toll free Call 1800 213 2171 Microsoft office 365 technical problem toll free number Call 1800 213 2171 Microsoft office 365 technical problem toll free number usa Call 1800 213 2171 Microsoft office 365 technical problem toll free phone Call 1800 213 2171 Microsoft office 365 technical problem toll free phone number Call 1800 213 2171 Microsoft office 365 technical problem toll free phone number usa Call 1800 213 2171 Microsoft office 365 technical problem toll free telephone Call 1800 213 2171 Microsoft office 365 technical problem toll free telephone number Call 1800 213 2171 Microsoft office 365 technical problem toll free telephone number usa -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:23:32 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:23:32 -0000 Subject: [GHC] #11918: Need Help & Support Call 1800-213-2171 Printer Technical Support Phone Number? Message-ID: <050.6bd253fe8d4350bf2bc18d3ab7b175e0@haskell.org> #11918: Need Help & Support Call 1800-213-2171 Printer Technical Support Phone Number? -------------------------------------+------------------------------------- Reporter: dsvgfdsgfds | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- office 365 phone support office 365 technical support number office 2013 technical support office 2013 technical support number microsoft office 2013 technical support office 365 telephone support office 365 technical support phone office 2013 technical number office 2013 technical support number usa microsoft office 2013 technical number office 365 call support office 365 technical support phone number office 2013 technical phone office 2013 technical support phone microsoft office 2013 technical phone office 365 technical support office 365 technical support telephone office 2013 technical telephone office 2013 technical support phone number microsoft office 2013 technical telephone office 365 technical phone office 365 technical support telephone number office 2013 technical calls office 2013 technical support phone number usa microsoft office 2013 technical calls office 365 technical number office 365 technical support contact office 2013 technical contact office 2013 technical support telephone microsoft office 2013 technical contact office 365 technical telephone office 365 technical support contact number office 2013 technical help office 2013 technical support telephone number microsoft office 2013 technical help office 365 technical help office 365 technical support help office 2013 technical help desk office 2013 technical support telephone number usa microsoft office 2013 technical helpdesk office 365 technical helpline office 365 technical support help number office 2013 technical helpline office 2013 technical support calls microsoft office 2013 technical helpline office 365 technical helpdesk office 365 technical support helpline office 2013 technical toll free office 2013 technical support calls usa microsoft office 2013 technical toll free office 365 technical contact office 365 technical support helpline number office 2013 technical toll free usa office 2013 technical support contact microsoft office 2013 technical toll free usa office 365 technical toll free office 365 technical support helpline phone office 2013 tech support office 2013 technical support contact number microsoft office 2013 tech support office 365 technical toll free usa office 365 technical support helpline phone number office 2013 tech number office 2013 technical support help microsoft office 2013 tech number office 365 tech support office 365 technical support helpline phone number usa office 2013 tech phone office 2013 technical support help number microsoft office 2013 tech phone office 365 tech number office 365 technical support helpline telephone number office 2013 tech telephone office 2013 technical support help number usa microsoft office 2013 tech telephone office 365 tech number usa office 365 technical support helpline telephone office 2013 tech calls office 2013 technical support helpdesk microsoft office 2013 tech calls office 365 tech phone office 365 technical support helpdesk office 2013 tech contact office 2013 technical support helpdesk number microsoft office 2013 tech contact office 365 tech telephone office 365 technical support helpdesk number office 2013 tech help office 2013 technical support helpdesk number usa microsoft office 2013 tech help office 365 tech contact office 365 technical support toll free office 2013 tech helpdesk office 2013 technical support helpline microsoft office 2013 tech helpdesk office 365 tech help office 365 technical support toll free number office 2013 tech helpline office 2013 technical support helpline number microsoft office 2013 tech helpline office 365 tech helpdesk office 365 technical support toll free phone office 2013 tech toll free office 2013 technical support helpline number usa microsoft office 2013 tech toll free office 365 tech helpline office 365 technical support toll free phone number office 2013 tech toll free usa office 2013 technical support helpline phone microsoft office 2013 tech toll free usa office 365 tech calls office 365 technical support toll free telephone office 2013 customer support office 2013 technical support helpline phone number microsoft office 2013 customer service office 365 tech toll free office 365 technical support toll free telephone number office 2013 customer service office 2013 technical support helpline phone number usa microsoft office 2013 customer support office 365 tech toll free usa office 365 technical support toll free telephone number usa office 2013 customer care office 2013 technical support helpline telephone microsoft office 2013 customer care office 365 customer support office 365 tech support number office 2013 customer number office 2013 technical support helpline telephone number microsoft office 2013 customer number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:24:16 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:24:16 -0000 Subject: [GHC] #11919: USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.S Message-ID: <044.9d46d1dd7b1ca341f40126beee5e3f4a@haskell.org> #11919: USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.S -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.Shttp://upstart.ubuntu.com/wiki/Obama%2B1844 %20444 %20444 0 %20Turbotax%20Helpdesk%20number,%20helpdesk%20phone%20number. #Alabama #Alaska #Arizona #Arkansas #California #Colorado #Connecticut #Delaware #Florida #Georgia #Hawaii #Idaho #Illinois #Indiana #Iowa #Kansas #Kentucky #Louisiana #Maine #Maryland #Massachusetts #Michigan #Minnesota #Mississippi #Missouri #Montana #Nebraska #Nevada #New Hampshire #New Jersey #New Mexico #New York #North Carolina #North Dakota #Ohio #Oklahoma #Oregon #Pennsylvania #Rhode Island #South Carolina #South Dakota #Tennessee #Texas #Utah #Vermont #Virginia #Washington #West Virginia #Wisconsin #WyomingP.O.G.O. G.A.M.E.S . ***((((1 . 844 . 4 . 46. 44 . 6 0 ...... )))..P.O.G.O. G.A.M.E.S . customer support phone number usa https://www.facebook.com/P.O.G.O. G.A.M.E.S . -Customer-Care- Helpline-1-844 -446 -446 0 -17414 19149384 992/ https://www.facebook.com/P.O.G.O. G.A.M.E.S . -Customer-Care- Helpline-1-844 -446 -446 0 -17414 19149384 992/ https://www.facebook.com/P.O.G.O. G.A.M.E.S . -Customer-Care- Helpline-1-844 -446 -446 0 -17414 19149384 992/ P.O.G.O. G.A.M.E.S . ***((((1 . 844 . 4 . 46. 44 . 6 0 ........ )))..P.O.G.O. G.A.M.E.S . customer support phone number usa P.O.G.O. G.A.M.E.S . ***((((1 . 844 . 4 . 46. 44 . 6 0 ........ )))..P.O.G.O. G.A.M.E.S . customer support phone number usa P.O.G.O. G.A.M.E.S . ... .... ..customer.. service......... Phon..e number..... USA .... ..customer ..support.. toll ..free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. support C@!!-???++1 844 444 444 0 )))P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA -CANADA C@!!-???++1 844 444 444 0 )))dial)))) P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA $CANADA USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.S . ... .. customer service....... Phone....... number... USA .. customer support toll free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer number... for P.O.G.O. G.A.M.E.S . ... P.O.G.O. G.A.M.E.S . ... .. tech support number..., P.O.G.O. G.A.M.E.S . ... ..s phone....... number..., phone....... number... for P.O.G.O. G.A.M.E.S . ... ..s P.O.G.O. G.A.M.E.S . ... .. customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... customer support telephone....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer service....... phone....... number..., P.O.G.O. G.A.M.E.S . ... .. helpline phone....... number..., P.O.G.O. G.A.M.E.S . ... support number... usa P.O.G.O. G.A.M.E.S . ... 844 number..., P.O.G.O. G.A.M.E.S . ... customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... .. technical support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s customer service....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer care.. number..., P.O.G.O. G.A.M.E.S . ... ..s contact number... USA~ P.O.G.O. G.A.M.E.S . ... .. +1844 444 444 0 customer care.. phone....... number... P.O.G.O. G.A.M.E.S . ... .. customer care.. +1844 444 444 0 @ toll free number... usa P.O.G.O. G.A.M.E.S . ... support no? P.O.G.O. G.A.M.E.S . ... .. service....... 1-844 -446 -446 0 center number..., P.O.G.O. G.A.M.E.S . ... customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... telephone....... number..., P.O.G.O. G.A.M.E.S . ... .. help number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... service....... number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... telephone....... number..., P.O.G.O. G.A.M.E.S . ... help number..., P.O.G.O. G.A.M.E.S . ... helpline number..., P.O.G.O. G.A.M.E.S . ... .. tech support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s service....... center number..., P.O.G.O. G.A.M.E.S . ... customer care.. number..., P.O.G.O. G.A.M.E.S . ... support Canada phone....... number... P.O.G.O. G.A.M.E.S . ... canada support number..., P.O.G.O. G.A.M.E.S . ... phone....... number... canada, P.O.G.O. G.A.M.E.S . ... canada phone....... number... P.O.G.O. G.A.M.E.S . ... service....... center contact number..., P.O.G.O. G.A.M.E.S . ... canada contact number..., P.O.G.O. G.A.M.E.S . ... contact number... canada P.O.G.O. G.A.M.E.S . ... service....... toll free number..., P.O.G.O. G.A.M.E.S . ... customer care..P.O.G.O. G.A.M.E.S . ... .... ..customer.. service......... Phon..e number..... USA .... ..customer ..support.. toll ..free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. support C@!!-???++1 844 444 444 0 )))P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA -CANADA C@!!-???++1 844 444 444 0 )))dial)))) P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA $CANADA USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.S . ... .. customer service....... Phone....... number... USA .. customer support toll free number...)@!! https://www.facebook.com/P.O.G.O. G.A.M.E.S . -Customer-Care-Helpline-1-844 -446 -446 0 -17414 19149384 992/ P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer number... for P.O.G.O. G.A.M.E.S . ... P.O.G.O. G.A.M.E.S . ... .. tech support number..., P.O.G.O. G.A.M.E.S . ... ..s phone....... number..., phone....... number... for P.O.G.O. G.A.M.E.S . ... ..s P.O.G.O. G.A.M.E.S . ... .. customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... customer support telephone....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer service....... phone....... number..., P.O.G.O. G.A.M.E.S . ... .. helpline phone....... number..., P.O.G.O. G.A.M.E.S . ... support number... usa P.O.G.O. G.A.M.E.S . ... 844 number..., P.O.G.O. G.A.M.E.S . ... customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... .. technical support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s customer service....... number..., https://www.facebook.com/P.O.G.O. G.A.M.E.S . -Customer-Care- Helpline-1-844 -446 -446 0 -17414 19149384 992/ P.O.G.O. G.A.M.E.S . ... ..s customer care.. number..., P.O.G.O. G.A.M.E.S . ... ..s contact number... USA~ P.O.G.O. G.A.M.E.S . ... .. +1844 444 444 0 customer care.. phone....... number... P.O.G.O. G.A.M.E.S . ... .. customer care.. +1844 444 444 0 @ toll free number... usa P.O.G.O. G.A.M.E.S . ... support no? P.O.G.O. G.A.M.E.S . ... .. service....... 1-844 -446 -446 0 center number..., P.O.G.O. G.A.M.E.S . ... customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... telephone....... number..., P.O.G.O. G.A.M.E.S . ... .. help number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... service....... number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... telephone....... number..., P.O.G.O. G.A.M.E.S . ... help number..., P.O.G.O. G.A.M.E.S . ... helpline number..., P.O.G.O. G.A.M.E.S . ... .. tech support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s service....... center number..., P.O.G.O. G.A.M.E.S . ... customer care.. number..., P.O.G.O. G.A.M.E.S . ... support Canada phone....... number... P.O.G.O. G.A.M.E.S . ... canada support number..., P.O.G.O. G.A.M.E.S . ... phone....... number... canada, P.O.G.O. G.A.M.E.S . ... canada phone....... number... P.O.G.O. G.A.M.E.S . ... service....... center contact number..., P.O.G.O. G.A.M.E.S . ... canada contact number..., P.O.G.O. G.A.M.E.S . ... contact number... canada P.O.G.O. G.A.M.E.S . ... service....... toll free number..., P.O.G.O. G.A.M.E.S . ... customer care..P.O.G.O. G.A.M.E.S . ... .... ..customer.. service......... Phon..e number..... USA .... ..customer ..support.. toll ..free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer service....... phone....... number... https://www.facebook.com/P.O.G.O. G.A.M.E.S . -Customer-Care- Helpline-1-844 -446 -446 0 -17414 19149384 992/ P.O.G.O. G.A.M.E.S . ... .. support C@!!-???++1 844 444 444 0 )))P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA -CANADA C@!!-???++1 844 444 444 0 )))dial)))) P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA $CANADA USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.S . ... .. customer service....... Phone....... number... USA .. customer support toll free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer number... for P.O.G.O. G.A.M.E.S . ... P.O.G.O. G.A.M.E.S . ... .. tech support number..., P.O.G.O. G.A.M.E.S . ... ..s phone....... number..., phone....... number... for P.O.G.O. G.A.M.E.S . ... ..s P.O.G.O. G.A.M.E.S . ... .. customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... customer support telephone....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer service....... phone....... number..., P.O.G.O. G.A.M.E.S . ... .. helpline phone....... number..., P.O.G.O. G.A.M.E.S . ... support number... usa P.O.G.O. G.A.M.E.S . ... 844 number..., P.O.G.O. G.A.M.E.S . ... customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... .. technical support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s customer service....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer care.. number..., P.O.G.O. G.A.M.E.S . ... ..s contact number... USA~ P.O.G.O. G.A.M.E.S . ... .. +1844 444 444 0 customer care.. phone....... number... P.O.G.O. G.A.M.E.S . ... .. customer care.. +1844 444 444 0 @ toll free number... usa P.O.G.O. G.A.M.E.S . ... support no? P.O.G.O. G.A.M.E.S . ... .. service....... 1-844 -446 -446 0 center number..., P.O.G.O. G.A.M.E.S . ... customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... telephone....... number..., P.O.G.O. G.A.M.E.S . ... .. help number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... service....... number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... telephone....... number..., P.O.G.O. G.A.M.E.S . ... help number..., P.O.G.O. G.A.M.E.S . ... helpline number..., P.O.G.O. G.A.M.E.S . ... .. tech support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s service....... center number..., P.O.G.O. G.A.M.E.S . ... customer care.. number..., P.O.G.O. G.A.M.E.S . ... support Canada phone....... number... P.O.G.O. G.A.M.E.S . ... canada support number..., P.O.G.O. G.A.M.E.S . ... phone....... number... canada, P.O.G.O. G.A.M.E.S . ... canada phone....... number... P.O.G.O. G.A.M.E.S . ... service....... center contact number..., P.O.G.O. G.A.M.E.S . ... canada contact number..., P.O.G.O. G.A.M.E.S . ... contact number... canada P.O.G.O. G.A.M.E.S . ... service....... toll free number..., P.O.G.O. G.A.M.E.S . ... customer care.. P.O.G.O. G.A.M.E.S . ***((((1 . 844 . 4 . 46. 44 . 6 0 ........ )))..P.O.G.O. G.A.M.E.S . customer support phone number usa https://www.facebook.com/P.O.G.O. G.A.M.E.S . -Customer-Care- Helpline-1-844 -446 -446 0 -17414 19149384 992/ P.O.G.O. G.A.M.E.S . ***((((1 . 844 . 4 . 46. 44 . 6 0 ........ )))..P.O.G.O. G.A.M.E.S . customer support phone number usa P.O.G.O. G.A.M.E.S . ***((((1 . 844 . 4 . 46. 44 . 6 0 ........ )))..P.O.G.O. G.A.M.E.S . customer support phone number usa P.O.G.O. G.A.M.E.S . ... .... ..customer.. service......... Phon..e number..... USA .... ..customer ..support.. toll ..free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. support C@!!-???++1 844 444 444 0 )))P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA -CANADA C@!!-???++1 844 444 444 0 )))dial)))) P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA $CANADA USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.S . ... .. customer service....... Phone....... number... USA .. customer support toll free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer number... for P.O.G.O. G.A.M.E.S . ... P.O.G.O. G.A.M.E.S . ... .. tech support number..., P.O.G.O. G.A.M.E.S . ... ..s phone....... number..., phone....... number... for P.O.G.O. G.A.M.E.S . ... ..s P.O.G.O. G.A.M.E.S . ... .. customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... customer support telephone....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer service....... phone....... number..., P.O.G.O. G.A.M.E.S . ... .. helpline phone....... number..., P.O.G.O. G.A.M.E.S . ... support number... usa P.O.G.O. G.A.M.E.S . ... 844 number..., P.O.G.O. G.A.M.E.S . ... customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... .. technical support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s customer service....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer care.. number..., P.O.G.O. G.A.M.E.S . ... ..s contact number... USA~ P.O.G.O. G.A.M.E.S . ... .. +1844 444 444 0 customer care.. phone....... number... P.O.G.O. G.A.M.E.S . ... .. customer care.. +1844 444 444 0 @ toll free number... usa P.O.G.O. G.A.M.E.S . ... support no? P.O.G.O. G.A.M.E.S . ... .. service....... 1-844 -446 -446 0 center number..., P.O.G.O. G.A.M.E.S . ... customer service....... number... usa, https://www.youtube.com/watch?v=rTuGtdQCTTc https://www.youtube.com/watch?v=0HuwWXjuZR0 https://www.youtube.com/watch?v=8NClb4 8gmY8 https://www.youtube.com/watch?v=GhQTM3I4Qlc https://www.youtube.com/watch?v=a1Y5YhgvEHM https://www.youtube.com/watch?v=8NClb4 8gmY8 https://www.youtube.com/watch?v=GhQTM3I4QlcP.O.G.O. G.A.M.E.S . ... telephone....... number..., P.O.G.O. G.A.M.E.S . ... .. help number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... service....... number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... telephone....... number..., P.O.G.O. G.A.M.E.S . ... help number..., P.O.G.O. G.A.M.E.S . ... helpline number..., P.O.G.O. G.A.M.E.S . ... .. tech support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s service....... center number..., P.O.G.O. G.A.M.E.S . ... customer care.. number..., P.O.G.O. G.A.M.E.S . ... support Canada phone....... number... P.O.G.O. G.A.M.E.S . ... canada support number..., P.O.G.O. G.A.M.E.S . ... phone....... number... canada, P.O.G.O. G.A.M.E.S . ... canada phone....... number... P.O.G.O. G.A.M.E.S . ... service....... center contact number..., P.O.G.O. G.A.M.E.S . ... canada contact number..., P.O.G.O. G.A.M.E.S . ... contact number... canada P.O.G.O. G.A.M.E.S . ... service....... toll free number..., P.O.G.O. G.A.M.E.S . ... customer care..P.O.G.O. G.A.M.E.S . ... .... ..customer.. service......... Phon..e number..... USA .... ..customer ..support.. toll ..free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. support C@!!-???++1 844 444 444 0 )))P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA -CANADA C@!!-???++1 844 444 444 0 )))dial)))) P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA $CANADA USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.S . ... .. customer service....... Phone....... number... USA .. customer support toll free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer number... for P.O.G.O. G.A.M.E.S . ... P.O.G.O. G.A.M.E.S . ... .. tech support number..., P.O.G.O. G.A.M.E.S . ... ..s phone....... number..., phone....... number... for P.O.G.O. G.A.M.E.S . ... ..s P.O.G.O. G.A.M.E.S . ... .. customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... customer support telephone....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer service....... phone....... number..., P.O.G.O. G.A.M.E.S . ... .. helpline phone....... number..., P.O.G.O. G.A.M.E.S . ... support number... usa P.O.G.O. G.A.M.E.S . ... 844 number..., P.O.G.O. G.A.M.E.S . ... customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... .. technical support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s customer service....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer care.. number..., P.O.G.O. G.A.M.E.S . ... ..s contact number... USA~ P.O.G.O. G.A.M.E.S . ... .. +1844 444 444 0 customer care.. phone....... number... P.O.G.O. G.A.M.E.S . ... .. customer care.. +1844 444 444 0 @ toll free number... usa P.O.G.O. G.A.M.E.S . ... support no? P.O.G.O. G.A.M.E.S . ... .. service....... 1-844 -446 -446 0 center number..., P.O.G.O. G.A.M.E.S . ... customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... telephone....... number..., P.O.G.O. G.A.M.E.S . ... .. help number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... service....... number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... telephone....... number..., P.O.G.O. G.A.M.E.S . ... help number..., P.O.G.O. G.A.M.E.S . ... helpline number..., P.O.G.O. G.A.M.E.S . ... .. tech support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s service....... center number..., P.O.G.O. G.A.M.E.S . ... customer care.. number..., P.O.G.O. G.A.M.E.S . ... support Canada phone....... number... P.O.G.O. G.A.M.E.S . ... canada support number..., P.O.G.O. G.A.M.E.S . ... phone....... number... canada, P.O.G.O. G.A.M.E.S . ... canada phone....... number... P.O.G.O. G.A.M.E.S . ... service....... center contact number..., P.O.G.O. G.A.M.E.S . ... canada contact number..., P.O.G.O. G.A.M.E.S . ... contact number... canada P.O.G.O. G.A.M.E.S . ... service....... toll free number..., P.O.G.O. G.A.M.E.S . ... customer care..P.O.G.O. G.A.M.E.S . ... .... ..customer.. service......... Phon..e number..... USA .... ..customer ..support.. toll ..free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. support C@!!-???++1 844 444 444 0 )))P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA -CANADA C@!!-???++1 844 444 444 0 )))dial)))) P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... .. helpline number...,USA $CANADA USA CANADA Call direct dial 1-844 -446 -446 0 P.O.G.O. G.A.M.E.S . ... .. customer service....... Phone....... number... USA .. customer support toll free number...)@!! P.O.G.O. G.A.M.E.S . ... ..-1844 444 444 0 ...P.O.G.O. G.A.M.E.S . ... .. tech support phone....... number... P.O.G.O. G.A.M.E.S . ... Technical support phone....... number... P.O.G.O. G.A.M.E.S . ... customer service....... phone....... number... P.O.G.O. G.A.M.E.S . ... .. Tech +++1844 444 444 0 ...!!P.O.G.O. G.A.M.E.S . ... Customer Support Phone....... P.O.G.O. G.A.M.E.S . ... USA Call *)1844 *444 *444 0 P.O.G.O. G.A.M.E.S . ... .. support phone....... number... customer care.. phone....... number... tech support phone....... number... customer number... for P.O.G.O. G.A.M.E.S . ... P.O.G.O. G.A.M.E.S . ... .. tech support number..., P.O.G.O. G.A.M.E.S . ... ..s phone....... number..., phone....... number... for P.O.G.O. G.A.M.E.S . ... ..s P.O.G.O. G.A.M.E.S . ... .. customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... customer support telephone....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer service....... phone....... number..., P.O.G.O. G.A.M.E.S . ... .. helpline phone....... number..., P.O.G.O. G.A.M.E.S . ... support number... usa P.O.G.O. G.A.M.E.S . ... 844 number..., P.O.G.O. G.A.M.E.S . ... customer care.. phone....... number..., P.O.G.O. G.A.M.E.S . ... .. technical support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s customer service....... number..., P.O.G.O. G.A.M.E.S . ... ..s customer care.. number..., P.O.G.O. G.A.M.E.S . ... ..s contact number... USA~ P.O.G.O. G.A.M.E.S . ... .. +1844 444 444 0 customer care.. phone....... number... P.O.G.O. G.A.M.E.S . ... .. customer care.. +1844 444 444 0 @ toll free number... usa P.O.G.O. G.A.M.E.S . ... support no? P.O.G.O. G.A.M.E.S . ... .. service....... 1-844 -446 -446 0 center number..., P.O.G.O. G.A.M.E.S . ... customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... telephone....... number..., P.O.G.O. G.A.M.E.S . ... .. help number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... number... usa, P.O.G.O. G.A.M.E.S . ... service....... number..., P.O.G.O. G.A.M.E.S . ... .. customer service....... telephone....... number..., P.O.G.O. G.A.M.E.S . ... help number..., P.O.G.O. G.A.M.E.S . ... helpline number..., P.O.G.O. G.A.M.E.S . ... .. tech support telephone....... number... P.O.G.O. G.A.M.E.S . ... ..s service....... center number..., P.O.G.O. G.A.M.E.S . ... customer care.. number..., P.O.G.O. G.A.M.E.S . ... support Canada phone....... number... P.O.G.O. G.A.M.E.S . ... canada support number..., P.O.G.O. G.A.M.E.S . ... phone....... number... canada, P.O.G.O. G.A.M.E.S . ... canada phone....... number... P.O.G.O. G.A.M.E.S . ... service....... center contact number..., P.O.G.O. G.A.M.E.S . ... canada contact number..., P.O.G.O. G.A.M.E.S . ... contact number... canada P.O.G.O. G.A.M.E.S . ... service....... toll free number..., P.O.G.O. G.A.M.E.S . ... customer care.. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:24:21 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:24:21 -0000 Subject: [GHC] #11920: Office 365 Technical Support Number 1 800-213-2171 Message-ID: <050.cacb29a57427db79451daab185238cee@haskell.org> #11920: Office 365 Technical Support Number 1 800-213-2171 -------------------------------------+------------------------------------- Reporter: dsvgfdsgfds | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- microsoft outlook 2007 support number accessing military microsoft outlook microsoft outlook email technical support number microsoft outlook 2007 support number microsoft tech support phone number microsoft outlook 2010 support phone number add microsoft outlook microsoft outlook email technical support number microsoft outlook 2010 support phone number microsoft office tech support phone number microsoft outlook 2010 technical support apple microsoft outlook microsoft office outlook support phone number microsoft outlook 2010 technical support windows tech support phone number microsoft outlook 2010 technical support phone number assistance microsoft outlook microsoft office outlook support phone number microsoft outlook 2010 technical support phone number microsoft tech support phone number usa microsoft outlook 2013 technical support number calendaring on microsoft outlook microsoft outlook 2007 support number microsoft outlook 2013 technical support number microsoft windows tech support phone number microsoft outlook 365 technical support phone number call loggin software for microsoft outlook microsoft outlook 2007 support number microsoft outlook 365 technical support phone number tech support phone number microsoft outlook contact number call microsoft outlook microsoft outlook 2010 support phone number microsoft outlook contact number microsoft office 365 tech support phone number microsoft outlook customer service call microsoft outlook support microsoft outlook 2010 support phone number microsoft outlook customer service microsoft tech support phone number for windows 8 microsoft outlook customer service number call outlook 365 support | microsoft outlook 365 login microsoft outlook 2010 technical support microsoft outlook customer service number microsoft windows 7 tech support phone number microsoft outlook customer service phone number cannot access microsoft outlook microsoft outlook 2010 technical support microsoft outlook customer service phone number microsoft 365 tech support phone number microsoft outlook customer support cannot access my email account with microsoft outlook microsoft outlook 2010 technical support phone number microsoft outlook customer support microsoft word tech support phone number microsoft outlook customer support number cannot get microsoft outlook to open microsoft outlook 2010 technical support phone number microsoft outlook customer support number microsoft office tech support phone numbers microsoft outlook customer support phone number cannot open microsoft outlook microsoft outlook 2013 technical support number microsoft outlook customer support phone number contact microsoft tech support phone number microsoft outlook email sign in support number cannot open microsoft outlook 2010 microsoft outlook 2013 technical support number microsoft outlook email sign in support number microsoft tech support phone numbers microsoft outlook email signature support number cannot start microsoft outlook 2010 microsoft outlook 365 technical support phone number microsoft outlook email signature support number microsoft tech support number microsoft outlook email support number cannot start microsoft outlook. cannot open microsoft outlook 365 technical support phone number microsoft outlook email support number microsoft windows 8 tech support phone number microsoft outlook email support phone number microsoft outlook contact number microsoft outlook email support phone number microsoft phone number tech support microsoft outlook email technical support number cannot start microsoft outlook. cannot open the outlook window microsoft outlook contact number microsoft outlook email technical support number phone number for microsoft tech support microsoft outlook express tech support phone number change microsoft outlook email signature microsoft outlook customer service microsoft outlook express tech support phone number windows tech support number microsoft outlook exprss technical support phone number change password for microsoft outlook microsoft outlook customer service microsoft outlook exprss technical support phone number windows 8 tech support phone number microsoft outlook help desk phone number check microsoft outlook email microsoft outlook customer service number microsoft outlook help desk phone number acer tech support phone number microsoft outlook help phone number check microsoft outlook email online microsoft outlook customer service number microsoft outlook help phone number skype tech support phone number microsoft outlook help support connect microsoft outlook to internet microsoft outlook customer service phone number microsoft outlook help support office 365 tech support phone number microsoft outlook phone number support contact for microsoft outlook technical issues support phone number microsoft outlook customer service phone number microsoft outlook phone number support tech support number microsoft outlook phone support contact microsoft outlook microsoft outlook customer support microsoft outlook phone support tech support microsoft phone number microsoft outlook support contact phone number contact microsoft outlook 365 microsoft outlook customer support microsoft outlook support contact phone number office 365 tech support phone number us microsoft outlook support number contact microsoft outlook by phone microsoft outlook customer support number microsoft outlook support number microsoft office tech support number microsoft outlook support phone contact microsoft outlook email support microsoft outlook customer support number microsoft outlook support phone hotmail tech support number microsoft outlook support phone number contact microsoft outlook support microsoft outlook customer support phone number microsoft outlook support phone number microsoft tech phone number microsoft outlook support telephone number contact number for microsoft outlook microsoft outlook customer support phone number microsoft outlook support telephone number surface tech support phone number microsoft outlook tech support number contacting microsoft outlook microsoft outlook email sign in support number microsoft outlook tech support number free tech support phone number microsoft outlook tech support phone number contacts microsoft outlook microsoft outlook email sign in support number microsoft outlook tech support phone number microsoft tech help phone number microsoft outlook technical support create microsoft outlook account microsoft outlook email signature support number microsoft outlook technical support phone number for windows tech support microsoft outlook technical support number customer service number for microsoft outlook microsoft outlook email signature support number microsoft outlook technical support number phone number microsoft tech support microsoft outlook technical support phone number does microsoft outlook work with windows 10? microsoft outlook email support number microsoft outlook technical support phone number microsoft windows tech support number ?microsoft?outlook?customer?service?contact?number download microsoft outlook microsoft outlook email support number ?microsoft?outlook customer?service?contact?number microsoft windows technical support phone number ?microsoft?outlook?customer?service?contact?number? email microsoft outlook xxxx xxxx microsoft outlook email support phone number microsoft?outlook?customer?service?contact?number? microsoft technical support phone number usa ?microsoft?outlook?customer?service?phone?number fix microsoft outlook 2007 microsoft outlook email support phone number microsoft?outlook?customer?service?phone?number windows technical support phone number ?microsoft?outlook?customer?service?toll?free forgot microsoft outlook email password microsoft outlook email technical support number microsoft?outlook?customer?service?toll?free microsoft technical support number ?microsoft?outlook?customer?service?toll?free?number? forgot microsoft outlook email password microsoft outlook email technical support number microsoft?outlook?customer?service?toll?free?number? microsoft word technical support phone number ?microsoft?outlook?customer?support?contact?numbe forgot password to microsoft outlook microsoft outlook express tech support phone number microsoft?outlook?customer?support?contact?numbe technical support phone number ?microsoft?outlook?customer?support?contact?number? getting microsoft outlook program to connect microsoft outlook express tech support phone number ?microsoft?outlook?customer?support?contact?number microsoft technical support phone number us ?microsoft?outlook?customer?support?telephone?num having trouble setting up microsoft outlook microsoft outlook exprss technical support phone number ?microsoft?outlook?customer?support?telephone?num office 365 technical support phone number ?microsoft?outlook?customer?support?telephone?number? having trouble setting up microsoft outlook who to call microsoft outlook exprss technical support phone number ?microsoft?outlook?customer?support telephone?number? microsoft 365 technical support phone number ?microsoft?outlook?tech?support?contact?number help center for microsoft outlook calendar microsoft outlook help desk phone number microsoft?outlook?tech?support?contact?number microsoft technical support phone number windows 8 ?microsoft?outlook?tech?support?phone?number help desk for microsoft outlook microsoft outlook help desk phone number ?microsoft?outlook tech?support?phone?number outlook technical support number ?microsoft?outlook?tech?support?telephone?number help for microsoft outlook microsoft outlook help phone number ?microsoft?outlook tech?support?telephone?number phone number for microsoft technical support ?microsoft?outlook?tech?support?toll?free?nu help for microsoft outlook microsoft outlook help phone number ?microsoft?outlook?tech?support toll?free?number windows technical support number ?microsoft?outlook?tech?support?toll?free?number help for microsoft outlook 2010 microsoft outlook help support ?microsoft?outlook?tech support?toll?free?number skype technical support phone number ?microsoft?outlook?technical?support?contact?numb help microsoft outlook microsoft outlook help support ?microsoft?outlook?technical support?contact?numb technical support number ?microsoft?outlook?technical?support?contact?number help microsoft outlook microsoft outlook phone number support ?microsoft?outlook technical?support?contact?number office 365 technical support phone number us ?microsoft?outlook?technical?support?phone?number help microsoft outlook microsoft outlook phone number support ?microsoft?outlook technical?support?phone?number phone number microsoft technical support ?microsoft?outlook?technical?support?telephone??number help microsoft outlook 2013 microsoft outlook phone support ?microsoft?outlook technical?support?telephone microsoft office technical support number ?outlook?customer?service?contact?number help microsoft outlook lost microsoft outlook phone support ?microsoft?outlook?technical support?telephone??number microsoft technical help phone number ?outlook?customer?service?contact?number? help on getting microsoft outlook app to open microsoft outlook support contact phone number outlook?customer?service?contact?number technical support microsoft phone number ?outlook?customer?service?phone?number help on microsoft outlook microsoft outlook support contact phone number ?outlook?customer?service contact?number? phone number for windows technical support ?outlook?customer?service?phone?number? help setting microsoft outlook express email microsoft outlook support number ?outlook?customer service?phone?number windows 8 technical support phone number ?outlook?customer?service?telephone?number help troubleshooting microsoft outlook 2010 microsoft outlook support number outlook?customer?service?phone?number? outlook technical support telephone number ?outlook?customer?service?telephone?number? help with microsoft outlook microsoft outlook support phone ?outlook?customer?service telephone?number microsoft windows technical support number ?outlook?customer?service?toll?free?number help with microsoft outlook microsoft outlook support phone ?outlook?customer?service telephone?number? microsoft technical support number usa ?outlook?customer?service?toll?free?number? help with microsoft outlook microsoft outlook support phone number ?outlook?customer service?toll?free?number microsoft outlook technical support number usa ?outlook?customer?support?contact?number help with microsoft outlook 2013 microsoft outlook support phone number ?outlook customer?service?toll?free?number? microsoft 365 technical support number ?outlook?customer?support?contact?number?? help with microsoft outlook 2013 microsoft outlook support telephone number outlook?customer?support?contact?number microsoft outlook technical support number ?outlook?customer?support?phone?number help with microsoft outlook email microsoft outlook support telephone number ?outlook?customer?support contact?number?? windows support phone number ?outlook?customer?support?telephone?number? help with microsoft outlook email problem microsoft outlook tech support number outlook?customer?support?phone?number microsoft windows support phone number ?outlook?customer?support?toll?free?number? help with microsoft outlook offline button microsoft outlook tech support number outlook?customer?support?telephone?number? windows phone number ?outlook?tech?support?contact?number hotmail microsoft outlook microsoft outlook tech support phone number ?outlook?customer?support toll?free?number? microsoft windows 7 support phone number ?outlook?tech?support?phone?number i am having problems with microsoft outlook emails. microsoft outlook tech support phone number outlook?tech?support?contact?number windows 7 support phone number ?outlook?tech?support?telephone?number i need help with microsoft outlook microsoft outlook technical support ?outlook?tech?support?phone?number windows support number ?outlook?tech?support?toll?free?number inbox microsoft outlook microsoft outlook technical support ?outlook?tech?support?telephone?number microsoft windows phone number ?outlook?technical?support?contact?number insatall microsoft outlook express microsoft outlook technical support number ?outlook?tech support?toll?free?number microsoft support phone number windows 7 ?outlook?technical?support?phone?number install microsoft outlook 2003 free microsoft outlook technical support number ?outlook technical?support?contact?number windows 8 support phone number ?outlook?technical?support?telephone??number install microsoft outlook 2007 free microsoft outlook technical support phone number outlook?technical?support?phone?number windows help phone number ?outlook?technical?support?toll?free?number install microsoft outlook 2007 free windows 7 microsoft outlook technical support phone number outlook?technical?support?telephone??number microsoft windows 8 support phone number microsoft outllok 2010 technical support phone number install microsoft outlook 2013 free microsoft support outlook ?outlook?technical support?toll?free?number microsoft windows support number microsoft outlook instant search for microsoft outlook outlook 2010 support phone number microsoft outllok 2010 technical support phone number windows live support phone number microsoft outlook ?support phone number instructions on how to use microsoft outlook email outlook 2010 support phone number microsoft outlook ?support phone number microsoft windows help phone number microsoft outlook 0x8004010f is microsoft outlook having problems outlook 2010 technical support phone number microsoft outlook 10 help and support phone number microsoft support phone number windows 8 microsoft outlook 10 error 0x800ccc0e outlook is microsoft outlook having problems today outlook 2010 technical support phone number microsoft outlook 2003 configuration for gamil windows microsoft support phone number microsoft outlook 10 help is there a 2015 problem with microsoft outlook outlook customer support phone number microsoft outlook 2003 configuration? windows phone support phone number microsoft outlook 10 help and support phone number is there an issue with microsoft outlook? outlook customer support phone number microsoft outlook 2003 help and support number phone number for windows support microsoft outlook 10 support issues with microsoft outlook outlook express technical support number Microsoft outlook 2003 support phone number windows number microsoft outlook 13 help Issues with microsoft outlook 2013 outlook express technical support number microsoft outlook 2003 support phone numer microsoft windows phone support number microsoft outlook 2003 latest issues in microsoft outlook technology outlook express technical support phone number microsoft outlook 2003 technical support phone number for windows microsoft outlook 2003 configuration for gamil live chat withe microsoft outlook email outlook express technical support phone number microsoft outlook 2007 windows support phone number us microsoft outlook 2003 configuration? load microsoft outlook outlook help number microsoft outlook 2007 configuration for gmail account phone number for microsoft windows microsoft outlook 2003 help log into microsoft outlook email outlook technical support phone number microsoft outlook 2007 configuration for yahoo windows phone number support microsoft outlook 2003 help and support number log microsoft outlook outlook technical support phone number microsoft outlook 2007 configuration pdf windows help and support phone number microsoft outlook 2003 help forum my microsoft outlook will not open outlook technical support telephone number microsoft outlook 2007 support windows 7 phone number microsoft outlook 2003 not receiving emails office microsoft outlook outlook technical support telephone number microsoft outlook 2007 support number windows 7 support number microsoft outlook 2003 not responding old versions of microsoft outlook outlook.com customer support phone number microsoft outlook 2010 customer service phone number windows microsoft phone number microsoft outlook 2003 phone support open microsoft outlook email outlook.com customer support phone number microsoft outlook 2010 free download full version windows live support number microsoft outlook 2003 problem outbox microsoft outlook outlook.com support number microsoft outlook 2010 help and support numebre phone number for microsoft windows support microsoft outlook 2003 problems outlook today microsoft outlook email outlook.com support number Microsoft outlook 2010 support phone number windows live phone number microsoft outlook 2003 support outlook today-microsoft outlook outlook.com support phone number microsoft outlook 2010 tech support phone number windows helpline phone number Microsoft outlook 2003 support phone number owa microsoft outlook outlook.com support phone number microsoft outlook 2010 technical support windows phone number for support microsoft outlook 2003 support phone numer partners email microsoft outlook phone number for microsoft outlook support microsoft outlook 2010 technical support phone number microsoft windows 7 help phone number microsoft outlook 2003 technical support phone number for microsoft outlook phone number for microsoft outlook support microsoft outlook 2010 technical support? microsoft support windows 8 phone number microsoft outlook 2003 troubleshooting phone number for microsoft outlook phone number for microsoft outlook technical support microsoft outlook 2010 template shortcut microsoft office support phone number microsoft outlook 2003 updates for windows 7 phone number for microsoft outlook support phone number for microsoft outlook technical support microsoft outlook 2010 test questions microsoft office phone number microsoft outlook 2007 phone number for microsoft outlook technical support phone number for outlook support microsoft outlook 2010 customer service phone number microsoft office support number microsoft outlook 2007 basic guide pop yahoo mail with microsoft outlook 2007 phone number for outlook support Microsoft outlook 2013 calendar issues? phone number for microsoft office microsoft outlook 2007 configuration for gmail account problem microsoft outlook ?microsoft?outlook?customer?service?contact?number microsoft outlook 2013 free download microsoft office number microsoft outlook 2007 configuration for yahoo problem with microsoft outlook ?microsoft?outlook?customer?service?contact?number? Microsoft outlook 2013 imap issues office support phone number microsoft outlook 2007 configuration pdf problem with microsoft outlook ?microsoft?outlook?customer?service?phone?number Microsoft outlook 2013 problem microsoft office phone number support microsoft outlook 2007 email problems problem with microsoft outlook client ?microsoft?outlook?customer?service?phone?number Microsoft outlook 2013 problem sending email ms office support phone number microsoft outlook 2007 email setup problems microsoft outlook microsoft?outlook?customer?service?toll?free?number? Microsoft outlook 2013 support phone number phone number for microsoft office support microsoft outlook 2007 exam problems sending and receiving email in microsoft outlook ?microsoft?outlook?customer?service?toll?free number? Microsoft outlook 2013 sync issues microsoft office 2013 support phone number microsoft outlook 2007 help problems with microsoft outlook ?microsoft outlook?customer?support?contact?number? microsoft outlook 2013 tech support phone number microsoft office phone support number microsoft outlook 2007 not opening problems with microsoft outlook microsoft?outlook?customer?support?contact?number? Microsoft outlook 2013 technical support phone number microsoft office microsoft outlook 2007 not receiving emails problems with microsoft outlook ?microsoft?outlook?customer?support?telephone?number? Microsoft outlook 2013 technical support number microsoft office helpline number microsoft outlook 2007 not responding problems with microsoft outlook 2010 ?microsoft?outlook?customer?support?telephone?number? Microsoft outlook 2013 technical support phone number us microsoft office number support microsoft outlook 2007 not sending emails problems with microsoft outlook 2013 ?microsoft?outlook?tech?support?contact?number Microsoft outlook 2013 technical support phone number Usa phone number microsoft office support microsoft outlook 2007 not working problems with microsoft outlook 2013 ?microsoft?outlook?tech?support?contact?number Microsoft outlook 2013 troubleshoot microsoft office troubleshooting phone number microsoft outlook 2007 problems problems with microsoft outlook email microsoft?outlook?tech?support?phone?number microsoft outlook 365 billing phone number outlook support phone number microsoft outlook 2007 support problems with microsoft outlook email microsoft?outlook?tech?support?phone?number microsoft outlook 365 customer support microsoft outlook support phone number microsoft outlook 2007 support center problems with microsoft outlook email 2010 ?microsoft?outlook?tech?support?telephone?number microsoft outlook 365 help outlook email support phone number microsoft outlook 2007 support number problems with microsoft outlook sending email ?microsoft?outlook?tech?support?telephone?number microsoft outlook 365 Online Support outlook phone number microsoft outlook 2007 support phone number purchase microsoft outlook microsoft?outlook?tech?support?toll?free?number microsoft outlook 365 support microsoft outlook support phone number us microsoft outlook 2007 technical support questions about microsoft outlook ?microsoft?outlook?tech?support?toll?free?number microsoft outlook 365 technical support outlook help phone number microsoft outlook 2007 troubleshooting questions about microsoft outlook 2007 ?microsoft?outlook?technical?support?contact?number microsoft outlook 365 technical support number microsoft outlook phone number microsoft outlook 2010 reason for microsoft outlook ! ?microsoft?outlook technical?support?contact?number microsoft outlook 365 technical support phone number outlook.com support phone number microsoft outlook 2010 customer service phone number refresh microsoft outlook inbox ?microsoft?outlook?technical?support?phone?number microsoft outlook account support microsoft outlook help phone number microsoft outlook 2010 email problems repair microsoft outlook microsoft?outlook?technical?support?phone?number microsoft outlook account. microsoft outlook email support phone number microsoft outlook 2010 email setup repair microsoft outlook microsoft?outlook?technical?support?telephone??number microsoft outlook calendar help technical suppor phone number microsoft outlook 2010 support phone number microsoft outlook 2010 free download full version repair microsoft outlook 2007 ?microsoft?outlook?technical?support?telephone??number microsoft outlook cofiguration steps microsoft office outlook support phone number microsoft outlook 2010 help repair microsoft outlook 2010 ?outlook customer?service?contact?number microsoft outlook configuration for gamil outlook 2013 support phone number microsoft outlook 2010 help and support numebre repair microsoft outlook 2010 windows 7 ?outlook?customer?service?contact?number microsoft outlook configuration for gmail 2007 phone number for microsoft outlook microsoft outlook 2010 help desk repair microsoft outlook 2013 outlook?customer?service?contact?number? microsoft outlook configuration for rediffmail phone number for outlook support microsoft outlook 2010 log in repair microsoft outlook email ?outlook customer?service?contact?number? microsoft outlook configuration for yahoo outlook.com phone number microsoft outlook 2010 not receiving emails reset microsoft outlook password ?outlook?customer?service?phone?number microsoft outlook configuration for yahoo mail phone number for outlook microsoft outlook 2010 not responding set up microsoft outlook outlook?customer?service?phone?number microsoft outlook configuration tutorial phone number for microsoft outlook support microsoft outlook 2010 not sending emails set up microsoft outlook email ?outlook?customer?service?phone?number? microsoft outlook connector office 365 support phone number microsoft outlook 2010 problems setting up microsoft outlook ?outlook customer?service?phone?number? microsoft outlook contact number microsoft office 365 support phone number microsoft outlook 2010 search not working setting up microsoft outlook ?outlook?customer?service?telephone?number microsoft outlook contact phone number microsoft office 365 customer support phone number microsoft outlook 2010 send receive error setting up microsoft outlook 2010 ?outlook?customer?service?telephone?number microsoft outlook contact? microsoft 365 support phone number microsoft outlook 2010 send receive settings setting up microsoft outlook 2013 ?outlook?customer?service?telephone?number microsoft outlook customer care number microsoft 365 customer support phone number microsoft outlook 2010 setup setting up microsoft outlook email outlook?customer?service?telephone?number? microsoft outlook customer care number india office 365 support phone microsoft outlook 2010 support setting up microsoft outlook for gmail outlook?customer?service?toll?free?number microsoft outlook customer care number? office 365 customer support phone number microsoft outlook 2010 support center settings microsoft outlook 2007 gmail ?outlook?customer?service?toll?free?number microsoft outlook customer care? number microsoft office 365 phone number microsoft outlook 2010 support phone number setup microsoft outlook outlook?customer?service?toll?free?number? microsoft outlook customer service microsoft office 365 help phone number microsoft outlook 2010 sync issues setup microsoft outlook 2007 outlook?customer?service?toll?free?number? microsoft outlook customer service contact number microsoft 365 phone number microsoft outlook 2010 tech support phone number setup microsoft outlook 2010 ?outlook?customer?support?contact?number microsoft outlook customer service number microsoft office 365 customer service phone number microsoft outlook 2010 technical support setup microsoft outlook email ?outlook?customer?support?contact?number microsoft outlook customer service number us office 365 phone number microsoft outlook 2010 technical support phone number sign microsoft outlook ?outlook?customer?support?contact?number?? microsoft outlook customer service number usa office 365 phone support microsoft outlook 2010 technical support? sign microsoft outlook email different computer ?outlook?customer?support?contact?number microsoft outlook customer service phone office 365 support phone number us microsoft outlook 2010 template shortcut smpt server for microsoft outlook email ?outlook?customer?support?phone?number microsoft outlook customer service phone number office 365 support phone number usa microsoft outlook 2010 test questions stationary for microsoft outlook outlook?customer?support?phone?number microsoft outlook customer service phone number usa phone number for microsoft office 365 microsoft outlook 2010 troubleshooting support for microsoft outlook outlook?customer?support?telephone?number? microsoft outlook customer service telephone number office 365 partner support phone number microsoft outlook 2010 tutorial support for microsoft outlook ?outlook customer?support?telephone?number? microsoft outlook customer service toll free number microsoft 365 support phone microsoft outlook 2010 updates windows 7 support microsoft outlook outlook?customer?support?toll?free?number? microsoft outlook customer service usa microsoft support phone number office 365 Microsoft outlook 2010 won?t open support microsoft outlook outlook?customer?support?toll?free?number? microsoft outlook customer support office 365 help phone number Microsoft outlook 2010 won?t open loading profile support microsoft outlook 2003 ?outlook?tech?support?contact?number microsoft outlook customer support contact number office 365 business support phone number Microsoft outlook 2010 won?t open processing technical issues of microsoft outlook connvention ?outlook?tech?support?contact?number microsoft outlook customer support email office 365 customer service phone number microsoft outlook 2010 won't open technical issues of microsoft outlook facebook ?outlook?tech?support?phone?number microsoft outlook customer support number office 365 help phone microsoft outlook 2010 won't open loading profile technical issues of microsoft outlook facebook support number ?outlook?tech?support?phone number microsoft outlook customer support phone office 365 billing support phone number microsoft outlook 2010 won't open processing technical issues of microsoft outlook phone number ?outlook?tech?support?telephone?number microsoft outlook customer support phone number microsoft office 365 phone support microsoft outlook 2010? customer service phone number technical issues of microsoft outlook support ?outlook?tech?support?telephone?number Microsoft outlook customer support phone number? microsoft 365 customer service phone number microsoft outlook 2010/support technical issues of microsoft outlook support number ?outlook?tech?support?toll?free?number microsoft outlook customer support phone? number hotmail technical support phone number microsoft outlook 2011 technical issues of microsoft outlook support phone number ?outlook?tech?support?toll?free?number microsoft outlook customer support telephone number hotmail support phone number microsoft outlook 2011 for mac support technical issues of microsoft outlook? ?outlook?technical?support?contact?number microsoft outlook email access tech seupport phone nubmmer hotmail phone number microsoft outlook 2012 technical support microsoft outlook ?outlook technical?support?contact?number microsoft outlook email customer service microsoft hotmail support phone number microsoft outlook 2013 technical support microsoft outlook ?outlook technical?support?phone?number microsoft outlook email customer service number hotmail tech support phone number usa Microsoft outlook 2013 calendar issues? telephone number for microsoft outlook ?outlook?technical?support?phone?number microsoft outlook email help hotmail technical support phone number usa microsoft outlook 2013 desktop support trouble shoot microsoft outlook 2010 ?outlook?technical?support?telephone??number microsoft outlook email help and support number hotmail help phone number microsoft outlook 2013 error messages trouble with microsoft outlook outlook?technical?support?telephone??number microsoft outlook email help phone number hotmail support phone number usa microsoft outlook 2013 free download troubleshoot microsoft outlook outlook?technical?support?toll?free?number Microsoft outlook email phone number contact hotmail support phone number microsoft outlook 2013 help troubleshoot microsoft outlook ?outlook technical?support?toll?free?number microsoft outlook email search not working hotmail email support phone number microsoft outlook 2013 help support troubleshoot microsoft outlook 2010 call microsoft office 365 support microsoft outlook email server microsoft hotmail support phone number usa Microsoft outlook 2013 imap issues troubleshooting microsoft outlook call microsoft support phone number microsoft outlook email setup hotmail customer service phone microsoft outlook 2013 issues troubleshooting microsoft outlook call microsoft tech support phone number microsoft outlook email sign in hotmail phone number support microsoft outlook 2013 not receiving emails troubleshooting microsoft outlook 2010 call microsoft technical support microsoft outlook email sign in support number microsoft help phone number microsoft outlook 2013 not responding uninstall microsoft outlook 2013 call windows technical support microsoft outlook email sign up microsoft office help phone number microsoft outlook 2013 not sending emails using microsoft outlook 2013 can i install outlook express on windows 7 microsoft outlook email signature microsoft office help number microsoft outlook 2013 not working web microsoft outlook can not send email from outlook microsoft outlook email signature support number microsoft help desk phone number microsoft outlook 2013 phone support what is a mail server in microsoft outlook when setting up an account can outlook express be installed on windows 7 microsoft outlook email stuck in outbox microsoft help desk phone number us Microsoft outlook 2013 problem what is microsoft outlook can outlook express run on windows 7 microsoft outlook email support microsoft outlook 2010 help Microsoft outlook 2013 problem sending email what is microsoft outlook 2010 can receive but not send email outlook microsoft outlook email support number phone number for microsoft help microsoft outlook 2013 problems what is my microsoft outlook password can receive email but cannot send outlook microsoft outlook email support phone number microsoft phone number help microsoft outlook 2013 questions what is the phone number for help on microsoft outlook? can receive email cannot send outlook microsoft outlook email support? microsoft help center phone number microsoft outlook 2013 support where do i get help with microsoft outlook? can receive emails but cannot send outlook microsoft outlook email technical support microsoft outlook help number Microsoft outlook 2013 support phone number windows 7 microsoft outlook can send but not receive email outlook microsoft outlook email technical support number microsoft office help line Microsoft outlook 2013 sync issues can send email but not receive outlook microsoft outlook email technical support number microsoft help and support -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:25:06 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:25:06 -0000 Subject: [GHC] #11921: Office 365 Phone Support 1 800-213-2171 Message-ID: <050.e8359057046b2be8f2051f2382de535f@haskell.org> #11921: Office 365 Phone Support 1 800-213-2171 -------------------------------------+------------------------------------- Reporter: dsvgfdsgfds | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- can not send email from outlook microsoft outlook email signature support number microsoft help desk phone number can outlook express be installed on windows 7 microsoft outlook email stuck in outbox microsoft help desk phone number us can outlook express run on windows 7 microsoft outlook email support microsoft outlook 2010 help can receive but not send email outlook microsoft outlook email support number phone number for microsoft help can receive email but cannot send outlook microsoft outlook email support phone number microsoft phone number help can receive email cannot send outlook microsoft outlook email support microsoft help center phone number can receive emails but cannot send outlook microsoft outlook email technical support microsoft outlook help number can send but not receive email outlook microsoft outlook email technical support number microsoft office help line can send email but not receive outlook microsoft outlook email technical support number? microsoft help and support contact microsoft email support microsoft outlook entourage for mac microsoft help desk number contact microsoft office 365 support microsoft outlook error message microsoft technical help contact microsoft office 365 support phone number microsoft outlook error messages microsoft windows 7 help contact microsoft office phone number microsoft outlook excel help microsoft customer service phone number contact microsoft office support by phone microsoft outlook exchange microsoft office customer service phone number contact microsoft outlook by phone microsoft outlook exchange email login microsoft office customer service contact microsoft outlook email support microsoft outlook exchange mail microsoft customer service contact microsoft outlook support microsoft outlook exchange mail support microsoft customer service number contact microsoft phone number microsoft outlook exchange mailbox name microsoft customer service and support phone number contact microsoft support by phone microsoft outlook exchange server microsoft office customer service number contact microsoft support phone microsoft outlook exchange sign in microsoft phone number customer service contact microsoft support phone number microsoft outlook exchange support phone number for microsoft customer service contact microsoft tech support phone number microsoft outlook exchange troubleshooting microsoft customer service and support contact microsoft technical support microsoft outlook exe what is the toll-free customer service number at microsoft contact microsoft technical support by phone microsoft outlook express microsoft service phone number contact microsoft technical support phone number microsoft outlook express 2010 microsoft phone numbers for customer service contact number for microsoft office microsoft outlook express email microsoft office phone number customer service contact number for microsoft outlook microsoft outlook express email account microsoft customer service phone number united states contact number for microsoft support microsoft outlook express email recovery technical suppor phonre number customer service phone number for microsoft contact number for outlook email microsoft outlook express for windows 7 phone number to microsoft customer service contact office 365 support phone microsoft outlook express for xp outlook customer support phone number contact outlook support by phone microsoft outlook express free download microsoft outlook customer support phone number contact outlook support phone microsoft outlook express help outlook customer service phone number contact phone number for microsoft microsoft outlook express support microsoft outlook customer service phone number contact phone number for microsoft support Microsoft outlook express support phone number microsoft outlook customer service contact windows support phone number microsoft outlook express tech support phone number outlook customer service customer service phone number for microsoft Microsoft outlook express technical support number outlook customer service number customer service technical support microsoft outlook express technical support phone number outlook customer support customer support microsoft phone number microsoft outlook express techsupport phone number outlook customer support number email address for outlook support microsoft outlook express u microsoft outlook customer support email address microsoft support microsoft outlook express web app microsoft outlook customer service number email microsoft technical support microsoft outlook express windows 7 outlook tech support phone number help for microsoft outlook microsoft outlook express windows 8 microsoft outlook tech support phone number how do i contact microsoft by phone microsoft outlook express.com microsoft outlook 2013 tech support phone number how do i contact microsoft outlook microsoft outlook express? for windows? microsoft outlook tech support how do i contact microsoft support by phone microsoft outlook exprss technical support phone number outlook email tech support phone number how do i get in touch with microsoft support microsoft outlook for android. outlook tech support number how to contact microsoft by phone microsoft outlook for home use microsoft customer support phone number how to contact microsoft outlook microsoft outlook for mac microsoft office customer support phone number how to contact microsoft outlook support microsoft outlook for mac customer service phone number microsoft customer support number how to contact microsoft support by email microsoft outlook for mac help customer support number how to contact microsoft support by phone microsoft outlook for mac customer service phone number skype customer service phone number 1800 how to contact microsoft technical support microsoft outlook for windows skype customer service 800 number i need a phone number for microsoft support microsoft outlook for windows 7 skype phone number customer service live email support phone number microsoft outlook for windows 8 microsoft office customer support number microsoft 365 contact phone number microsoft outlook for windows 8.1 phone number for microsoft customer support microsoft 365 customer service phone number microsoft outlook form development help microsoft customer phone number microsoft 365 customer support phone number microsoft outlook fraser health windows customer support phone number microsoft 365 help phone number microsoft outlook free technical support microsoft windows customer support phone number microsoft 365 online support microsoft outlook gmail settings 2007 windows customer service phone number microsoft 365 outlook support microsoft outlook gmail setup windows 7 customer support phone number microsoft 365 support phone number microsoft outlook has stopped working windows 8 customer support phone number microsoft 365 tech support phone number microsoft outlook has stopped working 2007 windows customer service number microsoft 365 technical support microsoft outlook has stopped working 2010 microsoft windows customer service phone number microsoft 365 technical support number microsoft outlook has stopped working 2013 fix windows customer support number microsoft 365 technical support phone number microsoft outlook help microsoft windows customer service microsoft 365 telephone support microsoft outlook help 2010 windows 8 customer service phone number microsoft account customer service phone number microsoft outlook Help and Support microsoft windows customer support microsoft account customer support phone number microsoft outlook help center windows phone number customer service microsoft account help phone number microsoft outlook help contact windows phone customer service microsoft account support phone number microsoft outlook help desk windows 8 customer service microsoft account technical support microsoft outlook help desk phone number microsoft windows customer service number microsoft assistance phone number microsoft outlook help line microsoft contact phone number microsoft billing support phone number microsoft outlook help number contact microsoft support phone number microsoft consumer support phone number microsoft outlook help online contact microsoft technical support microsoft contact phone number microsoft outlook help phone microsoft office contact number microsoft contact phone numbers microsoft outlook help phone number contact microsoft support phone microsoft contact support phone number microsoft outlook help support microsoft office contact phone number microsoft contact telephone number microsoft outlook help support phone number contact microsoft phone number microsoft customer care phone number microsoft outlook helpline contact microsoft office support microsoft customer phone number microsoft outlook helpline number microsoft contact information microsoft customer service and support microsoft outlook helpline number india contact microsoft support by phone microsoft customer service and support phone number microsoft outlook how to how to contact microsoft support by phone microsoft customer service email microsoft outlook icon contact phone number for microsoft microsoft customer service number microsoft outlook imap issues how to contact microsoft technical support microsoft customer service phone number microsoft outlook inbox repair tool microsoft support contact number microsoft customer service phone number UK microsoft outlook inbox repair tool not responding how do i contact microsoft support by phone microsoft customer service phone number united states microsoft outlook indenting microsoft office technical support microsoft customer service telephone number microsoft outlook installation help microsoft office support phone microsoft customer services number microsoft outlook installer microsoft office phone support microsoft customer services phone number microsoft outlook instant messenger microsoft outlook business microsoft customer support email microsoft outlook is not responding microsoft outlook for windows 7 microsoft customer support email address microsoft outlook is not sending emails microsoft office 2010 outlook microsoft customer support number microsoft outlook is not working microsoft outlook for business microsoft customer support phone microsoft outlook issue microsoft office tech support microsoft email contact number microsoft outlook issues microsoft office tech support phone microsoft email customer service Microsoft outlook issues 2013 microsoft tech support toll free microsoft email customer service phone number microsoft outlook issues and solutions windows technical support microsoft email help phone number microsoft outlook issues today microsoft windows technical support microsoft email phone number microsoft outlook issues with emails windows 7 technical support microsoft email support number microsoft outlook keeps crashing call from windows technical support microsoft email support phone number microsoft outlook keeps not responding call windows technical support microsoft email tech support phone number microsoft outlook language microsoft email support phone number microsoft exchange customer service phone number microsoft outlook lgino microsoft customer service email microsoft help and support microsoft outlook licensing phone number microsoft email phone number microsoft help contact number microsoft outlook live account support microsoft windows support microsoft help desk phone number us microsoft outlook live account support phone number microsoft windows tech support microsoft help phone number microsoft outlook live chat microsoft windows phone support microsoft help phone number UK microsoft outlook live chat support microsoft support phone number usa microsoft help telephone number microsoft outlook live customer service phone number microsoft office support phone number usa microsoft it support phone number microsoft outlook live customer support phone number microsoft help phone number usa microsoft live contact phone number microsoft outlook live phone number microsoft office customer service phone number usa microsoft live customer support phone number microsoft outlook live support number microsoft customer service phone number usa microsoft live email support phone number microsoft outlook live support phone number microsoft office contact number usa microsoft live help phone number microsoft outlook live technical support microsoft account support phone number microsoft live support phone number microsoft outlook log in microsoft account help phone number microsoft live technical support microsoft outlook login microsoft account phone number microsoft office 365 contact number microsoft outlook mac help microsoft account customer support phone number microsoft office 365 customer service microsoft outlook mail microsoft account customer service phone number microsoft office 365 customer service phone number microsoft outlook mail access office 365 support number microsoft office 365 customer support microsoft outlook mail forwarding office 365 technical support microsoft office 365 customer support phone number microsoft outlook mail not sending office 365 customer support microsoft office 365 help phone number microsoft outlook mail problems microsoft office 365 support microsoft office 365 phone number microsoft outlook mail recovery microsoft office 365 support number microsoft office 365 support microsoft outlook mailbox size microsoft office 365 technical support microsoft office 365 support number microsoft outlook mailing list microsoft office 365 customer service microsoft office 365 support phone microsoft outlook manual microsoft office 365 tech support microsoft office 365 support phone number microsoft outlook messages microsoft 365 technical support microsoft office 365 tech support phone number microsoft outlook military email microsoft 365 customer service microsoft office 365 technical support microsoft outlook missing emails microsoft 365 support number microsoft office 365 technical support number microsoft outlook nmss webmail microsoft office 365 customer support microsoft office 365 technical support phone number microsoft outlook not opening microsoft 365 for business microsoft office 365 telephone support microsoft outlook not receiving emails microsoft outlook support microsoft office and outlook microsoft outlook not responding microsoft outlook support number microsoft office contact phone number microsoft outlook not responding 2007 microsoft outlook technical support microsoft office customer service number microsoft outlook not responding 2010 call microsoft support phone number microsoft office customer service phone number microsoft outlook not responding problems microsoft customer support phone microsoft office customer service phone number UK microsoft outlook not sending microsoft customer support microsoft office customer support microsoft outlook not sending emails microsoft office customer support microsoft office customer support phone microsoft outlook not sending or receiving emails microsoft office customer support phone microsoft office customer support phone number microsoft outlook not syncing to comcast microsoft technical support telephone number microsoft office help desk phone number microsoft outlook not working microsoft office technical support telephone number microsoft office help phone number microsoft outlook not working support number microsoft telephone number microsoft office outlook customer service phone number microsoft outlook not working today microsoft telephone support microsoft office outlook support phone number microsoft outlook not working windows 7 microsoft support telephone number microsoft office phone number customer service microsoft outlook number microsoft office 365 support telephone number microsoft office phone number customer support microsoft outlook number support microsoft telephone number for technical support microsoft office phone number support microsoft outlook office 2010 help microsoft office telephone number microsoft office phone support number microsoft outlook office 365 telephone number for microsoft technical support microsoft office support phone microsoft outlook office support microsoft customer service telephone number microsoft office support phone number microsoft outlook official site microsoft office customer service telephone number microsoft office support phone number UK microsoft outlook offline how do i get online telephone number for microsoft microsoft office tech support microsoft outlook on the fritz skype support phone number usa microsoft office tech support phone microsoft outlook online microsoft technical support phone microsoft office tech support phone number microsoft outlook online chat support contact microsoft technical support by phone microsoft office tech support phone number usa microsoft outlook online help windows technical support phone call microsoft office tech support phone numbers microsoft outlook online support windows phone technical support microsoft office technical support microsoft outlook outbox phone call from microsoft technical support microsoft office technical support number microsoft outlook outbox not sending microsoft office for windows 10 microsoft office technical support phone number microsoft outlook outbox stuck microsoft office windows 10 microsoft office technical support phone number usa microsoft outlook outlook windows 10 microsoft office microsoft office technical support telephone number microsoft outlook outlook 2010 help microsoft office 2013 outlook microsoft office telephone number microsoft outlook outlook 2010 tech support microsoft 800 phone number microsoft office telephone support microsoft outlook outlook connector microsoft word support phone number microsoft office troubleshooting phone number microsoft outlook outlook customer service phone number microsoft word support microsoft office with outlook microsoft outlook outlook email microsoft word technical support microsoft online customer service phone number microsoft outlook outlook email login microsoft word support number microsoft online phone number microsoft outlook outlook email login 365 microsoft word tech support microsoft online support phone number microsoft outlook outlook support microsoft online support phone number microsoft outlook 10 help microsoft outlook outlook support phone number hotmail customer service number microsoft outlook 10 help and support phone number microsoft outlook outlook troubleshooting hotmail customer support number microsoft outlook 2003 configuration for gamil microsoft outlook password microsoft hotmail customer service microsoft outlook 2003 configuration? microsoft outlook password problems microsoft office 1800 number microsoft outlook 2003 help microsoft outlook password recovery contact windows support phone number microsoft outlook 2003 help and support number microsoft outlook phone microsoft windows contact number microsoft outlook 2003 not receiving emails microsoft outlook phone contact windows contact phone number microsoft outlook 2003 not responding microsoft outlook phone number microsoft office 365 help number microsoft outlook 2003 support microsoft outlook phone number customer service microsoft outlook 365 help Microsoft outlook 2003 support phone number microsoft outlook phone number customer support microsoft helpline phone number microsoft outlook 2003 support phone numer microsoft outlook phone number real person microsoft helpline number microsoft outlook 2003 technical support microsoft outlook phone number support contact microsoft office 365 microsoft outlook 2003 updates for windows 7 microsoft outlook phone support contact microsoft office 365 support phone number microsoft outlook 2007 microsoft outlook phone support number microsoft office 365 support contact number microsoft outlook 2007 configuration for gmail account microsoft outlook phone support usa contact microsoft office 365 support microsoft outlook 2007 configuration for yahoo microsoft outlook pop up messages microsoft office 365 contact number microsoft outlook 2007 configuration pdf microsoft outlook printing problems microsoft office chat support microsoft outlook 2007 download microsoft outlook problem microsoft support phone number microsoft outlook 2007 email setup Microsoft outlook problem 2013 phone number for microsoft microsoft outlook 2007 help microsoft outlook problem connecting server phone number for microsoft support microsoft outlook 2007 not opening microsoft outlook problem with content in microsoft support phone numbers microsoft outlook 2007 not receiving emails microsoft outlook problems microsoft premier support phone number microsoft outlook 2007 not responding microsoft outlook problems and solutions microsoft activation phone number microsoft outlook 2007 not sending emails microsoft outlook problems receiving email microsoft product support phone number microsoft outlook 2007 not working microsoft outlook problems sending email microsoft phone support number microsoft outlook 2007 problems microsoft outlook problems today microsoft corporate phone number microsoft outlook 2007 support microsoft outlook product activation microsoft phone number support microsoft outlook 2007 support microsoft outlook professional plus 2010 microsoft corporation phone number microsoft outlook 2010 customer service phone number microsoft outlook question microsoft it support phone number microsoft outlook 2010 email setup microsoft outlook question answer microsoft exchange support phone number microsoft outlook 2010 free download full version microsoft outlook question is an e microsoft headquarters phone number microsoft outlook 2010 help microsoft outlook question? phone number to microsoft microsoft outlook 2010 help and support numebre microsoft outlook questions microsofts phone number microsoft outlook 2010 help desk microsoft outlook questions and answers what is microsoft phone number microsoft outlook 2010 not receiving emails microsoft outlook repair microsoft live support phone number microsoft outlook 2010 not responding microsoft outlook repair tool not responding microsoft store phone number microsoft outlook 2010 not sending emails microsoft outlook reset password microsoft licensing phone number microsoft outlook 2010 problems microsoft outlook safe mode microsoft partner support phone number microsoft outlook 2010 search not working microsoft outlook search help microsoft phone number for support microsoft outlook 2010 send receive error microsoft outlook search not working phone number microsoft support microsoft outlook 2010 send receive settings microsoft outlook send and receive error what is microsoft support phone number microsoft outlook 2010 setup microsoft outlook send receive not working microsoft billing support phone number microsoft outlook 2010 support microsoft outlook sending error phone number to microsoft support microsoft outlook 2010 support microsoft outlook server settings microsoft.com support phone number Microsoft outlook 2010 support phone number microsoft outlook server setup what is the phone number for microsoft support microsoft outlook 2010 sync issues microsoft outlook service what is the phone number for microsoft microsoft outlook 2010 tech support phone number microsoft outlook settings microsoft account support number microsoft outlook 2010 technical support microsoft outlook settings for microsoft outlook.com microsoft number support microsoft outlook 2010 technical support phone number microsoft outlook setup microsoft sales phone number microsoft outlook 2010 technical support? microsoft outlook setup instructions microsoft excel support phone number microsoft outlook 2010 template shortcut microsoft outlook setup questions number for microsoft support microsoft outlook 2010 test questions microsoft outlook sign in microsoft professional support phone number microsoft outlook 2010 troubleshooting microsoft outlook sign in page email address microsoft assistance phone number microsoft outlook 2010 tutorial microsoft outlook sign in problem microsoft professional support microsoft outlook 2010 updates windows 7 microsoft outlook sign in problems microsoft office technical support phone number Microsoft outlook 2010 won?t open microsoft outlook signin problem microsoft windows 7 technical support phone number Microsoft outlook 2010 won?t open loading profile microsoft outlook small business microsoft office 365 technical support phone number Microsoft outlook 2010 won?t open processing microsoft outlook small business 2007 microsoft outlook technical support phone number microsoft outlook 2010 won't open microsoft outlook spam blocker microsoft technical support phone number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:26:02 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:26:02 -0000 Subject: [GHC] #11922: Helpdesk +1800-213-2171 Microsoft Office Technical Help and Support Phone Number Message-ID: <050.9572ca884437d03feead87c00916e3ae@haskell.org> #11922: Helpdesk +1800-213-2171 Microsoft Office Technical Help and Support Phone Number -------------------------------------+------------------------------------- Reporter: dsvgfdsgfds | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- office 2011 technical support number microsoft office 2011 technical support microsoft office 2011 technical support number office 2011 technical support number usa microsoft office 2011 technical number microsoft office 2011 technical support number usa office 2011 technical support phone microsoft office 2011 technical phone microsoft office 2011 technical support phone office 2011 technical support phone number microsoft office 2011 technical telephone microsoft office 2011 technical support phone number office 2011 technical support phone number usa microsoft office 2011 technical calls microsoft office 2011 technical support phone number usa office 2011 technical support telephone microsoft office 2011 technical calls usa microsoft office 2011 technical support telephone office 2011 technical support telephone number microsoft office 2011 technical contact microsoft office 2011 technical support telephone number office 2011 technical support telephone number usa microsoft office 2011 technical contact usa microsoft office 2011 technical support telephone number usa office 2011 technical support calls microsoft office 2011 technical help microsoft office 2011 technical support calls office 2011 technical support call number microsoft office 2011 technical help usa microsoft office 2011 technical support call number office 2011 technical support calls usa microsoft office 2011 technical help desk microsoft office 2011 technical support calls usa office 2011 technical support contact microsoft office 2011 technical helpline microsoft office 2011 technical support contact office 2011 technical support contact number microsoft office 2011 technical helpline usa microsoft office 2011 technical support contact number office 2011 technical support contact number usa microsoft office 2011 technical toll free microsoft office 2011 technical support contact number usa office 2011 technical support help microsoft office 2011 technical toll free usa microsoft office 2011 technical support help office 2011 technical support help number microsoft office 2011 tech support microsoft office 2011 technical support help number office 2011 technical support help number usa microsoft office 2011 tech number microsoft office 2011 technical support help number usa office 2011 technical support helpdesk microsoft office 2011 tech phone microsoft office 2011 technical support helpdesk office 2011 technical support helpdesk number microsoft office 2011 tech telephone microsoft office 2011 technical support helpdesk number office 2011 technical support helpdesk number usa microsoft office 2011 tech calls microsoft office 2011 technical support helpdesk number usa office 2011 technical support helpline microsoft office 2011 tech calls usa microsoft office 2011 technical support helpline office 2011 technical support helpline number microsoft office 2011 tech contact microsoft office 2011 technical support helpline number office 2011 technical support helpline number usa microsoft office 2011 tech contact usa microsoft office 2011 technical support helpline number usa office 2011 technical support helpline phone microsoft office 2011 tech help microsoft office 2011 technical support helpline phone office 2011 technical support helpline phone number microsoft office 2011 tech help usa microsoft office 2011 technical support helpline phone number office 2011 technical support helpline phone number usa microsoft office 2011 tech helpdesk microsoft office 2011 technical support helpline phone number usa office 2011 technical support helpline telephone microsoft office 2011 tech helpdesk usa microsoft office 2011 technical support helpline telephone office 2011 technical support helpline telephone number microsoft office 2011 tech helpline microsoft office 2011 technical support helpline telephone number office 2011 technical support helpline telephone number usa microsoft office 2011 tech helpline usa microsoft office 2011 technical support helpline telephone number usa office 2011 technical support toll free microsoft office 2011 tech toll free microsoft office 2011 technical support toll free office 2011 technical support toll free number microsoft office 2011 tech toll free usa microsoft office 2011 technical support toll free number office 2011 technical support toll free number usa microsoft office 2011 support number microsoft office 2011 technical support toll free number usa office 2011 technical support toll free phone microsoft office 2011 support phone microsoft office 2011 technical support toll free phone office 2011 technical support toll free phone number microsoft office 2011 support telephone microsoft office 2011 technical support toll free phone number office 2011 technical support toll free phone number usa microsoft office 2011 support calls microsoft office 2011 technical support toll free phone number usa office 2011 technical support toll free telephone microsoft office 2011 support calls usa microsoft office 2011 technical support toll free telephone office 2011 technical support toll free telephone number microsoft office 2011 support contact microsoft office 2011 technical support toll free telephone number office 2011 technical support toll free telephone number usa microsoft office 2011 support contact usa microsoft office 2011 technical support toll free telephone number usa office 2011 tech support number microsoft office 2011 support help microsoft office 2011 tech support number office 2011 tech support number usa microsoft office 2011 support help usa microsoft office 2011 tech support number usa office 2011 tech support phone microsoft office 2011 support helpdesk microsoft office 2011 tech support phone office 2011 tech support phone number microsoft office 2011 support helpdesk usa microsoft office 2011 tech support phone number office 2011 tech support phone number usa microsoft office 2011 support helpline microsoft office 2011 tech support phone number usa office 2011 tech support telephone microsoft office 2011 support helpline usa microsoft office 2011 tech support telephone office 2011 tech support telephone number microsoft office 2011 support toll free microsoft office 2011 tech support telephone number office 2011 tech support telephone number usa microsoft office 2011 support toll free usa microsoft office 2011 tech support telephone number usa office 2011 tech support calls microsoft office 2011 service number microsoft office 2011 tech support calls office 2011 tech support call number microsoft office 2011 service phone microsoft office 2011 tech support call number office 2011 tech support calls usa microsoft office 2011 service phone usa microsoft office 2011 tech support calls usa office 2011 tech support contact microsoft office 2011 service telephone microsoft office 2011 tech support contact office 2011 tech support contact number microsoft office 2011 service calls microsoft office 2011 tech support contact number office 2011 tech support contact number usa microsoft office 2011 service calls usa microsoft office 2011 tech support contact number usa office 2011 tech support help microsoft office 2011 service contact microsoft office 2011 tech support help office 2011 tech support help number microsoft office 2011 service contact usa microsoft office 2011 tech support help number office 2011 tech support help number usa microsoft office 2011 service help microsoft office 2011 tech support help number usa office 2011 tech support helpdesk microsoft office 2011 service help usa microsoft office 2011 tech support helpdesk office 2011 tech support helpdesk number microsoft office 2011 service helpdesk microsoft office 2011 tech support helpdesk number office 2011 tech support helpdesk number usa microsoft office 2011 service helpdesk usa microsoft office 2011 tech support helpdesk number usa office 2011 tech support helpline microsoft office 2011 service helpline microsoft office 2011 tech support helpline office 2011 tech support helpline number microsoft office 2011 service helpline usa microsoft office 2011 tech support helpline number office 2011 tech support helpline number usa microsoft office 2011 service toll free microsoft office 2011 tech support helpline number usa office 2011 tech support helpline phone microsoft office 2011 service toll free usa microsoft office 2011 tech support helpline phone office 2011 tech support helpline phone number microsoft office 2011 care microsoft office 2011 tech support helpline phone number office 2011 tech support helpline phone number usa microsoft office 2011 care number microsoft office 2011 tech support helpline phone number usa office 2011 tech support helpline telephone microsoft office 2011 care phone microsoft office 2011 tech support helpline telephone office 2011 tech support helpline telephone number microsoft office 2011 care phone usa microsoft office 2011 tech support helpline telephone number office 2011 tech support helpline telephone number usa microsoft office 2011 care telephone microsoft office 2011 tech support helpline telephone number usa office 2011 tech support toll free microsoft office 2011 care telephone usa microsoft office 2011 tech support toll free office 2011 tech support toll free number microsoft office 2011 care calls microsoft office 2011 tech support toll free number office 2011 tech support toll free number usa microsoft office 2011 care calls usa microsoft office 2011 tech support toll free number usa office 2011 tech support toll free phone microsoft office 2011 care contact microsoft office 2011 tech support toll free phone office 2011 tech support toll free phone number microsoft office 2011 care contact usa microsoft office 2011 tech support toll free phone number office 2011 tech support toll free phone number usa microsoft office 2011 care help microsoft office 2011 tech support toll free phone number usa office 2011 tech support toll free telephone microsoft office 2011 care help usa microsoft office 2011 tech support toll free telephone office 2011 tech support toll free telephone number microsoft office 2011 care helpdesk microsoft office 2011 tech support toll free telephone number office 2011 tech support toll free telephone number usa microsoft office 2011 care helpdesk usa microsoft office 2011 tech support toll free telephone number usa office 2011 customer support number microsoft office 2011 care helpline microsoft office 2011 customer support number office 2011 customer support number usa microsoft office 2011 care helpline usa microsoft office 2011 customer support number usa office 2011 customer support phone microsoft office 2011 care toll free microsoft office 2011 customer support phone office 2011 customer support phone number microsoft office 2011 care toll free usa microsoft office 2011 customer support phone number office 2011 customer support phone number usa microsoft office 2011 customer support microsoft office 2011 customer support phone number usa office 2011 customer support telephone microsoft office 2011 customer service microsoft office 2011 customer support telephone office 2011 customer support telephone number microsoft office 2011 customer care microsoft office 2011 customer support telephone number office 2011 customer support telephone number usa microsoft office 2011 customer number microsoft office 2011 customer support telephone number usa office 2011 customer support calls microsoft office 2011 customer phone microsoft office 2011 customer support calls office 2011 customer support call number microsoft office 2011 customer phone usa microsoft office 2011 customer support call number office 2011 customer support calls usa microsoft office 2011 customer telephone microsoft office 2011 customer support calls usa office 2011 customer support contact microsoft office 2011 customer telephone usa microsoft office 2011 customer support contact office 2011 customer support contact number microsoft office 2011 customer calls microsoft office 2011 customer support contact number office 2011 customer support contact number usa microsoft office 2011 customer calls usa microsoft office 2011 customer support contact number usa office 2011 customer support help microsoft office 2011 customer contact microsoft office 2011 customer support help office 2011 customer support help number microsoft office 2011 customer contact usa microsoft office 2011 customer support help number office 2011 customer support help number usa microsoft office 2011 customer help microsoft office 2011 customer support help number usa office 2011 customer support helpdesk microsoft office 2011 customer help usa microsoft office 2011 customer support helpdesk office 2011 customer support helpdesk number microsoft office 2011 customer helpdesk microsoft office 2011 customer support helpdesk number office 2011 customer support helpdesk number usa microsoft office 2011 customer helpdesk usa microsoft office 2011 customer support helpdesk number usa office 2011 customer support helpline microsoft office 2011 customer helpline microsoft office 2011 customer support helpline office 2011 customer support helpline number microsoft office 2011 customer helpline usa microsoft office 2011 customer support helpline number office 2011 customer support helpline number usa microsoft office 2011 customer toll free microsoft office 2011 customer support helpline number usa office 2011 customer support helpline phone microsoft office 2011 customer toll free usa microsoft office 2011 customer support helpline phone office 2011 customer support helpline phone number microsoft office 2011 help microsoft office 2011 customer support helpline phone number office 2011 customer support helpline phone number usa microsoft office 2011 help number microsoft office 2011 customer support helpline phone number usa office 2011 customer support helpline telephone microsoft office 2011 help number usa microsoft office 2011 customer support helpline telephone office 2011 customer support helpline telephone number microsoft office 2011 help phone microsoft office 2011 customer support helpline telephone number office 2011 customer support helpline telephone number usa microsoft office 2011 help phone usa microsoft office 2011 customer support helpline telephone number usa office 2011 customer support toll free microsoft office 2011 help telephone microsoft office 2011 customer support toll free office 2011 customer support toll free number microsoft office 2011 help telephone usa microsoft office 2011 customer support toll free number office 2011 customer support toll free number usa microsoft office 2011 help calls microsoft office 2011 customer support toll free number usa office 2011 customer support toll free phone microsoft office 2011 help calls usa microsoft office 2011 customer support toll free phone office 2011 customer support toll free phone number microsoft office 2011 help conatct microsoft office 2011 customer support toll free phone number office 2011 customer support toll free phone number usa microsoft office 2011 help conatct usa microsoft office 2011 customer support toll free phone number usa office 2011 customer support toll free telephone microsoft office 2011 help toll free microsoft office 2011 customer support toll free telephone office 2011 customer support toll free telephone number microsoft office 2011 help toll free usa microsoft office 2011 customer support toll free telephone number office 2011 customer support toll free telephone number usa microsoft office 2011 helpdesk microsoft office 2011 customer support toll free telephone number usa office 2011 customer service number microsoft office 2011 helpdesk number microsoft office 2011 customer service number office 2011 customer service number usa microsoft office 2011 helpdesk number usa microsoft office 2011 customer service number usa office 2011 customer service phone microsoft office 2011 helpdesk phone microsoft office 2011 customer service phone office 2011 customer service phone number microsoft office 2011 helpdesk phone usa microsoft office 2011 customer service phone number office 2011 customer service phone number usa microsoft office 2011 helpdesk telephone microsoft office 2011 customer service phone number usa office 2011 customer service telephone microsoft office 2011 helpdesk telephone usa microsoft office 2011 customer service telephone office 2011 customer service telephone number microsoft office 2011 helpdesk calls microsoft office 2011 customer service telephone number office 2011 customer service telephone number usa microsoft office 2011 helpdesk calls usa microsoft office 2011 customer service telephone number usa office 2011 customer service calls microsoft office 2011 helpdesk contact microsoft office 2011 customer service calls office 2011 customer service call number microsoft office 2011 helpdesk contact usa microsoft office 2011 customer service call number office 2011 customer service calls usa microsoft office 2011 helpdesk toll free microsoft office 2011 customer service calls usa office 2011 customer service contact microsoft office 2011 helpdesk toll free usa microsoft office 2011 customer service contact office 2011 customer service contact number microsoft office 2011 helpline microsoft office 2011 customer service contact number office 2011 customer service contact number usa microsoft office 2011 helpline number microsoft office 2011 customer service contact number usa office 2011 customer service help microsoft office 2011 helpline number usa microsoft office 2011 customer service help office 2011 customer service help number microsoft office 2011 helpline phone microsoft office 2011 customer service help number office 2011 customer service help number usa microsoft office 2011 helpline phone usa microsoft office 2011 customer service help number usa office 2011 customer service helpdesk microsoft office 2011 helpline talephone microsoft office 2011 customer service helpdesk office 2011 customer service helpdesk number microsoft office 2011 helpline talephone usa microsoft office 2011 customer service helpdesk number office 2011 customer service helpdesk number usa microsoft office 2011 helpline calls microsoft office 2011 customer service helpdesk number usa office 2011 customer service helpline microsoft office 2011 helpline calls usa microsoft office 2011 customer service helpline -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:26:59 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:26:59 -0000 Subject: [GHC] #11923: Toll Free 1800-213-2171 Microsoft Office 365 Help & Support Message-ID: <050.31ddb36bdd0219b826d8f8234dec76bd@haskell.org> #11923: Toll Free 1800-213-2171 Microsoft Office 365 Help & Support -------------------------------------+------------------------------------- Reporter: dsvgfdsgfds | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- office 2011 customer service helpline number microsoft office 2011 helpline contact microsoft office 2011 customer service helpline number office 2011 customer service helpline number usa microsoft office 2011 helpline contact usa microsoft office 2011 customer service helpline number usa office 2011 customer service helpline phone microsoft office 2011 helpline toll free microsoft office 2011 customer service helpline phone office 2011 customer service helpline phone number microsoft office 2011 helpline toll free usa microsoft office 2011 customer service helpline phone number office 2011 customer service helpline phone number usa microsoft office 2011 toll free microsoft office 2011 customer service helpline phone number usa office 2011 customer service helpline telephone microsoft office 2011 toll free number microsoft office 2011 customer service helpline telephone office 2011 customer service helpline telephone number microsoft office 2011 toll free number usa microsoft office 2011 customer service helpline telephone number office 2011 customer service helpline telephone number usa microsoft office 2011 toll free phone microsoft office 2011 customer service helpline telephone number usa office 2011 customer service toll free microsoft office 2011 toll free phone usa microsoft office 2011 customer service toll free office 2011 customer service toll free number microsoft office 2011 toll free telephone microsoft office 2011 customer service toll free number office 2011 customer service toll free number usa microsoft office 2011 toll free telephone usa microsoft office 2011 customer service toll free number usa office 2011 customer service toll free phone microsoft office 2011 toll free calls microsoft office 2011 customer service toll free phone office 2011 customer service toll free phone number microsoft office 2011 toll free calls usa microsoft office 2011 customer service toll free phone number office 2011 customer service toll free phone number usa microsoft office 2011 toll free contact microsoft office 2011 customer service toll free phone number usa office 2011 customer service toll free telephone microsoft office 2011 toll free contact usa microsoft office 2011 customer service toll free telephone office 2011 customer service toll free telephone number microsoft office 2011 phone number microsoft office 2011 customer service toll free telephone number office 2011 customer service toll free telephone number usa microsoft office 2011 telephone number microsoft office 2011 customer service toll free telephone number usa office 2011 customer care number microsoft office 2011 call number microsoft office 2011 customer care number office 2011 customer care number usa microsoft office 2011 contact number microsoft office 2011 customer care number usa office 2011 customer care phone microsoft office 2011 contact number usa microsoft office 2011 customer care phone office 2011 customer care phone number microsoft office 2011 contact phone microsoft office 2011 customer care phone number office 2011 customer care phone number usa microsoft office 2011 contact phone usa microsoft office 2011 customer care phone number usa office 2011 customer care telephone microsoft office 2011 contact telephone microsoft office 2011 customer care telephone office 2011 customer care telephone number microsoft office 2011 contact telephone usa microsoft office 2011 customer care telephone number office 2011 customer care telephone number usa microsoft office 2011 contact toll free microsoft office 2011 customer care telephone number usa office 2011 customer care calls microsoft office 2011 contact toll free usa microsoft office 2011 customer care calls office 2011 customer care call number microsoft office 2011 customer care call number office 2011 customer care calls usa microsoft office 2011 customer care calls usa office 2011 customer care contact microsoft office 2011 customer care contact office 2011 customer care contact number microsoft office 2011 customer care contact number office 2011 customer care contact number usa microsoft office 2011 customer care contact number usa office 2011 customer care help microsoft office 2011 customer care help office 2011 customer care help number microsoft office 2011 customer care help number office 2011 customer care help number usa microsoft office 2011 customer care help number usa office 2011 customer care helpdesk microsoft office 2011 customer care helpdesk office 2011 customer care helpdesk number microsoft office 2011 customer care helpdesk number office 2011 customer care helpdesk number usa microsoft office 2011 customer care helpdesk number usa office 2011 customer care helpline microsoft office 2011 customer care helpline office 2011 customer care helpline number microsoft office 2011 customer care helpline number office 2011 customer care helpline number usa microsoft office 2011 customer care helpline number usa office 2011 customer care helpline phone microsoft office 2011 customer care helpline phone office 2011 customer care helpline phone number microsoft office 2011 customer care helpline phone number office 2011 customer care helpline phone number usa microsoft office 2011 customer care helpline phone number usa office 2011 customer care helpline telephone microsoft office 2011 customer care helpline telephone office 2011 customer care helpline telephone number microsoft office 2011 customer care helpline telephone number office 2011 customer care helpline telephone number usa microsoft office 2011 customer care helpline telephone number usa office 2011 customer care toll free microsoft office 2011 customer care toll free office 2011 customer care toll free number microsoft office 2011 customer care toll free number office 2011 customer care toll free number usa microsoft office 2011 customer care toll free number usa office 2011 customer care toll free phone microsoft office 2011 customer care toll free phone office 2011 customer care toll free phone number microsoft office 2011 customer care toll free phone number office 2011 customer care toll free phone number usa microsoft office 2011 customer care toll free phone number usa office 2011 customer care toll free telephone microsoft office 2011 customer care toll free telephone office 2011 customer care toll free telephone number microsoft office 2011 customer care toll free telephone number office 2011 customer care toll free telephone number usa microsoft office 2011 customer care toll free telephone number usa office 2011 technical issues number microsoft office 2011 technical issues number office 2011 technical issues number usa microsoft office 2011 technical issues number usa office 2011 technical issues phone microsoft office 2011 technical issues phone office 2011 technical issues phone number microsoft office 2011 technical issues phone number office 2011 technical issues phone number usa microsoft office 2011 technical issues phone number usa office 2011 technical issues telephone microsoft office 2011 technical issues telephone office 2011 technical issues telephone number microsoft office 2011 technical issues telephone number office 2011 technical issues telephone number usa microsoft office 2011 technical issues telephone number usa office 2011 technical issues calls microsoft office 2011 technical issues calls office 2011 technical issues call number microsoft office 2011 technical issues call number office 2011 technical issues calls usa microsoft office 2011 technical issues calls usa office 2011 technical issues contact microsoft office 2011 technical issues contact office 2011 technical issues contact number microsoft office 2011 technical issues contact number office 2011 technical issues contact number usa microsoft office 2011 technical issues contact number usa office 2011 technical issues help microsoft office 2011 technical issues help office 2011 technical issues help number microsoft office 2011 technical issues help number office 2011 technical issues help number usa microsoft office 2011 technical issues help number usa office 2011 technical issues helpdesk microsoft office 2011 technical issues helpdesk office 2011 technical issues helpdesk number microsoft office 2011 technical issues helpdesk number office 2011 technical issues helpdesk number usa microsoft office 2011 technical issues helpdesk number usa office 2011 technical issues helpline microsoft office 2011 technical issues helpline office 2011 technical issues helpline number microsoft office 2011 technical issues helpline number office 2011 technical issues helpline number usa microsoft office 2011 technical issues helpline number usa office 2011 technical issues helpline phone microsoft office 2011 technical issues helpline phone office 2011 technical issues helpline phone number microsoft office 2011 technical issues helpline phone number office 2011 technical issues helpline phone number usa microsoft office 2011 technical issues helpline phone number usa office 2011 technical issues helpline telephone microsoft office 2011 technical issues helpline telephone office 2011 technical issues helpline telephone number microsoft office 2011 technical issues helpline telephone number office 2011 technical issues helpline telephone number usa microsoft office 2011 technical issues helpline telephone number usa office 2011 technical issues toll free microsoft office 2011 technical issues toll free office 2011 technical issues toll free number microsoft office 2011 technical issues toll free number office 2011 technical issues toll free number usa microsoft office 2011 technical issues toll free number usa office 2011 technical issues toll free phone microsoft office 2011 technical issues toll free phone office 2011 technical issues toll free phone number microsoft office 2011 technical issues toll free phone number office 2011 technical issues toll free phone number usa microsoft office 2011 technical issues toll free phone number usa office 2011 technical issues toll free telephone microsoft office 2011 technical issues toll free telephone office 2011 technical issues toll free telephone number microsoft office 2011 technical issues toll free telephone number office 2011 technical issues toll free telephone number usa microsoft office 2011 technical issues toll free telephone number usa office 2011 technical problem number microsoft office 2011 technical problem number office 2011 technical problem number usa microsoft office 2011 technical problem number usa office 2011 technical problem phone microsoft office 2011 technical problem phone office 2011 technical problem phone number microsoft office 2011 technical problem phone number office 2011 technical problem phone number usa microsoft office 2011 technical problem phone number usa office 2011 technical problem telephone microsoft office 2011 technical problem telephone office 2011 technical problem telephone number microsoft office 2011 technical problem telephone number office 2011 technical problem telephone number usa microsoft office 2011 technical problem telephone number usa office 2011 technical problem calls microsoft office 2011 technical problem calls office 2011 technical problem call number microsoft office 2011 technical problem call number office 2011 technical problem calls usa microsoft office 2011 technical problem calls usa office 2011 technical problem contact microsoft office 2011 technical problem contact office 2011 technical problem contact number microsoft office 2011 technical problem contact number office 2011 technical problem contact number usa microsoft office 2011 technical problem contact number usa office 2011 technical problem help microsoft office 2011 technical problem help office 2011 technical problem help number microsoft office 2011 technical problem help number office 2011 technical problem help number usa microsoft office 2011 technical problem help number usa office 2011 technical problem helpdesk microsoft office 2011 technical problem helpdesk office 2011 technical problem helpdesk number microsoft office 2011 technical problem helpdesk number office 2011 technical problem helpdesk number usa microsoft office 2011 technical problem helpdesk number usa office 2011 technical problem helpline microsoft office 2011 technical problem helpline office 2011 technical problem helpline number microsoft office 2011 technical problem helpline number office 2011 technical problem helpline number usa microsoft office 2011 technical problem helpline number usa office 2011 technical problem helpline phone microsoft office 2011 technical problem helpline phone office 2011 technical problem helpline phone number microsoft office 2011 technical problem helpline phone number office 2011 technical problem helpline phone number usa microsoft office 2011 technical problem helpline phone number usa office 2011 technical problem helpline telephone microsoft office 2011 technical problem helpline telephone office 2011 technical problem helpline telephone number microsoft office 2011 technical problem helpline telephone number office 2011 technical problem helpline telephone number usa microsoft office 2011 technical problem helpline telephone number usa office 2011 technical problem toll free microsoft office 2011 technical problem toll free office 2011 technical problem toll free number microsoft office 2011 technical problem toll free number office 2011 technical problem toll free number usa microsoft office 2011 technical problem toll free number usa -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:29:02 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:29:02 -0000 Subject: [GHC] #11924: Microsoft Outlook Email 1800-213-2171 Help & Support Phone Number Message-ID: <050.a4acd1a5a12800a3b6687fe9e50e035b@haskell.org> #11924: Microsoft Outlook Email 1800-213-2171 Help & Support Phone Number -------------------------------------+------------------------------------- Reporter: dsvgfdsgfds | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- 2007 microsoft office product key windows outlook help windows xp troubleshooting 2007 office product key windows outlook express windows xp technical support 2007 product key for microsoft office windows 2010 outlook help windows xp support buy microsoft office 2007 troubleshooting microsoft outlook windows xp restore buy microsoft office 2007 product key troubleshoot microsoft outlook windows xp repair buy microsoft office 2010 technical support microsoft outlook windows xp product key finder buy microsoft office online support microsoft outlook 2003 windows xp problems buy microsoft office product key support microsoft outlook windows xp pro product key buy office 2007 product key support microsoft office outlook windows xp key codes buy office 2010 product key support for microsoft outlook windows xp how to install buy product key for microsoft office 2007 problems with outlook express windows xp customer service contact microsoft office licensing support phone problems with outlook 2010 windows xp activation key download microsoft office problems with outlook 2007 windows xp help download microsoft office 2010 product key problems with outlook 2003 windows vista tech support error 1935 office 2007 problems with microsoft outlook windows vista tech help Fix Microsoft Office problems microsoft outlook windows vista support get microsoft office problem with outlook windows vista repair get microsoft office product key problem with microsoft outlook windows vista product key help microsoft office word problem microsoft outlook windows vista help help with microsoft office outlook web app sign windows vista customer service help with office 2007 outlook web app help windows vista activation key how to install microsoft office outlook web access help windows update problems how to install microsoft office 2007 outlook web access windows upgrades how to install microsoft office 2010 outlook troubleshooting windows update fix it how to reinstall microsoft office 2010 outlook technical support windows technical support how to reinstall ms office 2007 outlook technical help windows tech support phone how to reinstall office 2007 outlook tech support windows product keys how to reinstall office 2010 outlook support phone number windows product key buy how to uninstall office 2011 outlook problems and solutions windows outlook help install microsoft office outlook phone support windows outlook express install microsoft office 2007 outlook online support windows office 2010 product key Install Microsoft office 2010 outlook microsoft support windows mail tech support install office 2007 outlook live support windows customer service number Install Office 2010 outlook helpline windows 8 technical support install office home and student 2010 outlook help desk windows 8 tech support installing microsoft office outlook help 2003 windows 8 tech help installing microsoft office 2010 outlook for mac help windows 8 phone number Mac office phone number outlook express support windows 8 customer service microsoft 2010 office outlook express mail windows 7 upgrade key microsoft 2010 office help outlook express help windows 7 ultimate upgrade key Microsoft 2010 office setup outlook express email help windows 7 ultimate key Microsoft 2010 office upgrade outlook express email account windows 7 product key microsoft excel office help outlook express email windows 7 pro product key microsoft office 2003 product key outlook express download windows 7 license key purchase microsoft office 2003 support outlook error 0x800ccc90 windows 7 license key microsoft office 2007 outlook error 0x800ccc0f windows 7 genuine product key microsoft office 2007 download outlook error 0x80070057 windows 7 activation key microsoft office 2007 error outlook error 0x80042109 windows 2010 outlook help microsoft office 2007 error code 0x8007232b outlook email help Update Windows XP microsoft office 2007 help outlook calendar help restore windows xp to factory settings microsoft office 2007 installation outlook 2013 problems restore windows xp microsoft office 2007 key outlook 2010 updates repair windows xp microsoft office 2007 product key outlook 2007 support remove windows xp microsoft office 2007 professional office outlook web access help reinstall windows xp microsoft office 2007 support ms outlook support windows 7 purchase windows vista product key microsoft office 2010 activation microsoft support outlook express product keys for windows 7 microsoft office 2010 activation key microsoft support outlook 2003 product key windows xp microsoft office 2010 error 1935 microsoft support outlook product key windows 7 Microsoft office 2010 help microsoft outlook webmail product key for windows xp pro microsoft office 2010 help phone number microsoft outlook web access help product key for windows xp microsoft office 2010 install microsoft outlook web access product key for windows 7 microsoft office 2010 installation microsoft outlook troubleshooting ms outlook support windows 7 microsoft office 2010 installer microsoft outlook troubleshoot microsoft windows upgrade microsoft office 2010 key microsoft outlook technical support phone number microsoft windows technical support microsoft office 2010 key code microsoft outlook technical support microsoft windows tech support microsoft office 2010 product key microsoft outlook tech support microsoft windows tech help Microsoft office 2010 setup microsoft outlook support phone number microsoft windows support microsoft office 2010 support microsoft outlook support phone microsoft windows problems microsoft office 2010 tech support microsoft outlook support microsoft windows problem microsoft office 2010 uninstall microsoft outlook problems sending email microsoft windows phone number Microsoft office 2010 update microsoft outlook problems microsoft windows customer support Microsoft office 2010 upgrade microsoft outlook problem microsoft windows customer service microsoft office 2011 mac microsoft outlook online microsoft windows 8 tech support microsoft office 2011 mac product key microsoft outlook office support microsoft windows 8 contact microsoft office 2013 microsoft outlook office 2010 help mac windows support software microsoft office 25 character product key microsoft outlook mail key for windows 7 ultimate microsoft office activation help microsoft outlook issues how to uninstall windows vista microsoft office activation key microsoft outlook help desk how to repair windows xp microsoft office activation phone number microsoft outlook help 2010 how to reinstall windows xp microsoft office and excel microsoft outlook help how to install windows xp service pack 2 microsoft office and student 2007 product key microsoft outlook express email how reinstall windows vista microsoft office contact number microsoft outlook express get windows 7 product key microsoft office customer service microsoft outlook exchange get product key windows xp microsoft office customer service number microsoft outlook error messages fix microsoft windows microsoft office customer service phone number microsoft outlook email help download windows 7 key microsoft office customer support microsoft outlook email access buy windows xp pro key microsoft office excel 2007 microsoft outlook email buy windows 7 keys microsoft office excel 2010 microsoft outlook calendar help buy windows 7 key microsoft office excel help microsoft outlook 2010 support buy windows 7 activation key microsoft office help excel microsoft outlook 2010 help microsoft office help number microsoft outlook 2010 microsoft office home microsoft outlook 2007 troubleshooting microsoft office home and student product key microsoft outlook 2007 problems microsoft office home student microsoft outlook 2007 help microsoft office home student 2007 key microsoft outlook 2003 troubleshooting microsoft office install microsoft outlook 2003 support microsoft office installation microsoft outlook 2003 problems microsoft office installer microsoft outlook 2003 problem microsoft office key code microsoft outlook 2003 help microsoft office license key microsoft outlook 10 help microsoft office live help microsoft office outlook support microsoft office live support microsoft office outlook problems microsoft office online microsoft office outlook help microsoft office online word microsoft office outlook 2010 help microsoft office outlook microsoft office outlook 2010 microsoft office outlook 2003 support microsoft office outlook 2007 help microsoft office outlook 2007 microsoft office outlook 2007 microsoft office outlook 2007 help microsoft office outlook 2003 support microsoft office outlook 2010 microsoft office outlook microsoft office outlook 2010 help microsoft mail outlook microsoft office outlook help microsoft help outlook microsoft office outlook problems microsoft 2003 outlook support microsoft office outlook support help with outlook 2010 microsoft office phone number help with outlook 2007 microsoft office product key help with microsoft outlook microsoft office product key 2007 help outlook express microsoft office product key finder help microsoft outlook microsoft office product keys help for outlook express microsoft office professional 2010 product key get my outlook email microsoft office support forgot microsoft outlook email password microsoft office support phone fix outlook problems microsoft office support phone number email settings for outlook microsoft office tech help contact outlook email support microsoft office tech support can't sign in to outlook email from msn microsoft office technical support can't send outlook email microsoft office telephone support number can't open outlook email microsoft office troubleshooting can't open emails in outlook microsoft office upgrade can't log in to outlook microsoft office word online cannot open outlook emails microsoft office word publisher cannot access outlook email microsoft outlook office 2010 help att outlook email settings microsoft outlook office support 2010 outlook help microsoft word office support -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:29:52 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:29:52 -0000 Subject: [GHC] #11925: About Microsoft 1800-213-2171 Outlook Tech Support Phone Number Message-ID: <050.581f7f1c90646078b22ce00cc09bb4eb@haskell.org> #11925: About Microsoft 1800-213-2171 Outlook Tech Support Phone Number -------------------------------------+------------------------------------- Reporter: dsvgfdsgfds | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- call microsoft tech support phone number 1800 microsoft contact contact?windows?customer?care microsoft?tech?support?phone calls from microsoft technical support 1800 microsoft contact number contact?windows?customer?care?number ??microsoft??technical?support phone?number contact microsoft customer service 1800 microsoft customer care calls contact?windows?customer?care?phone? ??microsoft?helpline?phone?number contact microsoft customer service and support online 1800 microsoft customer care contact ?contact?windows?customer?care?phone?number microsoft?s?customer?service?telephone?number contact microsoft customer support 1800 microsoft customer care contact number ?contact?windows?customer?care?phone?number canada microsoft?support?telephone?number contact microsoft email support 1800 microsoft customer care help contact?windows?customer?care?phone?number?usa ??microsoft?technical support?telephone?number contact microsoft live support 1800 microsoft customer care help desk contact?windows?customer?service ?contact?microsoft???customer service?phone?number contact microsoft office by phone 1800 microsoft customer care help desk number ?contact?windows?customer?service? ?customer?service microsoft??phone contact microsoft office support 1800 microsoft customer care help number ?contact?windows?customer?service?phone ?microsoft???phone number contact microsoft office support by phone 1800 microsoft customer care helpline ?contact?windows?customer?service?phone?number ?microsoft contact?phone?number contact microsoft phone number 1800 microsoft customer care helpline number ?contact?windows?customer?service?phone?number canada microsoft??contact?phone?number?in?usa contact microsoft support by email 1800 microsoft customer care number ?contact?windows?customer?service?phone?number usa microsoft??customer?service contact microsoft support by phone 1800 microsoft customer care number for usa ?contact?windows?tech?support?phone?number microsoft??customer?service?phone contact microsoft support email 1800 microsoft customer care phone contact?windows?tech?support?phone?number? canada ?microsoft customer?service?phone?number contact microsoft support phone number 1800 microsoft customer care phone number ?contact?windows?tech?support?phone?number?usa ?microsoft customer?service?telephone?number contact microsoft support team 1800 microsoft customer care telephone help?desk?inesupport?for?windows?customer ?microsoft??customer support contact microsoft tech support 1800 microsoft customer care telephone number ?help?desk?inesupport?for?windows?customer?service microsoft??customer?support?number contact microsoft tech support phone number 1800 microsoft customer care toll free ?online?help?number?windows?help? ?microsoft customer?support?phone?number contact microsoft technical support 1800 microsoft customer care toll free number ?online?help?number?windows?help?desk ?microsoft??email sign?in?support?number contact microsoft technical support by phone 1800 microsoft customer care toll free phone ?online?tech?support?windows?contact? ?microsoft email?signature?support?number contact microsoft windows support 1800 microsoft customer care toll free phone number ?online?tech?support?windows?contact?number microsoft??email?support?phone?number contact number for microsoft 1800 microsoft customer care toll free telephone ?online?toll?free?number?for?windows? ?microsoft??email technical?support?number contact number for microsoft office 1800 microsoft customer care toll free telephone number ?online?toll?free?number?for?windows?? ?microsoft express?tech?support?phone?number contact number for microsoft office support 1800 microsoft customer service ?online?toll?free?number?for?windows?customer support ?microsoft exprss?technical?support?phone?number contact number for microsoft support 1800 microsoft customer service calls ?online?toll?free?number?for?windows?customer support?canada microsoft??help?desk?phone?number?in?usa contact phone number for microsoft 1800 microsoft customer service contact ?online?toll?free?number?for?windows?customer support?usa microsoft??helpline?number contact phone number for microsoft support 1800 microsoft customer service contact number ?online?toll?free?number?for?windows?customer service ?microsoft??phone?number?customer?service contact windows support phone number 1800 microsoft customer service help ?online?toll?free?number?for?windows?customer?servive ?microsoft phone?number?in?usa contacting microsoft support by phone 1800 microsoft customer service help desk ?online?toll?free?number?service?for?windows ?microsoft phone?number?support?for?technical?issue in?usa customer service for microsoft 1800 microsoft customer service help desk number ?online?toll?free?number?service?for?windows?customer microsoft??ssupport?phone?number customer service for microsoft office 1800 microsoft customer service help number ?toll?free?customer?care?number? ?microsoft support?number customer service microsoft office 1800 microsoft customer service helpline ?toll?free?number?for?windows?support ?microsoft support?number?toll?free?number customer service number for microsoft 1800 microsoft customer service helpline number ?toll?free?number?for?windows?technical?support ?microsoft support?phone?number customer service number for microsoft office 1800 microsoft customer service number ?toll?free?number?for?windows?technical?support?usa microsoft??tech?support customer service phone number for microsoft 1800 microsoft customer service phone ?toll?free?number?for?windowstech?support?canada microsoft??tech?support??phone?number?free?in?usa customer support for microsoft 1800 microsoft customer service phone number ?toll?free?number?windows?customer?care ?microsoft??tech?support number customer support microsoft phone number 1800 microsoft customer service telephone ?toll?free?number?windows?customer?care?number ?microsoft tech?support?phone?number email microsoft support team 1800 microsoft customer service telephone number ?toll?free?number?windows?customer?care?service ?microsoft technical?support?number hotmail customer service phone number 1800 microsoft customer service toll free ?toll?free?number?windows?customer?care?support ?microsoft technical?support?phone?number hotmail customer support number 1800 microsoft customer service toll free number ?toll?free?phone?number?windowstech?support ?microsoft toll?free?customer?care?number i need a phone number for microsoft support 1800 microsoft customer service toll free phone ?window?customer?care?online ?microsoft??toll free?number microsoft 24 hour support number 1800 microsoft customer service toll free phone number ?window?customer?care?phone?number ?microsoft antivirus?customer?care microsoft 365 contact number 1800 microsoft customer service toll free telephone ?windows?customer??support??toll?free?number ?microsoft contact?number?usa microsoft 365 customer service number 1800 microsoft customer service toll free telephone number ?windows?customer?care?number ?microsoft contact?phone?number microsoft 365 customer service phone number 1800 microsoft customer support ?windows?customer?care?online?number? ?microsoft?contact?phone number?usa microsoft 365 help phone number 1800 microsoft customer support calls windows?customer?care?online?number?canada ?microsoft?customer?care number?usa?toll?free microsoft 365 phone number 1800 microsoft customer support contact windows?customer?care?online?number?support? ?microsoft?customer?care tchnical?support microsoft 365 support number 1800 microsoft customer support contact number ?windows?customer?care?online?number?usa ?microsoft customer?care?usa microsoft 800 number tech support 1800 microsoft customer support help ?windows?customer?care?online?phone?number support? ?microsoft customer?service?number microsoft access technical support 1800 microsoft customer support help desk ?windows?customer?care?online?support??number ?microsoft customer?service?number?usa microsoft account contact phone number 1800 microsoft customer support help desk number ?windows?customer?care?toll?free?number?canada microsoft?customer?service?phone?number microsoft account customer service 1800 microsoft customer support help number ?windows?customer?care?toll?free?number?usa ?microsoft customer?service?phone?number?usa microsoft account customer service number 1800 microsoft customer support helpline ?windows?customer?service?number ?microsoft customer?service?phone?numbers microsoft account customer service phone number 1800 microsoft customer support helpline number ?windows?customer?service?phone ?microsoft customer?support?number microsoft account customer support phone number 1800 microsoft customer support number ?windows?customer?service?phone?number ?microsoft customer?support?phone?number microsoft account help number 1800 microsoft customer support phone windows?customer?service?phone?number?canada ?microsoft?gold?support phone?number microsoft account phone number 1800 microsoft customer support phone number ?windows?customer?service?phone?number?usa ?microsoft?help desk?phone?number microsoft account support number 1800 microsoft customer support telephone ?windows?customer?support ?microsoft?help?phone number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:30:45 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:30:45 -0000 Subject: [GHC] #11926: GOODNEWS CALL 1844 446 4.460 POGO CLUB REFUND Sup port Phone Num ber Message-ID: <044.3f31b7f598b5373a84afa5962ab757c2@haskell.org> #11926: GOODNEWS CALL 1844 446 4.460 POGO CLUB REFUND Sup port Phone Num ber -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- GOODNEWS CALL 1844 446 4.460 POGO CLUB REFUND Sup port Phone Num ber http://upstart.ubuntu.com/wiki/Obama%2B1844 %20446 %204460 %20Turbotax%20Helpdesk%20number,%20helpdesk%20phone%20number. WYNN 1-844 446 -4460 POGO GAME LOGIN ERROR Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number {| class="wikitable" |- ! POGO GAME LOGIN ERROR tech Support Number !! 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Contact Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Contact Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number ?USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 POGO GAME LOGIN ERROR Desktop care phone number. Jack fell on 1844 446 4460 POGO GAME LOGIN ERROR care number and broke his crown and jill came on 1844 446 4460 POGO GAME LOGIN ERROR care helpline number. JAck has a teddy bear called 1844 446 4460 POGO GAME LOGIN ERROR care helpline phone number, and jill has a barbie doll named 1844 446 4460 POGO GAME LOGIN ERROR care Helpline. Twiinkle twinkle little star 1844 446 4460 POGO GAME LOGIN ERROR Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 POGO GAME LOGIN ERROR care Helpdesk number. Up above the world of 1844 446 4460 POGO GAME LOGIN ERROR care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 POGO GAME LOGIN ERROR service phone number sat on a 1844 446 4460 POGO GAME LOGIN ERROR service number, Humpty dumpty had a gret fall 1844 446 4460 POGO GAME LOGIN ERROR Desktop service helpline phone number. All the kings horses all the 1844 446 4460 POGO GAME LOGIN ERROR service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 POGO GAME LOGIN ERROR service helpline, Yes sir yes sir three 1844 446 4460 POGO GAME LOGIN ERROR Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 POGO GAME LOGIN ERROR service helpdesk number one for the dame 1844 446 4460 POGO GAME LOGIN ERROR service helpdesk. One for the little boy 1844 446 4460 POGO GAME LOGIN ERROR support phone number who lives down the lane. Johhny johhny 1844 446 4460 POGO GAME LOGIN ERROR support number, Yes papa Eating sugar 1844 446 4460 POGO GAME LOGIN ERROR support ,No papa. telling lies 1844 446 4460 POGO GAME LOGIN ERROR support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 POGO GAME LOGIN ERROR Desktop support helpline number. A lion and a unicorn 1844 446 4460 POGO GAME LOGIN ERROR support helpline were in the jungle 1844 446 4460 POGO GAME LOGIN ERROR support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 POGO GAME LOGIN ERROR support helpdesk number so the unicorn gave birth to my child 1844 446 4460 POGO GAME LOGIN ERROR Desktop support helpdesk. POGO GAME LOGIN ERROR is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . POGO GAME LOGIN ERROR ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into POGO GAME LOGIN ERROR , including remote access capabilities, remote assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that POGO GAME LOGIN ERROR Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked POGO GAME LOGIN ERROR technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit POGO GAME LOGIN ERROR Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit POGO GAME LOGIN ERROR Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit POGO GAME LOGIN ERROR tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for POGO GAME LOGIN ERROR Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit POGO GAME LOGIN ERROR Care phone number 1-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. POGO GAME LOGIN ERROR technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that POGO GAME LOGIN ERROR technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of POGO GAME LOGIN ERROR technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit POGO GAME LOGIN ERROR Technical Support Phone number +1 844 446 4460 on the url & . Intuit POGO GAME LOGIN ERROR Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to POGO GAME LOGIN ERROR , Support phone number 1844 446 4460 , POGO GAME LOGIN ERROR Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit POGO GAME LOGIN ERROR Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit POGO GAME LOGIN ERROR Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best POGO GAME LOGIN ERROR support. This is best toll free number 1844 -446 -4460 .this is technical support number for POGO GAME LOGIN ERROR 24|7.you can call any time for any blem of POGO GAME LOGIN ERROR like POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR data recovery, POGO GAME LOGIN ERROR Desktop enterprises, POGO GAME LOGIN ERROR and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 POGO GAME LOGIN ERROR tech support , POGO GAME LOGIN ERROR Tech Support Phone Number USA , POGO GAME LOGIN ERROR Technical Support phone Number, POGO GAME LOGIN ERROR support phone number , POGO GAME LOGIN ERROR support phone number USA , POGO GAME LOGIN ERROR technical support number USA , POGO GAME LOGIN ERROR tech support telephone number, POGO GAME LOGIN ERROR help phone number, Intuit technical support phone number, POGO GAME LOGIN ERROR support number , Quickbook tech support phone number, Intuit POGO GAME LOGIN ERROR Desktop tech support phone number, POGO GAME LOGIN ERROR enterprise support phone number, POGO GAME LOGIN ERROR component repair tool for windows xp|vista|7 , POGO GAME LOGIN ERROR Desktop not connecting to internet. POGO GAME LOGIN ERROR unsupported system configuration, Dealing some random error message installing POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR Data export or import issues, POGO GAME LOGIN ERROR failed to make an internet connection, POGO GAME LOGIN ERROR multi user mode not syncing, POGO GAME LOGIN ERROR not opening in multi-user mode, POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 .POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 . Showing error while updating company data file in POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But POGO GAME LOGIN ERROR Desktop is also a fairly complex application. This complexity means that POGO GAME LOGIN ERROR is ne to having blems like how to restore POGO GAME LOGIN ERROR auto data recovery, POGO GAME LOGIN ERROR Connection blem and connection configuration, POGO GAME LOGIN ERROR Installation Support Phone Number, POGO GAME LOGIN ERROR Company File Not Opening in Multi User Mode, POGO GAME LOGIN ERROR Keeps Disconnecting From Server, POGO GAME LOGIN ERROR Error Message Server Busy, POGO GAME LOGIN ERROR Tech Support Phone Number, POGO GAME LOGIN ERROR Data File Needs To Be Updated. POGO GAME LOGIN ERROR Data File Recovery Extention, POGO GAME LOGIN ERROR connection has been lost, POGO GAME LOGIN ERROR Desktop Installation Error 1722,1334,15215&1904, POGO GAME LOGIN ERROR Desktop error code 6000,3371, POGO GAME LOGIN ERROR error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with POGO GAME LOGIN ERROR , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our POGO GAME LOGIN ERROR level 5 technicians are available for fix any queries all ducts of POGO GAME LOGIN ERROR . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of POGO GAME LOGIN ERROR Desktop . This is our best online customer care service. Contact us for resolve your any POGO GAME LOGIN ERROR blems. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:31:10 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:31:10 -0000 Subject: [GHC] #11927: Call 1800.213.2171 microsoft outlook email technical support number Message-ID: <050.c7b53393e656a2cdd624d99bc8dbec17@haskell.org> #11927: Call 1800.213.2171 microsoft outlook email technical support number -------------------------------------+------------------------------------- Reporter: dsvgfdsgfds | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- microsoft account support phone number 1800 microsoft customer support telephone number ?windows?customer?support?number ?microsoft help?support microsoft address and phone number 1800 microsoft customer support toll free ?windows?customer?support?phone ?microsoft?internet security?customer?service?phone number microsoft assistance phone number 1800 microsoft customer support toll free number ?windows?customer?support?phone?number ?microsoft outlook?customer?service?contact?number microsoft billing phone number 1800 microsoft customer support toll free phone ?windows?customer?support?phone?number??canada ?microsoft?outlook customer?service?phone?number microsoft call center number 1800 microsoft customer support toll free phone number ?windows?customer?support?phone?number?usa ?microsoft outlook?customer?service?toll?free?number microsoft calls to fix computer 1800 microsoft customer support toll free telephone ?windows?customer?support?services ?microsoft?outlook customer?support?contact?number microsoft computer support phone number 1800 microsoft customer support toll free telephone number ?windows?customer?support?services?number microsoft?outlook?customer?support?telephone number microsoft contact number canada 1800 microsoft help ?windows?customer support?services?number?canada ?microsoft?outlook?tech?support contact?number microsoft contact number uk 1800 microsoft help desk ?windows customer?support?services?number?usa ?microsoft?outlook?tech?support phone?number microsoft contact number usa 1800 microsoft help desk number ?windows customer?support?services?phone?number ?microsoft?outlook?tech?support telephone?number microsoft contact phone number 1800 microsoft help number ?windows help?desk?support?number ?microsoft?outlook?tech?support?toll?free number microsoft contact phone numbers 1800 microsoft helpline ?windows?help?desk support?phone ?microsoft?outlook?technical?support?contact?number microsoft contact support number 1800 microsoft helpline number windows?help?desk?support?phone?number ?microsoft?outlook?technical support?phone?number microsoft contact support phone number 1800 microsoft helpline phone windows?help?desk?support?phone?number?canada ?microsoft?outlook technical?support?telephone? number microsoft contact telephone number 1800 microsoft helpline phone number ?windows?help?desk?support?phone?number?usa ?microsoft?phone number?customer?service microsoft corporate phone number 1800 microsoft helpline telephone windows?help?desk?support?services ?microsoft?phone?number?customer support microsoft corporation phone number 1800 microsoft helpline telephone number ?windows?help?phone?number ?microsoft?phone?number support microsoft customer assistance 1800 microsoft issues phone number windows?mail?customer?care?phone?number ?microsoft?phone?number tech?support microsoft customer care phone number 1800 microsoft number ?windows mail?customer?service?number? ?microsoft?phone?number?usa microsoft customer care toll free number 1800 microsoft number for usa ?windows?mail?help?desk?phone?number ?microsoft?phone?numbers customer?support microsoft customer phone number 1800 microsoft phone ?windows?online customer?care ?microsoft?phone?support microsoft customer service and support 1800 microsoft phone number windows?online?customer?care??number ?microsoft?phone?support?number microsoft customer service and support online 1800 microsoft points windows?online?customer?care?phone? ?microsoft?security?phone?number microsoft customer service and support phone number 1800 microsoft points euro 2012 ?windows?online?customer?care?phone?number microsoft?support?contact?number microsoft customer service canada 1800 microsoft points game windows?online?customer?care?phone?number canada ?microsoft?support contact?phone?number microsoft customer service center 1800 microsoft points in pound windows?online?customer?care?phone?number?usa ?microsoft?support?email address microsoft customer service contact 1800 microsoft points instant windows?online?customer?number ?microsoft?support?number microsoft customer service contact number 1800 microsoft points tesco ?windows?online?customer?service ?microsoft?support number?usa microsoft customer service email 1-800 microsoft support ?windows online?customer?service??number ?microsoft?support?outlook?toll free?number microsoft customer service hotline 1800 microsoft tech support windows?online?customer?service?phone?number ?microsoft?support?phone microsoft customer service hours 1800 microsoft tech support calls windows?online?customer?service?phone?number canada ?microsoft?support phone?number microsoft customer service number 1800 microsoft tech support help windows?online?customer?service?phone?number?usa ?microsoft?support phone?number?usa microsoft customer service number usa 1800 microsoft tech support help desk ?windows?online?customer?support ?microsoft?support telephone?number microsoft customer service phone 1800 microsoft tech support help desk number ?windows?online?support?customer ?microsoft?support telephone?number?usa microsoft customer service phone number 1800 microsoft tech support help number ?windows?online?support?customers ?microsoft?tech?support number microsoft customer service support 1800 microsoft tech support helpline ?windows?online?support?service?number ?microsoft?tech support?number?usa microsoft customer service telephone number 1800 microsoft tech support helpline number ?windows?online?support?service?phone microsoft?tech?support?phone?number microsoft customer service toll free number 1800 microsoft tech support number ?windows?online?support?service?phone?number microsoft?tech?support?phone?number?free microsoft customer service uk 1800 microsoft tech support phone windows?online?support?service?phone?number canada ?microsoft?tech support?phone?number?us microsoft customer services phone number 1800 microsoft tech support phone number ?windows?online?support?service?phone?number usa ?microsoft?technical?support microsoft customer support email 1800 microsoft tech support telephone ?windows?online?tech?support ?microsoft?technical?support help?desk?phone?number microsoft customer support number 1800 microsoft tech support telephone number ?windows?online?tech?support?phone?number microsoft?technical?support?number microsoft customer support phone 1800 microsoft tech support toll free ?windows?online?tech?support?phone?number?canada ?microsoft technical?support?number?usa microsoft customer support phone number 1800 microsoft tech support toll free number ?windows?online?tech?support?phone?number?usa ?microsoft technical?support?phone?number microsoft customer support services 1800 microsoft tech support toll free phone ?windows?online?technical?support ?microsoft technical?support?phone?number?usa microsoft customer support telephone number 1800 microsoft tech support toll free phone number ?windows?online?technical?support services ?microsoft?technologies?phone?number microsoft email contact number 1800 microsoft tech support toll free telephone ?windows?online?technical?support?services?canada microsoft?telephone?support?number microsoft email customer service 1800 microsoft tech support toll free telephone number ?windows?online?technical?support?services?usa microsoft?usa?customer?care?for?tech?support microsoft email customer service number 1800 microsoft technical issues calls ?windows?online?toll?free?number ?microsoft?usa?phone number microsoft email help phone number 1800 microsoft technical issues contact ?windows?support?toll?free?number ?microsoftcustomer?service phone?number microsoft email phone number 1800 microsoft technical issues contact number ?windows?tech?support?customer?care ?phone?number?for microsoft???technical?support microsoft email support number 1800 microsoft technical issues help windows?tech?support?customer?care?number ?phone?number?for?microsoft customer?service microsoft email support phone number 1800 microsoft technical issues help desk ?windows?tech?support?customer?care?phone ?phone number?for?microsoft??customer?service microsoft email tech support 1800 microsoft technical issues help desk number ?windows?tech?support?customer?care?phone?number phone?number?for?microsoft??customer?support microsoft excel technical support 1800 microsoft technical issues help number ?windows?tech?support?customer?care?phone?number canada phone?number?for?microsoft??security microsoft genuine tech support phone number 1800 microsoft technical issues helpline ?windows?tech?support?customer?care?phone?number usa ?phone?number?for?microsoft??support microsoft headquarters phone number 1800 microsoft technical issues helpline number ?windows?tech?support?customers ?phone?number?for microsoft??technical?support microsoft help and support 1800 microsoft technical issues number windows?tech?support?customers?number ?phone?number?for?microsoft customer?service microsoft help center phone number 1800 microsoft technical issues phone ?windows?tech?support?customers?phone?number ?phone?number formicrosoft??customer?service microsoft help contact number 1800 microsoft technical issues phone number ?windows?tech?support?customers?phone?number canada ?phone number?formicrosoft??customer?support microsoft help desk number 1800 microsoft technical issues telephone windows?tech?support?customers?phone?number?usa ?phone?number formicrosoft??tech?support microsoft help desk phone number 1800 microsoft technical issues telephone number ?windows?tech?support?number ?phone?number formicrosoft??technical?support microsoft help phone number 1800 microsoft technical issues toll free windows?tech?support?phone?number ?telephone?number?for?microsoft technical?support microsoft help telephone number 1800 microsoft technical issues toll free number ?windows?tech?support?phone?number??canada contact phone?number?for?microsoft microsoft helpline phone number 1800 microsoft technical issues toll free phone ?windows?tech?support?phone?number?usa contact?microsoft?customer service?and?support online microsoft hotline number 1800 microsoft technical issues toll free phone number ?windows?tech?support?services contact?us?microsoft?support microsoft live account support 1800 microsoft technical issues toll free telephone ?windows?tech?support?services?number customer?service number?for?microsoft microsoft live account support phone number 1800 microsoft technical issues toll free telephone number ?windows?tech?support?services phone?number? canada free?helpline?number?for?microsoft microsoft live chat support 1800 microsoft technical problem windows?tech?support?services?phone?number?usa free?helpline?number?for microsoft microsoft live contact number 1800 microsoft technical problem calls windows?technical?service?number free?microsoft?cutomer?service phone?number microsoft live customer service number 1800 microsoft technical problem contact ?windows?technical?service?phone? free?online technical?service?microsoft microsoft live customer service phone number 1800 microsoft technical problem contact number ?windows?technical?service?phone?number helpline support?&?service?for?microsoft microsoft live customer support 1800 microsoft technical problem help windows?technical?service?phone?number?canada helpline?toll?free?number for?microsoft microsoft live customer support number 1800 microsoft technical problem help desk ?windows?technical?service?phone?number?usa microsoft activation?toll?free?phone?number microsoft live help phone number 1800 microsoft technical problem help desk number ?windows?technical?support?customer microsoft canada?customer?care?phone?number microsoft live phone number 1800 microsoft technical problem help number ?windows?technical?support?customer?care microsoft?canada tech?support?phone?number microsoft live support phone number 1800 microsoft technical problem helpline ?windows?technical?support?customer?care? microsoft contact?number microsoft live tech support 1800 microsoft technical problem helpline number ?windows?technical?support?customer?care??canaad microsoft?contact?number?technical?support microsoft live tech support number 1800 microsoft technical problem number ?windows?technical?support?customer?care?number microsoft?contact us?toll?free?number microsoft main office phone number 1800 microsoft technical problem phone ?windows?technical?support?customer?care?phone microsoft?customer care?phone?number microsoft main phone number 1800 microsoft technical problem phone number ?windows?technical?support?customer?care?phone number microsoft customer?care?support?toll?free?number microsoft number customer service 1800 microsoft technical problem telephone ?windows?technical?support?customer?care?usa microsoft customer?service?and?support?online microsoft office 2007 support phone number 1800 microsoft technical problem telephone number ?windows?technical?support?for?windows?7 microsoft?customer?service?and?support?phone number microsoft office 2010 contact number 1800 microsoft technical problem toll free ?windows?technical?support?for?windows?8 microsoft customer?service?number microsoft office 2010 customer service 1800 microsoft technical problem toll free number ?windows?technical?support?phone?number microsoft customer?service?phone?number microsoft office 2010 customer service phone number 1800 microsoft technical problem toll free phone ?windows?technical?support?phone number?canada microsoft?customer?service?toll?free?no microsoft office 2010 help 1800 microsoft technical problem toll free phone number ?windows?technical?support?services?phone?number microsoft?customer?service?toll?free?number?canada microsoft office 2013 customer service 1800 microsoft technical problem toll free telephone ?windows?technical?support?toll?free??number microsoft?customer?service?toll?free?number?uk microsoft office 2013 customer service phone number 1800 microsoft technical problem toll free telephone number ?windows?technical support?toll?free?number microsoft?customer?service?toll?free?number usa microsoft office 2013 phone number 1800 microsoft technical support windows?toll?free?customer?care microsoft?customer?sevice?phone number microsoft office 2013 support phone number 1800 microsoft technical support calls ?windows?toll?free?customer?care?number microsoft?customer support?number microsoft office 2013 tech support phone number 1800 microsoft technical support contact ?windows?toll?free?customer?care?number?phone microsoft?customer?support?phone?number microsoft office 2013 technical support phone number 1800 microsoft technical support contact number ?windows?toll?free?customer?care?phone?no microsoft?customer?support?toll?free?number microsoft office 365 contact number 1800 microsoft technical support help ?windows?toll?free?customer?care?phone?number microsoft?online support?toll?free?number microsoft office 365 customer service number 1800 microsoft technical support help desk ?windows?toll?free?customer?care?phone?number canada microsoft?outlook?customer?service?number microsoft office 365 customer service phone number 1800 microsoft technical support help desk number ?windows?toll?free?customer?care phone?number?usa microsoft?outlook?technical?issues?and?solution contact?number microsoft office 365 customer support phone number 1800 microsoft technical support help number ?windows?toll?free?customer?care?support microsoft?tech?support?helpline?number microsoft office 365 help phone number 1800 microsoft technical support helpline ?windows?toll?free?customer?care?support?number microsoft tech?support?number?usa microsoft office 365 phone number 1800 microsoft technical support helpline number ?windows?toll?free?customer?care?support?phone number microsoft?tech?support?phone?number microsoft office 365 support number 1800 microsoft technical support number ?windows?toll?free?customer?service??phone?number microsoft tech?support?phone?number microsoft office 365 support phone number 1800 microsoft technical support phone ?windows?toll?free?customer?service?number microsoft tech?support?toll?free microsoft office 365 tech support phone number 1800 microsoft technical support phone number ?windows?toll?free?customer?service?phone microsoft?tech?support?toll?free microsoft office activation phone number 1800 microsoft technical support telephone ?windows?toll?free?customer?service?phone?number canada microsoft?tech?support?toll?free?number microsoft office activation toll free number 1800 microsoft technical support telephone number ?windows?toll?free?customer?service?phone number usa microsoft?tech?support?toll?free?number?UK microsoft office contact number 1800 microsoft technical support toll free windows?toll?free?number?customer microsoft?techinical?support?phone number microsoft office contact number usa 1800 microsoft technical support toll free number ?windows?toll?free?number?customer?care microsoft technical?helpline?number microsoft office contact phone 1800 microsoft technical support toll free phone ?windows?toll?free?number?customer?care?service microsoft technical?issue?toll?free?number microsoft office contact phone number 1800 microsoft technical support toll free phone number ?windows?toll?free?number?customer?care?service canada microsoft?technical?issues?and?conflict microsoft office contact support 1800 microsoft technical support toll free telephone ?windows?toll?free?number?customer?care?service?usa microsoft?technical?issues?and?need?to?close microsoft office customer service 1800 microsoft technical support toll free telephone number ?windows?toll?free?number?customer?care support microsoft?technical?issues?and?service microsoft office customer service number 1800 microsoft telephone windows?toll?free?number?customer?care?usa microsoft?technical?issues and?solution?ppt microsoft office customer service phone 1800 microsoft telephone number windows?toll?free?number?for?canada microsoft?technical?issues?and solutions microsoft office customer service phone number 1800 microsoft toll free windows?toll?free?number?for?customers microsoft?technical?issues?and solutions?pdf microsoft office customer service telephone 1800 microsoft toll free number ?windows?toll?free?number?online microsoft?technical?issues company?service microsoft office customer service telephone number 1800 microsoft toll free phone ?windows?toll?free?number?online?support microsoft technical?issues?contact?person microsoft office customer service toll free number 1800 microsoft toll free phone number ?windows?toll?free?number?online?support?services microsoft?technical?issues?customer?support microsoft office customer support 1800 microsoft toll free telephone windows?toll?free?number?usa microsoft?technical?issues?problem?solving microsoft office customer support number 1800 microsoft toll free telephone number ?windows?toll?free?support microsoft?technical issues?services microsoft office customer support phone 1800 number for microsoft windows?toll?free?support?canada microsoft?technical?issues?today microsoft office customer support phone number 1800 number for microsoft support ?windows?toll?free?support?usa microsoft?technical?issues with?email microsoft office help desk 1800?number?for?microsoft support windows?toll?free?tech?support microsoft?technical?support?calling?me microsoft office help desk phone number 1-800-microsoft phone number windows?USA?Toll?Free?help?desk?inephone?number microsoft?technical support?number microsoft office help line 800 number for microsof tech support windows?windows?toll?free?customer?care?support phone?number?canada microsoft?technical?support?number?australia microsoft office help number 800 number for microsoft ?windows windows?toll?free?customer?care?support phone?number?usa microsoft technical?support?phone?number microsoft office help online 800 number for microsoft office ?windows windows?toll?free?customer?service? microsoft?technical?support?phone number?usa microsoft office help phone number 800 number for microsoft support windows?windows?toll?free?customer?service?number microsoft?technical support?pnone microsoft office helpline number 800 number for microsoft tech support ?windows?windows?toll?free?customer?service?phone number microsoft?technical?support?toll?free?number microsoft office installation help 800 number for microsoft windows windowstoll?free?customer?service?number microsoft?technical?support usa?phone?number microsoft office live chat support 800 number for microsoft windows windows 7 customer service number microsoft?toll?free?helpline number microsoft office live help 800 number to microsoft windows 7 customer service phone number microsoft?toll?free?helpline?number microsoft office live phone number 800?microsoft toll free number windows 7 customer support number microsoft?toll?free?helpline?phone number microsoft office number to call 800?number?for?microsoft?support windows 7 tech support number microsoft?toll?free?hotline?phone?number microsoft office online help 800?number?for?microsoft?technical?support windows 7 tech support phone number microsoft?toll?free?number?for tech?support microsoft office online support contact microsoft 1-800 windows 7 technical support phone number microsoft?toll?free?number?of?uk -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:31:42 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:31:42 -0000 Subject: [GHC] #11928: can us, .1888-896-7691 vipre Antivirus technical support phone number Message-ID: <053.c9d250c0fe3b6459fc1a4153becb1d30@haskell.org> #11928: can us,.1888-896-7691 vipre Antivirus technical support phone number -------------------------------------+------------------------------------- Reporter: | Owner: drewmandis1106 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- NOW/1888-896-7691 vipre Antivirus technical support phone number, customer support phone number, c vipre customer support number vipre Antivirus service center vipre Antiviruss vipre Antiviruss support vipre Antivirus drivers vipre Antivirus help vipre Antivirus scanner tech support number vipre Antivirus technical support vipre Antivirus customer care phone number vipre Antivirus tech support vipre Antivirus support phone number tech support phone number vipre Antivirus technical support phone number vipre tech support phone number vipre Antivirus tech support number vipre Antivirus customer support phone number hotmail tech support phone number charter tech support phone number vipre tech support vipre Antiviruss tech support vipre support phone number vipre Antivirus customer service phone number vipre Antiviruss tech support phone number tech support Antivirus tech support vipre wireless Antivirus tech support phone number hotmail technical support phone number vipre Antivirus tech support usa vipre Antivirus support number vipre Antivirus phone number tech support number online tech support hotmail tech support vipre Antivirus technical support computer tech support vipre phone number charter tech support vipre Antiviruss support phone number vipre Antivirus tech support telephone number vipre Antivirus technical support vipre Antivirus support phone number vipre Antivirus tech support phone number vipre Antivirus technical support number vipre Antivirus customer support phone number hotmail technical support phone number vipre technical support phone number technical support phone number vipre support phone number vipre Antivirus technical support telephone number vipre Antivirus customer service phone number tech support phone number vipre tech support phone number vipre technical support hotmail tech support phone number Antivirus technical support vipre Antivirus phone number vipre Antivirus support number vipre Antivirus tech support charter tech support phone number vipre Antivirus support technical support vipre Antivirus tech support number vipre Antivirus customer care phone number vipre phone number usa phone number vipre Antivirus customer support number vipre Antivirus customer care number phone number usa vipre Antivirus customer service vipre Antivirus tech support phone number vipre Antivirus technical support phone number vipre Antivirus customer support phone number vipre Antivirus support number vipre support phone number vipre Antivirus customer service phone number vipre technical support phone number vipre Antiviruss support phone number vipre tech support phone number tech support phone number vipre Antivirus phone number vipre Antivirus support vipre Antivirus tech support hotmail technical support phone number hotmail tech support phone number vipre Antivirus tech support number vipre Antivirus technical support vipre Antivirus customer support number usa phone number Antivirus support vipre Antivirus customer support charter tech support phone number phone number usa vipre Antivirus technical support number vipre phone number technical support phone number vipre Antivirus customer service vipre Antivirus customer service number vipre Antivirus help phone number vipre Antiviruss tech support phone number vipre Antivirus support phone number vipre tech support phone number vipre Antivirus technical support phone number vipre support number vipre technical support phone number tech support phone number vipre Antivirus tech support phone number vipre tech support hotmail tech support phone number technical support phone number vipre phone number usa phone number vipre customer service phone number phone number usa vipre support vipre customer care vipre Antiviruss customer service phone number vipre support phone number vipre Antivirus customer care phone number vipre Antivirus support phone number phone number usa vipre customer care number vipre Antivirus customer service vipre customer care phone number vipre customer service phone number usa hotmail phone number usa phone number vipre Antivirus customer service number vipre Antiviruss customer service vipre Antivirus phone number phone numbers business phone numbers customer support phone number vipre Antivirus customer care number vipre Antivirus customer support number vipre customer support phone number vipre tech support phone number us phone numbers vipre Antivirus customer care vipre customer care number vipre Antiviruss customer care number vipre Antivirus customer service phone number vipre Antivirus customer service number vipre Antivirus customer care phone number vipre Antivirus customer service vipre Antivirus customer support number vipre Antivirus vipre Antivirus customer support vipre Antiviruss vipre customer care vipre Antiviruss customer service vipre Antivirus price vipre wireless Antivirus vipre Antivirus customer care toll free number vipre Antiviruss customer care vipre Antivirus scanner vipre Antivirus support number vipre Antivirus service center vipre Antivirus customer care number toll free vipre Antiviruss india vipre customer care number india vipre wifi Antivirus vipre inkjet Antivirus vipre laser Antivirus vipre photo Antivirus vipre Antivirus tech support vipre Antivirus technical support vipre colour Antivirus vipre Antivirus tech support vipre Antivirus support phone number vipre Antivirus technical support phone number tech support phone number vipre tech support phone number vipre Antivirus tech support number vipre Antivirus customer support phone number hotmail tech support phone number vipre tech support vipre support phone number vipre Antiviruss tech support charter tech support phone number vipre Antivirus customer service phone number vipre Antiviruss tech support phone number Antivirus tech support vipre wireless Antivirus tech support phone number tech support hotmail technical support phone number vipre Antivirus tech support usa vipre Antivirus support number tech support number online tech support vipre Antivirus phone number hotmail tech support vipre Antivirus technical support computer tech support vipre phone number vipre Antiviruss support phone number vipre Antivirus customer support number charter tech support vipre Antivirus support phone number vipre Antivirus tech support phone number vipre Antivirus technical support phone number vipre Antivirus customer support phone number vipre Antivirus support vipre Antivirus support number vipre support phone number vipre Antiviruss support vipre Antivirus customer service phone number vipre Antivirus tech support vipre Antivirus phone number vipre Antivirus tech support number tech support phone number vipre tech support phone number vipre Antivirus customer support number vipre Antivirus technical support vipre wireless Antivirus vipre Antivirus technical support number vipre Antivirus customer support vipre Antivirus customer service usa phone number vipre phone number vipre Antivirus service center phone number usa vipre Antiviruss vipre Antivirus phone number for vipre Antivirus support vipre Antivirus help vipre Antivirus customer service number Antivirus support vipre Antivirus technical support vipre Antivirus technical support phone number vipre Antivirus support phone number vipre Antivirus tech support number vipre Antivirus tech support phone number vipre Antivirus support numberpson Antivirus technical support phone number USA, vipre tech support number US, CANADA, vipre Antivirus support, vipre Antiviruss support , vipre Antivirus tech support, vipre Antivirus technical support ., vipre Antivirus support number, vipre Antiviruss customer support, vipre Antivirus customer support, contact vipre Antivirus support, vipre Antivirus support phone number, vipre Antivirus support phone, vipre technical support, vipre Antiviruss tech support, vipre support, vipre Antivirus support forum, vipre tech support, vipre Antivirus technical support phone number, vipre support number, vipre customer support, support for vipre Antiviruss, vipre support Antivirus, vipre support wireless, vipre Antiviruss support phone number, vipre scanner support, contact vipre support, vipre customer support phone number, vipre product support vipre Antivirus phone number vipre Antivirus support number vipre Antivirus support phone number vipre Antivirus tech support phone number vipre Antivirus tech support number vipre fax machine customer service vipre fax machine customer service phone number vipre Antivirus technical support phone number usa vipre Antivirus technical support phone number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:32:41 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:32:41 -0000 Subject: [GHC] #11929: Microsoft 1800-213-2171 Outlook Tech Support Phone Number Message-ID: <050.9efb928862f8ee166cbdbec01d3710c9@haskell.org> #11929: Microsoft 1800-213-2171 Outlook Tech Support Phone Number -------------------------------------+------------------------------------- Reporter: dsvgfdsgfds | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- microsoft office phone number contact microsoft 1-800 windows contact phone number microsoft?toll?free?number?of?us microsoft office phone number customer service microsoft 0800 number windows customer service number microsoft?toll?free?phone?number?of?tech support microsoft office phone number support microsoft 1 ?800?phone?number windows customer service number usa microsoft?toll?free?tech?support number?usa microsoft office phone support microsoft 1 800 windows customer support phone number microsoft?toll?free?tech?support?phone?number microsoft office phone support number microsoft 1 800 number windows live support phone number microsoft?toll?free?telephone?number microsoft office product support microsoft 1 800 phone number windows mail support phone number microsoft?usa?customer?care?number microsoft office support contact microsoft 1 800 support windows phone customer service number microsoft?usa?tech?support?phone?number microsoft office support contact number microsoft 1800 calls windows phone number customer service phone?number?for?microsoft?cutomer?service microsoft office support email microsoft 1800 contact windows phone number for support phone?number?microsoft?tech?support microsoft office support number microsoft 1800 contact number windows phone number support technical?support?phone?number?of?microsoft microsoft office support number usa microsoft 1800 customer care windows phone support phone number telephone?number?microsoft?support microsoft office support phone microsoft 1800 customer care calls windows phone tech support telephone?number?microsoft?toll?free microsoft office support phone number microsoft 1800 customer care contact windows phone tech support number toll?free??microsoft phone?number microsoft office support phone number usa microsoft 1800 customer care contact number windows support center phone call toll?free helpline?microsoft?phone?number microsoft office support telephone number microsoft 1800 customer care help windows support center phone number toll?free?hotline number?for?microsoft microsoft office tech support microsoft 1800 customer care help desk windows support phone number toll?free?microsoft?activation?number microsoft office tech support number microsoft 1800 customer care help desk number windows support phone number us toll?free?microsoft?customer service?phone?number microsoft office tech support phone number microsoft 1800 customer care help number windows tech support number us toll?free microsoft?support microsoft office tech support phone numbers microsoft 1800 customer care number windows tech support phone call toll?free?microsoft support?number microsoft office technical support microsoft 1800 customer care phone windows tech support phone number toll?free?microsoft?support?phone number microsoft office technical support number microsoft 1800 customer care phone number windows technical support number toll?free microsoft?technical?support?number microsoft office technical support phone number microsoft 1800 customer care telephone windows technical support phone number toll?free?number for?microsoft?issue microsoft office telephone number microsoft 1800 customer care telephone number windows vista support phone number toll?free number?for?microsoft?tech?support microsoft office telephone support microsoft 1800 customer care toll free windows vista tech support phone number toll?free?number?for microsoft?technical?support microsoft office toll free number microsoft 1800 customer care toll free number toll?free?number?microsoft?tech?support microsoft office word help microsoft 1800 customer care toll free phone windows?7?ugarade?to?windows?10 toll?free?number?microsoft technical?support microsoft online customer service microsoft 1800 customer care toll free phone number windows?7?ugarade?to?windows?10?free toll?free number?of?microsoft?customer?service microsoft online phone number microsoft 1800 customer care toll free telephone windows?7?ugarade?to?windows?10?not?showing toll?free phone?number?for?microsoft microsoft online support phone number microsoft 1800 customer care toll free telephone number windows?7?ugarade?to?windows?10?issues toll?free technical?helpline?number microsoft online tech support microsoft 1800 customer service windows?7 ugarade?to?windows?10?problems toll?free?technical?support?phone number microsoft online tech support phone number microsoft 1800 customer service calls windows?7?ugarade?to?windows?10?preview toll?free technical?support?phone?number?for microsoft -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:34:15 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:34:15 -0000 Subject: [GHC] #11930: Showing error while updating CALL +1 8444464460 POGO GAMES Customer Service Number Message-ID: <044.48e306cec43e7d234d1172854c9b2b23@haskell.org> #11930: Showing error while updating CALL +1 8444464460 POGO GAMES Customer Service Number -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Showing error while updating CALL +1 8444464460 POGO GAMES Customer Service Number {| class="wikitable" |- ! MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number !! 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number ?USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number USA || 1***844 ***446 ***4460 |} Jack and Jill went up the hill to call 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care phone number. Jack fell on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care number and broke his crown and jill came on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline number. JAck has a teddy bear called 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline phone number, and jill has a barbie doll named 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpline. Twiinkle twinkle little star 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk phone number how i wonder what you are 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk number. Up above the world of 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk, like a diamond in the sky. Humpty dumpty 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service phone number sat on a 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service number, Humpty dumpty had a gret fall 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline phone number. All the kings horses all the 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline number could not put humpty togather again. Ba ba black sheep have u 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline, Yes sir yes sir three 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk phone number bags full. One for my master 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk number one for the dame 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk. One for the little boy 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support phone number who lives down the lane. Johhny johhny 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support number, Yes papa Eating sugar 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support ,No papa. telling lies 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline phone number no papa faad thoda ha ha ha 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline number. A lion and a unicorn 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline were in the jungle 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk phone number, the lion beat the unicorn balck and brown 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk number so the unicorn gave birth to my child 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1***844 ***446 ***4460 . MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT products are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1***844 ***446 ***4460 and Tom Proulx in Mountain View, California, USA 1***844 ***446 ***4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and improved e-mail functionality through Microsoft Outlook and Outlook Express @1***844 ***446 ***4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1***844 ***446 ***4460 . Hi All, Facebook users have liked MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number 1***844 ***446 ***4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Intuit Technical Support Phone number +1***844 ***446 ***4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1***844 ***446 ***4460 is the best. Apple also has a handle for Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 . There are amazing videos of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 on youtube on their site www.youtube.com they say it is great. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline phone number 1***844 ***446 ***4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline number 1***844 ***446 ***4460 Proadvisor and Pro Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline 1***844 ***446 ***4460 and using their products. Youtube videos have been telling us the story of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 on the url & Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 has been the pioneer in the field of providing service in terms of issues related to MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , Payroll Support phone number 1***844 ***446 ***4460 , POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 and Proadvisor Tech support phone number 1***844 ***446 ***4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1***844 ***446 ***4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1***844 ***446 ***4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1***844 ***446 ***4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been promoting Tech support phone number 1***844 ***446 ***4460 stories through their platform. Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support @ 1***844 ***446 ***4460 is also one of the places that talks about Tech support phone number 1***844 ***446 ***4460 . You can pay for Tech support phone number 1***844 ***446 ***4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1***844 ***446 ***4460 as number1. Stories of Tech support phone number 1***844 ***446 ***4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1***844 ***446 ***4460 on Go or Page on craiglist.org you will know Tech support phone number 1***844 ***446 ***4460 is special. They provide best MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT 24|7.you can call any time for any problem of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT like MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprises, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support telephone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help phone number, Intuit technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number , Quickbook tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprise support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT component repair tool for windows xp|vista|7 , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not connecting to internet. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT unsupported system configuration, Dealing some random error message installing MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data export or import issues, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT failed to make an internet connection, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT multi user mode not syncing, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not opening in multi-user mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 .MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 . Showing error while updating company data file in MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is also a fairly complex application. This complexity means that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is prone to having problems like how to restore MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT auto data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Connection Problem and connection configuration, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Company File Not Opening in Multi User Mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Keeps Disconnecting From Server, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Message Server Busy, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Payroll Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Needs To Be Updated. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Recovery Extention, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT connection has been lost, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Error 1722,1334,15215&1904, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code 6000,3371, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , the consequences can be pretty dire. Luckily, many common problems are easy to fix -- once you know about them. Our MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT level 5 technicians are available for fix any queries all products of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . We provide best service of any problems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your problems of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . This is our best online customer care service. Contact us for resolve your any MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT problems. 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. Sales: 844 .446 .4040. Support: 844 -446 -4040. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone Number: 844 -446 -4040. We'd suggest trying the Support site first because it's full of usefull information: #1***844 ***446 ***4460 Intuit Customer Service Number #1***844 ***446 ***4460 Intuit Customer Care Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 Intuit Customer Support Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number #1***844 ***446 ***4460 Intuit Customer Service Phone Number #1***844 ***446 ***4460 Intuit Customer Care Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 Intuit Customer Support Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number #1***844 ***446 ***4460 Call Intuit #1***844 ***446 ***4460 Call Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact Intuit #1***844 ***446 ***4460 Contact Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Call MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Alabama,Alaska,Arizona,Arkansas,California ,USA ,Canada, New York, Los Angeles, Chicago, Houston, Philadelphia, Phoenix, San Antonio, San Diego, Dallas, San Jose, Austin, Jacksonville, San Francisco, Indianapolis, Columbus, Fort Worth, Charlotte, Detroit, El Paso, Seattle, Denver, Washington, Memphis, Boston, Nashville, Baltimore, Oklahoma City, Portland, Las Vegas, Louisville, Milwaukee, Albuquerque, Tucson, Fresno, Sacramento, Long Beach, Kansas City, Mesa, Atlanta, Virginia Beach, Omaha, Colorado Springs, Raleigh, Miami, Oakland, Minneapolis, Tulsa, Cleveland, Wichita, New Orleans, Arlington, Bakersfield, Tampa, Aurora, Honolulu, Anaheim, Santa Ana, Corpus Christi, Riverside, St. Louis, Lexington, Pittsburgh, Stockton, Anchorage, Cincinnati, Saint Paul, Greensboro, Toledo, Newark, Plano, Henderson, Lincoln, Orlando, Jersey City, Chula Vista, Buffalo, Fort Wayne, Chandler and St. Petersburg, t is very popular toll free number which provide by MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number. Call, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Help Desk Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number, -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:36:22 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:36:22 -0000 Subject: [GHC] #11931: Dial@@@@@@ 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t p.h.o.n.e number Message-ID: <053.5f49acd5dc6a186899862ae12fe7994d@haskell.org> #11931: Dial@@@@@@ 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t p.h.o.n.e number -------------------------------------+------------------------------------- Reporter: | Owner: drewmandis1106 | Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Tech-Support ((18888967691)) Brother p.r.i.n.t.e.r tech support P.h.o.n.e n.u.m.b.e.r Brother p.r.i.n.t.e.r customer care p.h.o.n.e n.u.m.b.er C.a.n.a.d.a Cust0mer supp0rt **)) 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number Dial@@@@@@ 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t p.h.o.n.e number 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number C a N O n 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number number C.a.n.a.d.a 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number number C.a.n.a.d.a 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number number C.a.n.a.d.a @@18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t p.h.o.n.e number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number number C.a.n.a.d.a zonealarm s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r canada Call @@@@@@@@sutta CANADA2 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t p.h.o.n.e number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number number C.a.n.a.d.a zonealarm s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r canada Call @@@@@@ 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t p.h.o.n.e number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number number C.a.n.a.d.a zonealarm s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r canada Dial CANADA1 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t p.h.o.n.e number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number number C.a.n.a.d.a zonealarm s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r canada canada CANADA 1 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t p.h.o.n.e number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number number C.a.n.a.d.a zonealarm s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r canada canada 1-1888-896-7691 CANADA, zonealarm antivirus Tech s.u.p.p.o.r.t P.h.o.n.e number,zonealarm technical s.u.p.p.o.r.t P.h.o.n.e number 1 18888967691.zonealarm Tech s.u.p.p.o.r.t Number zonealarm Tech zonealarm tech s.u.p.p.o.r.t, zonealarm tech s.u.p.p.o.r.t number, zonealarm tech s.u.p.p.o.r.t P.h.o.n.e number, zonealarm technical s.u.p.p.o.r.t, zonealarm technical s.u.p.p.o.r.t number, zonealarm technical s.u.p.p.o.r.t P.h.o.n.e number, zonealarm tech s.u.p.p.o.r.t number, zonealarm s.u.p.p.o.r.t number, zonealarm Tech s.u.p.p.o.r.t P.h.o.n.e number, zonealarm s.u.p.p.o.r.t P.h.o.n.e number, zonealarm technical s.u.p.p.o.r.t P.h.o.n.e number, zonealarm technical s.u.p.p.o.r.t number,s.u.p.p.o.r.t P.h.o.n.e Number for zonealarm antivirus P.h.o.n.e Number for zonealarm c.ustom.erService Technical s.u.p.p.o.r.t TeleP.h.o.n.e Number zonealarm antivirus s.u.p.p.o.r.t number zonealarm zonealarm antivirus tech s.u.p.p.o.r.t number zonealarm zonealarm antivirus technical s.u.p.p.o.r.t number zonealarm zonealarm antivirus technical s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e number zonealarm zonealarm internet security technical s.u.p.p.o.r.t zonealarm technical s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm tech s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm c.ustom.er s.u.p.p.o.r.t P.h.o.n.e number I-888-896-7691 zonealarm zonealarm antivirus s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm s.u.p.p.o.r.t P.h.o.n.e zonealarm tech s.u.p.p.o.r.t zonealarm c.ustom.er s.u.p.p.o.r.t zonealarm P.h.o.n.e s.u.p.p.o.r.t zonealarm s.u.p.p.o.r.t number zonealarm zonealarm technical s.u.p.p.o.r.t zonealarm antivirus c.ustom.er s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm antivirus tech s.u.p.p.o.r.t P.h.o.n.e number zonealarm contact zonealarm s.u.p.p.o.r.t zonealarm antivirus technical s.u.p.p.o.r.t P.h.o.n.e number ~!~I8888967691++ zonealarm zonealarm P.h.o.n.e number zonealarm tech s.u.p.p.o.r.t zonealarm s.u.p.p.o.r.t ticket zonealarm c.ustom.er s.u.p.p.o.r.t number zonealarm zonealarm tech s.u.p.p.o.r.t number zonealarm zonealarm technical s.u.p.p.o.r.t number zonealarm zonealarm s.u.p.p.o.r.t center zonealarm teleP.h.o.n.e s.u.p.p.o.r.t call zonealarm s.u.p.p.o.r.t zonealarm antivirus s.u.p.p.o.r.t s.u.p.p.o.r.t zonealarm zonealarm billing s.u.p.p.o.r.t zonealarm antivirus technical s.u.p.p.o.r.t number zonealarm s.u.p.p.o.r.t zonealarm antivirus zonealarm online s.u.p.p.o.r.t zonealarm contact s.u.p.p.o.r.t zonealarm antivirus s.u.p.p.o.r.t number zonealarm zonealarm antivirus c.ustom.er s.u.p.p.o.r.t number zonealarm zonealarm antivirus tech s.u.p.p.o.r.t number zonealarm s.u.p.p.o.r.t for zonealarm zonealarm P.h.o.n.e number zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm zonealarm contact P.h.o.n.e number zonealarm zonealarm antivirus P.h.o.n.e number zonealarm zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm P.h.o.n.e number zonealarm for zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm software P.h.o.n.e number zonealarm P.h.o.n.e number zonealarm for zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e teleP.h.o.n.e number zonealarm zonealarm h.e.l.p.l.i.n.e P.h.o.n.e number zonealarm zonealarm contact number zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e number zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number ~!~I8888967691++ zonealarm us zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm canada zonealarm teleP.h.o.n.e number zonealarm zonealarm P.h.o.n.e number zonealarm canada zonealarm antivirus contact number zonealarm zonealarm number zonealarm zonealarm contact number zonealarm canada zonealarm antivirus h.e.l.p.l.i.n.e number zonealarm zonealarm h.e.l.p.l.i.n.e number zonealarm zonealarm c.ustom.er number zonealarm zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e number zonealarm zonealarm contact teleP.h.o.n.e number zonealarm contact number zonealarm for zonealarm zonealarm software contact number zonealarm zonealarm toll free number zonealarm zonealarm teleP.h.o.n.e number zonealarm uk zonealarm registration number zonealarm zonealarm toll free number zonealarm canada zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm software c.u.s.t.o.m.e.r s.e.r.v.i.c.e contact zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm service zonealarm antivirus technical s.u.p.p.o.r.t zonealarm antivirus c.ustom.er s.u.p.p.o.r.t zonealarm technical s.u.p.p.o.r.t reviews teleP.h.o.n.e zonealarm antivirus zonealarm tech s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm antivirus tech s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm technical s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm antivirus free antivirus s.u.p.p.o.r.t zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e billing zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e email address zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e reviews contact zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm tech s.u.p.p.o.r.t number zonealarm canada zonealarm antivirus s.u.p.p.o.r.t number zonealarm zonealarm antivirus contact number zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm zonealarm technical s.u.p.p.o.r.t canada zonealarm technical s.u.p.p.o.r.t number zonealarm zonealarm tech s.u.p.p.o.r.t P.h.o.n.e zonealarm tech s.u.p.p.o.r.t number zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e teleP.h.o.n.e number zonealarm zonealarm antivirus c.ustom.er s.u.p.p.o.r.t number zonealarm zonealarm antivirus P.h.o.n.e number zonealarm zonealarm antivirus online s.u.p.p.o.r.t zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e number zonealarm zonealarm tech s.u.p.p.o.r.t center zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm software c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm c.ustom.er care number zonealarm canada zonealarm c.ustom.er number zonealarm zonealarm c.ustom.er s.u.p.p.o.r.t number zonealarm zonealarm c.ustom.er care number zonealarm zonealarm c.ustom.er care toll free number zonealarm zonealarm tech s.u.p.p.o.r.t zonealarm technical s.u.p.p.o.r.t zonealarm antivirus s.u.p.p.o.r.t zonealarm antivirus tech s.u.p.p.o.r.t zonealarm s.u.p.p.o.r.t center c.a.n.o.n.com c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm antivirus c.ustom.er care number zonealarm zonealarm c.ustom.er care zonealarm P.h.o.n.e number zonealarm P.h.o.n.e number zonealarm for zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm P.h.o.n.e s.u.p.p.o.r.t zonealarm P.h.o.n.e number zonealarm tech s.u.p.p.o.r.t zonealarm s.u.p.p.o.r.t P.h.o.n.e number zonealarm contact zonealarm by P.h.o.n.e zonealarm contact P.h.o.n.e number zonealarm zonealarm h.e.l.p.l.i.n.e P.h.o.n.e number zonealarm zonealarm antivirus P.h.o.n.e zonealarm antivirus for P.h.o.n.e zonealarm contact number zonealarm zonealarm contact s.u.p.p.o.r.t contact zonealarm antivirus zonealarm contact number zonealarm canada zonealarm toll free number zonealarm zonealarm teleP.h.o.n.e number zonealarm zonealarm toll free number zonealarm canada zonealarm antivirus s.u.p.p.o.r.t services technical s.u.p.p.o.r.t for antivirus zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm canada zonealarm antivirus c.ustom.er care number zonealarm canada zonealarm c.ustom.er care number zonealarm zonealarm c.ustom.er care center zonealarm c.ustom.er s.u.p.p.o.r.t zonealarm c.ustom.er s.u.p.p.o.r.t P.h.o.n.e zonealarm c.ustom.er h.e.l.p zonealarm c.ustom.er & technical s.u.p.p.o.r.t zonealarm c.ustom.er portal zonealarm c.ustom.er care P.h.o.n.e number zonealarm canada zonealarm c.ustom.er care email zonealarm h.e.l.p.l.i.n.e zonealarm tech s.u.p.p.o.r.t contact zonealarm c.ustom.er care toll free zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e number zonealarm zonealarm antivirus protection antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e number zonealarm zonealarm software c.u.s.t.o.m.e.r s.e.r.v.i.c.e number zonealarm zonealarm hotline c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm us how to contact zonealarm by email zonealarm free P.h.o.n.e s.u.p.p.o.r.t zonealarm antivirus technical s.u.p.p.o.r.t number zonealarm zonealarm antivirus technical s.u.p.p.o.r.t h.e.l.p desk P.h.o.n.e number zonealarm zonealarm technical s.u.p.p.o.r.t number zonealarm toll free number zonealarm zonealarm antivirus c.ustom.er s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm P.h.o.n.e number zonealarm for zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e contact zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm zonealarm security s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm internet security s.u.p.p.o.r.t P.h.o.n.e number zonealarm P.h.o.n.e number zonealarm for zonealarm security zonealarm internet security P.h.o.n.e number zonealarm in canada zonealarm antivirus contact P.h.o.n.e number zonealarm in canada zonealarm security contact P.h.o.n.e number zonealarm zonealarm antivirus h.e.l.p desk P.h.o.n.e number zonealarm in canada zonealarm antivirus tech s.u.p.p.o.r.t P.h.o.n.e number zonealarm free in canada zonealarm antivirus s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm antivirus P.h.o.n.e number zonealarm s.u.p.p.o.r.t for technical issue in canada P.h.o.n.e number zonealarm for zonealarm antivirus technical s.u.p.p.o.r.t zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e teleP.h.o.n.e number zonealarm zonealarm antivirus toll free c.ustom.er care number zonealarm zonealarm internet security h.e.l.p P.h.o.n.e number[[Category:Call @@@@@@@@ sutta CANADA2 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t p.h.o.n.e number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number number C.a.n.a.d.a Call @@@@@@@@ sutta CANADA2 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t p.h.o.n.e number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number number C.a.n.a.d.a zonealarm s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r canada Call @@@@@@@@sutta CANADA2 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t p.h.o.n.e number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number number C.a.n.a.d.a zonealarm s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r canada Call @@@@@@ CANADA1 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t p.h.o.n.e number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number number C.a.n.a.d.a zonealarm s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r canada Dial CANADA1 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t p.h.o.n.e number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number number C.a.n.a.d.a zonealarm s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r canada canada CANADA 1 18888967691 zonealarm antivirus t.e.c.h s.u.p.p.o.r.t p.h.o.n.e number u.s.a. C.a.l.l zonealarm h.e.l.p d.e.s.k number number C.a.n.a.d.a zonealarm s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r canada canada 1-1888-896-7691 CANADA]][[Category:s.u.p.p.o.r.t P.h.o.n.e Number for zonealarm antivirus P.h.o.n.e Number for zonealarm c.ustom.erService Technical s.u.p.p.o.r.t TeleP.h.o.n.e Number zonealarm antivirus s.u.p.p.o.r.t number zonealarm zonealarm antivirus tech s.u.p.p.o.r.t number zonealarm zonealarm antivirus technical s.u.p.p.o.r.t number zonealarm zonealarm antivirus technical s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e number zonealarm zonealarm internet security technical s.u.p.p.o.r.t zonealarm technical s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm tech s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm c.ustom.er s.u.p.p.o.r.t P.h.o.n.e number I-888-896-7691 zonealarm zonealarm antivirus s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm s.u.p.p.o.r.t P.h.o.n.e zonealarm tech s.u.p.p.o.r.t zonealarm c.ustom.er s.u.p.p.o.r.t zonealarm P.h.o.n.e s.u.p.p.o.r.t zonealarm s.u.p.p.o.r.t number zonealarm zonealarm technical s.u.p.p.o.r.t zonealarm antivirus c.ustom.er s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm antivirus tech s.u.p.p.o.r.t P.h.o.n.e number zonealarm contact zonealarm s.u.p.p.o.r.t zonealarm antivirus technical s.u.p.p.o.r.t P.h.o.n.e number ~!~I8888967691++ zonealarm zonealarm P.h.o.n.e number zonealarm tech s.u.p.p.o.r.t zonealarm s.u.p.p.o.r.t ticket zonealarm c.ustom.er s.u.p.p.o.r.t number zonealarm zonealarm tech s.u.p.p.o.r.t number zonealarm zonealarm technical s.u.p.p.o.r.t number zonealarm zonealarm s.u.p.p.o.r.t center zonealarm teleP.h.o.n.e s.u.p.p.o.r.t call zonealarm s.u.p.p.o.r.t zonealarm antivirus s.u.p.p.o.r.t s.u.p.p.o.r.t zonealarm zonealarm billing s.u.p.p.o.r.t zonealarm antivirus technical s.u.p.p.o.r.t number zonealarm s.u.p.p.o.r.t zonealarm antivirus zonealarm online s.u.p.p.o.r.t zonealarm contact s.u.p.p.o.r.t zonealarm antivirus s.u.p.p.o.r.t number zonealarm zonealarm antivirus c.ustom.er s.u.p.p.o.r.t number zonealarm zonealarm antivirus tech s.u.p.p.o.r.t number zonealarm s.u.p.p.o.r.t for zonealarm zonealarm P.h.o.n.e number zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm zonealarm contact P.h.o.n.e number zonealarm zonealarm antivirus P.h.o.n.e number zonealarm zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm P.h.o.n.e number zonealarm for zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm software P.h.o.n.e number zonealarm P.h.o.n.e number zonealarm for zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e teleP.h.o.n.e number zonealarm zonealarm h.e.l.p.l.i.n.e P.h.o.n.e number zonealarm zonealarm contact number zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e number zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number ~!~I8888967691++ zonealarm us zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm canada zonealarm teleP.h.o.n.e number zonealarm zonealarm P.h.o.n.e number zonealarm canada zonealarm antivirus contact number zonealarm zonealarm number zonealarm zonealarm contact number zonealarm canada zonealarm antivirus h.e.l.p.l.i.n.e number zonealarm zonealarm h.e.l.p.l.i.n.e number zonealarm zonealarm c.ustom.er number zonealarm zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e number zonealarm zonealarm contact teleP.h.o.n.e number zonealarm contact number zonealarm for zonealarm zonealarm software contact number zonealarm zonealarm toll free number zonealarm zonealarm teleP.h.o.n.e number zonealarm uk zonealarm registration number zonealarm zonealarm toll free number zonealarm canada zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm software c.u.s.t.o.m.e.r s.e.r.v.i.c.e contact zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm service zonealarm antivirus technical s.u.p.p.o.r.t zonealarm antivirus c.ustom.er s.u.p.p.o.r.t zonealarm technical s.u.p.p.o.r.t reviews teleP.h.o.n.e zonealarm antivirus zonealarm tech s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm antivirus tech s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm technical s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm antivirus free antivirus s.u.p.p.o.r.t zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e billing zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e email address zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e reviews contact zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm tech s.u.p.p.o.r.t number zonealarm canada zonealarm antivirus s.u.p.p.o.r.t number zonealarm zonealarm antivirus contact number zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm zonealarm technical s.u.p.p.o.r.t canada zonealarm technical s.u.p.p.o.r.t number zonealarm zonealarm tech s.u.p.p.o.r.t P.h.o.n.e zonealarm tech s.u.p.p.o.r.t number zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e teleP.h.o.n.e number zonealarm zonealarm antivirus c.ustom.er s.u.p.p.o.r.t number zonealarm zonealarm antivirus P.h.o.n.e number zonealarm zonealarm antivirus online s.u.p.p.o.r.t zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e number zonealarm zonealarm tech s.u.p.p.o.r.t center zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm software c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm c.ustom.er care number zonealarm canada zonealarm c.ustom.er number zonealarm zonealarm c.ustom.er s.u.p.p.o.r.t number zonealarm zonealarm c.ustom.er care number zonealarm zonealarm c.ustom.er care toll free number zonealarm zonealarm tech s.u.p.p.o.r.t zonealarm technical s.u.p.p.o.r.t zonealarm antivirus s.u.p.p.o.r.t zonealarm antivirus tech s.u.p.p.o.r.t zonealarm s.u.p.p.o.r.t center c.a.n.o.n.com c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm antivirus c.ustom.er care number zonealarm zonealarm c.ustom.er care zonealarm P.h.o.n.e number zonealarm P.h.o.n.e number zonealarm for zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e zonealarm P.h.o.n.e s.u.p.p.o.r.t zonealarm P.h.o.n.e number zonealarm tech s.u.p.p.o.r.t zonealarm s.u.p.p.o.r.t P.h.o.n.e number zonealarm contact zonealarm by P.h.o.n.e zonealarm contact P.h.o.n.e number zonealarm zonealarm h.e.l.p.l.i.n.e P.h.o.n.e number zonealarm zonealarm antivirus P.h.o.n.e zonealarm antivirus for P.h.o.n.e zonealarm contact number zonealarm zonealarm contact s.u.p.p.o.r.t contact zonealarm antivirus zonealarm contact number zonealarm canada zonealarm toll free number zonealarm zonealarm teleP.h.o.n.e number zonealarm zonealarm toll free number zonealarm canada zonealarm antivirus s.u.p.p.o.r.t services technical s.u.p.p.o.r.t for antivirus zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm canada zonealarm antivirus c.ustom.er care number zonealarm canada zonealarm c.ustom.er care number zonealarm zonealarm c.ustom.er care center zonealarm c.ustom.er s.u.p.p.o.r.t zonealarm c.ustom.er s.u.p.p.o.r.t P.h.o.n.e zonealarm c.ustom.er h.e.l.p zonealarm c.ustom.er & technical s.u.p.p.o.r.t zonealarm c.ustom.er portal zonealarm c.ustom.er care P.h.o.n.e number zonealarm canada zonealarm c.ustom.er care email zonealarm h.e.l.p.l.i.n.e zonealarm tech s.u.p.p.o.r.t contact zonealarm c.ustom.er care toll free zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e number zonealarm zonealarm antivirus protection antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e number zonealarm zonealarm software c.u.s.t.o.m.e.r s.e.r.v.i.c.e number zonealarm zonealarm hotline c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm zonealarm c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm us how to contact zonealarm by email zonealarm free P.h.o.n.e s.u.p.p.o.r.t zonealarm antivirus technical s.u.p.p.o.r.t number zonealarm zonealarm antivirus technical s.u.p.p.o.r.t h.e.l.p desk P.h.o.n.e number zonealarm zonealarm technical s.u.p.p.o.r.t number zonealarm toll free number zonealarm zonealarm antivirus c.ustom.er s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm P.h.o.n.e number zonealarm for zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e contact zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number zonealarm zonealarm security s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm internet security s.u.p.p.o.r.t P.h.o.n.e number zonealarm P.h.o.n.e number zonealarm for zonealarm security zonealarm internet security P.h.o.n.e number zonealarm in canada zonealarm antivirus contact P.h.o.n.e number zonealarm in canada zonealarm security contact P.h.o.n.e number zonealarm zonealarm antivirus h.e.l.p desk P.h.o.n.e number zonealarm in canada zonealarm antivirus tech s.u.p.p.o.r.t P.h.o.n.e number zonealarm free in canada zonealarm antivirus s.u.p.p.o.r.t P.h.o.n.e number zonealarm zonealarm antivirus P.h.o.n.e number zonealarm s.u.p.p.o.r.t for technical issue in canada P.h.o.n.e number zonealarm for zonealarm antivirus technical s.u.p.p.o.r.t zonealarm antivirus c.u.s.t.o.m.e.r s.e.r.v.i.c.e teleP.h.o.n.e number zonealarm zonealarm antivirus toll free c.ustom.er care number zonealarm zonealarm internet security h.e.l.p P.h.o.n.e -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:39:18 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:39:18 -0000 Subject: [GHC] #11933: ERROR CODE CALL 1844 446 4.460 POGO CLUB REFUND Cus tomer Care Phone Num ber Message-ID: <044.b8709bffb1b17e945129867c56d517e9@haskell.org> #11933: ERROR CODE CALL 1844 446 4.460 POGO CLUB REFUND Cus tomer Care Phone Num ber -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- ERROR CODE CALL 1844 446 4.460 POGO CLUB REFUND Cus tomer Care Phone Num ber {| class="wikitable" |- ! MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number !! 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Support || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Contact Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro Support Phone Number || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech Support Number ?USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer service phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll tech Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Phone Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll technical Support Number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT premier support number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk phone number USA || 1***844 ***446 ***4460 |- | MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help desk number USA || 1***844 ***446 ***4460 |} Jack and Jill went up the hill to call 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care phone number. Jack fell on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care number and broke his crown and jill came on 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline number. JAck has a teddy bear called 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care helpline phone number, and jill has a barbie doll named 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpline. Twiinkle twinkle little star 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk phone number how i wonder what you are 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk number. Up above the world of 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer care Helpdesk, like a diamond in the sky. Humpty dumpty 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service phone number sat on a 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service number, Humpty dumpty had a gret fall 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline phone number. All the kings horses all the 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline number could not put humpty togather again. Ba ba black sheep have u 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpline, Yes sir yes sir three 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk phone number bags full. One for my master 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk number one for the dame 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer service helpdesk. One for the little boy 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support phone number who lives down the lane. Johhny johhny 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support number, Yes papa Eating sugar 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support ,No papa. telling lies 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline phone number no papa faad thoda ha ha ha 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline number. A lion and a unicorn 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpline were in the jungle 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk phone number, the lion beat the unicorn balck and brown 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk number so the unicorn gave birth to my child 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer support helpdesk. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1***844 ***446 ***4460 . MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT products are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1***844 ***446 ***4460 and Tom Proulx in Mountain View, California, USA 1***844 ***446 ***4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and improved e-mail functionality through Microsoft Outlook and Outlook Express @1***844 ***446 ***4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1***844 ***446 ***4460 . Hi All, Facebook users have liked MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number 1***844 ***446 ***4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Intuit Technical Support Phone number +1***844 ***446 ***4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1***844 ***446 ***4460 is the best. Apple also has a handle for Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number 1***844 ***446 ***4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 . There are amazing videos of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care phone number 1***844 ***446 ***4460 on youtube on their site www.youtube.com they say it is great. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline phone number 1***844 ***446 ***4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline number 1***844 ***446 ***4460 Proadvisor and Pro Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support Helpline 1***844 ***446 ***4460 and using their products. Youtube videos have been telling us the story of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 on the url & Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone number +1***844 ***446 ***4460 has been the pioneer in the field of providing service in terms of issues related to MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , Payroll Support phone number 1***844 ***446 ***4460 , POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 and Proadvisor Tech support phone number 1***844 ***446 ***4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech support phone number 1***844 ***446 ***4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1***844 ***446 ***4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1***844 ***446 ***4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1***844 ***446 ***4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been promoting Tech support phone number 1***844 ***446 ***4460 stories through their platform. Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support @ 1***844 ***446 ***4460 is also one of the places that talks about Tech support phone number 1***844 ***446 ***4460 . You can pay for Tech support phone number 1***844 ***446 ***4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1***844 ***446 ***4460 as number1. Stories of Tech support phone number 1***844 ***446 ***4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1***844 ***446 ***4460 on Go or Page on craiglist.org you will know Tech support phone number 1***844 ***446 ***4460 is special. They provide best MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT 24|7.you can call any time for any problem of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT like MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprises, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT pro and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number USA , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support telephone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT help phone number, Intuit technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT customer support number , Quickbook tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT enterprise support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT component repair tool for windows xp|vista|7 , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not connecting to internet. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT unsupported system configuration, Dealing some random error message installing MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data export or import issues, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT failed to make an internet connection, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT multi user mode not syncing, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT not opening in multi-user mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 .MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT payroll support phone number 1***844 ***446 ***4460 . Showing error while updating company data file in MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is also a fairly complex application. This complexity means that MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT is prone to having problems like how to restore MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT auto data recovery, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Connection Problem and connection configuration, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Company File Not Opening in Multi User Mode, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Keeps Disconnecting From Server, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Error Message Server Busy, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Payroll Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Needs To Be Updated. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Data File Recovery Extention, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT connection has been lost, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Installation Error 1722,1334,15215&1904, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code 6000,3371, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT , the consequences can be pretty dire. Luckily, many common problems are easy to fix -- once you know about them. Our MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT level 5 technicians are available for fix any queries all products of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . We provide best service of any problems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your problems of MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT . This is our best online customer care service. Contact us for resolve your any MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT problems. 1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Desktop Sales & Support Team. Sales: 844 .446 .4040. Support: 844 -446 -4040. MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Technical Support Phone Number: 844 -446 -4040. We'd suggest trying the Support site first because it's full of usefull information: #1***844 ***446 ***4460 Intuit Customer Service Number #1***844 ***446 ***4460 Intuit Customer Care Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number #1***844 ***446 ***4460 Intuit Customer Support Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number #1***844 ***446 ***4460 Intuit Customer Service Phone Number #1***844 ***446 ***4460 Intuit Customer Care Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number #1***844 ***446 ***4460 MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Phone Number #1***844 ***446 ***4460 Intuit Customer Support Phone Number #1***844 ***446 ***4460 Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number #1***844 ***446 ***4460 Call Intuit #1***844 ***446 ***4460 Call Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact Intuit #1***844 ***446 ***4460 Contact Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Call MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT #1***844 ***446 ***4460 Contact MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Alabama,Alaska,Arizona,Arkansas,California ,USA ,Canada, New York, Los Angeles, Chicago, Houston, Philadelphia, Phoenix, San Antonio, San Diego, Dallas, San Jose, Austin, Jacksonville, San Francisco, Indianapolis, Columbus, Fort Worth, Charlotte, Detroit, El Paso, Seattle, Denver, Washington, Memphis, Boston, Nashville, Baltimore, Oklahoma City, Portland, Las Vegas, Louisville, Milwaukee, Albuquerque, Tucson, Fresno, Sacramento, Long Beach, Kansas City, Mesa, Atlanta, Virginia Beach, Omaha, Colorado Springs, Raleigh, Miami, Oakland, Minneapolis, Tulsa, Cleveland, Wichita, New Orleans, Arlington, Bakersfield, Tampa, Aurora, Honolulu, Anaheim, Santa Ana, Corpus Christi, Riverside, St. Louis, Lexington, Pittsburgh, Stockton, Anchorage, Cincinnati, Saint Paul, Greensboro, Toledo, Newark, Plano, Henderson, Lincoln, Orlando, Jersey City, Chula Vista, Buffalo, Fort Wayne, Chandler and St. Petersburg, t is very popular toll free number which provide by MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number. Call, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support phone number, Intuit MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Tech Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Help Desk Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT tech support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support phone number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT technical support, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Phone Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Support Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Service Helpline Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT Customer Care Number, MD at USA POGO GAME INSTALLATION ,RELOAD,UPDATE CONTACT support team phone number, -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:42:22 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:42:22 -0000 Subject: [GHC] #11935: 1-844 -446 -4460 .POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 Message-ID: <044.5d891b9754ecdfd0131f183fad8a6cf2@haskell.org> #11935: 1-844 -446 -4460 .POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- 1-844 -446 -4460 .POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460http://upstart.ubuntu.com/wiki/Obama%2B1844 %20446 %204460 %20Turbotax%20Helpdesk%20number,%20helpdesk%20phone%20number. WYNN 1-844 446 -4460 POGO GAME LOGIN ERROR Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number {| class="wikitable" |- ! POGO GAME LOGIN ERROR tech Support Number !! 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk phone number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Contact Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Error Support || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Contact Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR Support Phone Number || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number ?USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR service phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR support phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR tech Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Phone Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR technical Support Number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR premier support number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk phone number USA || 1 844 446 4460 |- | POGO GAME LOGIN ERROR help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 POGO GAME LOGIN ERROR Desktop care phone number. Jack fell on 1844 446 4460 POGO GAME LOGIN ERROR care number and broke his crown and jill came on 1844 446 4460 POGO GAME LOGIN ERROR care helpline number. JAck has a teddy bear called 1844 446 4460 POGO GAME LOGIN ERROR care helpline phone number, and jill has a barbie doll named 1844 446 4460 POGO GAME LOGIN ERROR care Helpline. Twiinkle twinkle little star 1844 446 4460 POGO GAME LOGIN ERROR Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 POGO GAME LOGIN ERROR care Helpdesk number. Up above the world of 1844 446 4460 POGO GAME LOGIN ERROR care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 POGO GAME LOGIN ERROR service phone number sat on a 1844 446 4460 POGO GAME LOGIN ERROR service number, Humpty dumpty had a gret fall 1844 446 4460 POGO GAME LOGIN ERROR Desktop service helpline phone number. All the kings horses all the 1844 446 4460 POGO GAME LOGIN ERROR service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 POGO GAME LOGIN ERROR service helpline, Yes sir yes sir three 1844 446 4460 POGO GAME LOGIN ERROR Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 POGO GAME LOGIN ERROR service helpdesk number one for the dame 1844 446 4460 POGO GAME LOGIN ERROR service helpdesk. One for the little boy 1844 446 4460 POGO GAME LOGIN ERROR support phone number who lives down the lane. Johhny johhny 1844 446 4460 POGO GAME LOGIN ERROR support number, Yes papa Eating sugar 1844 446 4460 POGO GAME LOGIN ERROR support ,No papa. telling lies 1844 446 4460 POGO GAME LOGIN ERROR support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 POGO GAME LOGIN ERROR Desktop support helpline number. A lion and a unicorn 1844 446 4460 POGO GAME LOGIN ERROR support helpline were in the jungle 1844 446 4460 POGO GAME LOGIN ERROR support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 POGO GAME LOGIN ERROR support helpdesk number so the unicorn gave birth to my child 1844 446 4460 POGO GAME LOGIN ERROR Desktop support helpdesk. POGO GAME LOGIN ERROR is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . POGO GAME LOGIN ERROR ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of Quicken for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into POGO GAME LOGIN ERROR , including remote access capabilities, remote assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that POGO GAME LOGIN ERROR Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked POGO GAME LOGIN ERROR technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit POGO GAME LOGIN ERROR Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit POGO GAME LOGIN ERROR Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit POGO GAME LOGIN ERROR tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for POGO GAME LOGIN ERROR Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit POGO GAME LOGIN ERROR Care phone number 1-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. POGO GAME LOGIN ERROR technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that POGO GAME LOGIN ERROR technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of POGO GAME LOGIN ERROR technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit POGO GAME LOGIN ERROR Technical Support Phone number +1 844 446 4460 on the url & . Intuit POGO GAME LOGIN ERROR Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to POGO GAME LOGIN ERROR , Support phone number 1844 446 4460 , POGO GAME LOGIN ERROR Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit POGO GAME LOGIN ERROR Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Online Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit POGO GAME LOGIN ERROR Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best POGO GAME LOGIN ERROR support. This is best toll free number 1844 -446 -4460 .this is technical support number for POGO GAME LOGIN ERROR 24|7.you can call any time for any blem of POGO GAME LOGIN ERROR like POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR data recovery, POGO GAME LOGIN ERROR Desktop enterprises, POGO GAME LOGIN ERROR and Quikbooks online. Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 POGO GAME LOGIN ERROR tech support , POGO GAME LOGIN ERROR Tech Support Phone Number USA , POGO GAME LOGIN ERROR Technical Support phone Number, POGO GAME LOGIN ERROR support phone number , POGO GAME LOGIN ERROR support phone number USA , POGO GAME LOGIN ERROR technical support number USA , POGO GAME LOGIN ERROR tech support telephone number, POGO GAME LOGIN ERROR help phone number, Intuit technical support phone number, POGO GAME LOGIN ERROR support number , Quickbook tech support phone number, Intuit POGO GAME LOGIN ERROR Desktop tech support phone number, POGO GAME LOGIN ERROR enterprise support phone number, POGO GAME LOGIN ERROR component repair tool for windows xp|vista|7 , POGO GAME LOGIN ERROR Desktop not connecting to internet. POGO GAME LOGIN ERROR unsupported system configuration, Dealing some random error message installing POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR Data export or import issues, POGO GAME LOGIN ERROR failed to make an internet connection, POGO GAME LOGIN ERROR multi user mode not syncing, POGO GAME LOGIN ERROR not opening in multi-user mode, POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 .POGO GAME LOGIN ERROR support phone number 1-844 -446 -4460 . Showing error while updating company data file in POGO GAME LOGIN ERROR , POGO GAME LOGIN ERROR Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But POGO GAME LOGIN ERROR Desktop is also a fairly complex application. This complexity means that POGO GAME LOGIN ERROR is ne to having blems like how to restore POGO GAME LOGIN ERROR auto data recovery, POGO GAME LOGIN ERROR Connection blem and connection configuration, POGO GAME LOGIN ERROR Installation Support Phone Number, POGO GAME LOGIN ERROR Company File Not Opening in Multi User Mode, POGO GAME LOGIN ERROR Keeps Disconnecting From Server, POGO GAME LOGIN ERROR Error Message Server Busy, POGO GAME LOGIN ERROR Tech Support Phone Number, POGO GAME LOGIN ERROR Data File Needs To Be Updated. POGO GAME LOGIN ERROR Data File Recovery Extention, POGO GAME LOGIN ERROR connection has been lost, POGO GAME LOGIN ERROR Desktop Installation Error 1722,1334,15215&1904, POGO GAME LOGIN ERROR Desktop error code 6000,3371, POGO GAME LOGIN ERROR error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with POGO GAME LOGIN ERROR , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our POGO GAME LOGIN ERROR level 5 technicians are available for fix any queries all ducts of POGO GAME LOGIN ERROR . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of POGO GAME LOGIN ERROR Desktop . This is our best online customer care service. Contact us for resolve your any POGO GAME LOGIN ERROR blems. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:43:45 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:43:45 -0000 Subject: [GHC] #11936: call 1-844-446-4460 pogo not working Message-ID: <044.4d26367f9fcb991b5ad551cb2584c5ee@haskell.org> #11936: call 1-844-446-4460 pogo not working -------------------------------------+------------------------------------- Reporter: vimpy | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- UA-75287313-1 WYNN 1-844 446 -4460 wynn POGO GAMES CONTACT Tech Support Toll-Free Phone Number Technical Support Toll-Free Phone Number UA-75287313-1 {| class="wikitable" |- ! wynn POGO GAMES CONTACT tech Support Number !! 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Error Support || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Contact Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT Support Phone Number || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number ?USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT service phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll tech Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Phone Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT payroll technical Support Number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT premier support number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk phone number USA || 1 844 446 4460 |- | wynn POGO GAMES CONTACT help desk number USA || 1 844 446 4460 |} Jack and Jill went up the hill to call 1844 446 4460 wynn POGO GAMES CONTACT Desktop care phone number. Jack fell on 1844 446 4460 wynn POGO GAMES CONTACT care number and broke his crown and jill came on 1844 446 4460 wynn POGO GAMES CONTACT care helpline number. JAck has a teddy bear called 1844 446 4460 wynn POGO GAMES CONTACT care helpline phone number, and jill has a barbie doll named 1844 446 4460 wynn POGO GAMES CONTACT care Helpline. Twiinkle twinkle little star 1844 446 4460 wynn POGO GAMES CONTACT Desktop care Helpdesk phone number how i wonder what you are 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk number. Up above the world of 1844 446 4460 wynn POGO GAMES CONTACT care Helpdesk, like a diamond in the sky. Humpty dumpty 1844 446 4460 wynn POGO GAMES CONTACT service phone number sat on a 1844 446 4460 wynn POGO GAMES CONTACT service number, Humpty dumpty had a gret fall 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpline phone number. All the kings horses all the 1844 446 4460 wynn POGO GAMES CONTACT service helpline number could not put humpty togather again. Ba ba black sheep have u 1844 446 4460 wynn POGO GAMES CONTACT service helpline, Yes sir yes sir three 1844 446 4460 wynn POGO GAMES CONTACT Desktop service helpdesk phone number bags full. One for my master 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk number one for the dame 1844 446 4460 wynn POGO GAMES CONTACT service helpdesk. One for the little boy 1844 446 4460 wynn POGO GAMES CONTACT support phone number who lives down the lane. Johhny johhny 1844 446 4460 wynn POGO GAMES CONTACT support number, Yes papa Eating sugar 1844 446 4460 wynn POGO GAMES CONTACT support ,No papa. telling lies 1844 446 4460 wynn POGO GAMES CONTACT support helpline phone number no papa faad thoda ha ha ha 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpline number. A lion and a unicorn 1844 446 4460 wynn POGO GAMES CONTACT support helpline were in the jungle 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk phone number, the lion beat the unicorn balck and brown 1844 446 4460 wynn POGO GAMES CONTACT support helpdesk number so the unicorn gave birth to my child 1844 446 4460 wynn POGO GAMES CONTACT Desktop support helpdesk. wynn POGO GAMES CONTACT is an accounting software package developed and marketed by Intuit Wanna call them at 1-844 446 -4460 . wynn POGO GAMES CONTACT ducts are geared mainly toward small and medium-sized businesses and offer on-premises accounting applications as well as cloud based versions that accept business payments, manage and pay bills and payroll functions.Intuit was founded in 1983 by Scott Cook 1-844 446 -4460 and Tom ulx in Mountain View, California, USA 1-844 446 -4460 . After the success of wynn POGO GAMES CONTACT for individual financial management, the company developed a similar solution for small business owners.Intuit has integrated several web-based features into wynn POGO GAMES CONTACT , including remote access capabilities, remote payroll assistance and outsourcing, electronic payment functions , banking and reconciliation, mapping features through integration with Google Maps, marketing options through Google, and im ved e-mail functionality through Microsoft Outlook and Outlook Express @1-844 446 -4460 . For the 2008 version, the company has also added import from Excel spreadsheets, additional employee time tracking options, pre-authorization of electronic funds and new Help functions. In June 2007, Intuit announced that wynn POGO GAMES CONTACT Enterprise Solutions would run on Linux servers, whereas previously it required a Windows server to run ask them at 1-844 446 -4460 . Hi All, Facebook users have liked wynn POGO GAMES CONTACT technical support phone number 1-844 -446 -4460 for the simple reason that the service they got was excellent on www.facebook.com. Tripadvisor users have reviewed Intuit wynn POGO GAMES CONTACT Intuit Technical Support Phone number +1 844 446 4460 as the best on their forum www.TripAdvisor.com. Amazon also sells Intuit wynn POGO GAMES CONTACT Desktop tech support phone number 1-844 -446 -4460 on its platform www.amazon.com because they know it is a great company. Apple users have been posting on www.twitter.com that Intuit tech support phone number 1-844 -446 -4460 is the best. Apple also has a handle for Intuit wynn POGO GAMES CONTACT tech support phone number 1-844 -446 -4460 on their app store www.apple.com. Twitter gets a lot of tweets daily for wynn POGO GAMES CONTACT Care phone number 1-844 -446 -4460 . There are amazing videos of Intuit wynn POGO GAMES CONTACT Care phone number UA-75287313-11-844 -446 -4460 on youtube on their site www.youtube.com they say it is great. wynn POGO GAMES CONTACT technical support Helpline phone number 1-844 -446 -4460 is for servicing to all USA / CANADA Customers as appeared in the Forbes Magazine 2015. Forbes Magazine reviews say that wynn POGO GAMES CONTACT technical support Helpline number 1-844 -446 -4460 advisor and Advisor are the best Payroll Softwares in the USA / CANADA at the moment. According to a survey done by Forbes magazine BMW, Rolex, Sony, Canon, Lego Group, Volkswagon, Nestle, Intel, IBM,Rolls Royce Aerospace etc are all the various clients of wynn POGO GAMES CONTACT technical support Helpline 1-844 -446 -4460 and using their ducts. Youtube videos have been telling us the story of Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 on the url & . Intuit wynn POGO GAMES CONTACT Technical Support Phone number +1 844 446 4460 has been the pioneer in the field of viding service in terms of issues related to wynn POGO GAMES CONTACT , Payroll Support phone number 1844 446 4460 , POGO GAMES CONTACT Tech support phone number 1844 446 4460 and advisor Tech support phone number 1844 446 4460 . Actionable Analytics for the Web has been witnessing an increase in the overall pr ranking of Intuit wynn POGO GAMES CONTACT Tech support phone number 1844 446 4460 due to ever increasing traffic. Yahoo has a page and landing platform for Tech support phone number 1844 446 4460 users on their Page on wikipedia.org gives us an idea of the goodness Tech support phone number 1844 446 4460 achieves by catering to the customer issues from Australia / USA / New Zealand / UK and other countries. You can buy Tech support phone number 1844 446 4460 from Electronics, Cars, Fashion, Collectibles, Coupons and More or Electronics, Cars, Fashion, Collectibles, Coupons and More Shopping. the front page of the internet has been moting Tech support phone number 1844 446 4460 stories through their platform. Intuit wynn POGO GAMES CONTACT Technical Support @ 1-844 -446 -4460 is also one of the places that talks about Tech support phone number 1844 446 4460 . You can pay for Tech support phone number 1844 446 4460 through www.paypal.com or VISA or Master. Blogger have ranked Tech support phone number 1844 446 4460 as number1. Stories of Tech support phone number 1844 446 4460 are going on Breaking News, Daily News and Videos - CNN.com and ESPN: The Worldwide Leader in Sports. If you search Tech support phone number 1844 446 4460 on Go or Page on craiglist.org you will know Tech support phone number 1844 446 4460 is special. They vide best wynn POGO GAMES CONTACT support. This is best toll free number 1844 -446 -4460 .this is technical support number for wynn POGO GAMES CONTACT 24|7.you can call any time for any blem of wynn POGO GAMES CONTACT like wynn POGO GAMES CONTACT payroll, wynn POGO GAMES CONTACT data recovery, wynn POGO GAMES CONTACT Desktop enterprises, wynn POGO GAMES CONTACT and Quikbooks . Call on 1844 -446 -4460 . Call@ 1-844 -446 -4460 wynn POGO GAMES CONTACT tech support , wynn POGO GAMES CONTACT Tech Support Phone Number USA , wynn POGO GAMES CONTACT Technical Support phone Number, wynn POGO GAMES CONTACT support phone number , wynn POGO GAMES CONTACT support phone number USA , wynn POGO GAMES CONTACT technical support number USA , wynn POGO GAMES CONTACT tech support telephone number, wynn POGO GAMES CONTACT help phone number, Intuit technical support phone number, wynn POGO GAMES CONTACT support number , Quickbook tech support phone number, Intuit wynn POGO GAMES CONTACT Desktop tech support phone number, wynn POGO GAMES CONTACT enterprise support phone number, wynn POGO GAMES CONTACT component repair tool for windows xp|vista|7 , wynn POGO GAMES CONTACT Desktop not connecting to internet. wynn POGO GAMES CONTACT unsupported system configuration, Dealing some random error message installing wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Data export or import issues, wynn POGO GAMES CONTACT failed to make an internet connection, wynn POGO GAMES CONTACT multi user mode not syncing, wynn POGO GAMES CONTACT not opening in multi-user mode, wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 .wynn POGO GAMES CONTACT payroll support phone number 1-844 -446 -4460 . Showing error while updating company data file in wynn POGO GAMES CONTACT , wynn POGO GAMES CONTACT Desktop is a crucial tool for businesses according to the Forbes magazine. It helps organizations manage their money, pay their employees, and pay their bills. But wynn POGO GAMES CONTACT Desktop is also a fairly complex application. This complexity means that wynn POGO GAMES CONTACT is ne to having blems like how to restore wynn POGO GAMES CONTACT auto data recovery, wynn POGO GAMES CONTACT Connection blem and connection configuration, wynn POGO GAMES CONTACT Installation Support Phone Number, wynn POGO GAMES CONTACT Company File Not Opening in Multi User Mode, wynn POGO GAMES CONTACT Keeps Disconnecting From Server, wynn POGO GAMES CONTACT Error Message Server Busy, wynn POGO GAMES CONTACT Payroll Tech Support Phone Number, wynn POGO GAMES CONTACT Data File Needs To Be Updated. wynn POGO GAMES CONTACT Data File Recovery Extention, wynn POGO GAMES CONTACT UA-75287313-1connection has been lost, wynn POGO GAMES CONTACT Desktop Installation Error 1722,1334,15215&1904, wynn POGO GAMES CONTACT Desktop error code 6000,3371, wynn POGO GAMES CONTACT error code message H-303 & H-202. You can search on Google or Bing but you cannot get these issues resolved. When something goes wrong with wynn POGO GAMES CONTACT , the consequences can be pretty dire. Luckily, many common blems are easy to fix -- once you know about them. Our wynn POGO GAMES CONTACT level 5 technicians are available for fix any queries all ducts of wynn POGO GAMES CONTACT . We vide best service of any blems. Call us anytime 24|7 on 1844 -446 -4460 for technical support. We are ready to fix your blems of wynn POGO GAMES CONTACT Desktop . This is our best customer care service. Contact us for resolve your any wynn POGO GAMES CONTACT blems. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:46:06 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:46:06 -0000 Subject: [GHC] #11937: CALL USA FREE 1800 213 2171 microsoft customer support phone microsoft customer support phone number microsoft customer support phone number canada microsoft customer support phone number us microsoft customer support telephone number microsoft customer support usa microsoft customers service number microsoft email contact microsoft email contact support microsoft email customer service number Message-ID: <050.fd075e827f915c3e1b2f885f8cf84f8c@haskell.org> #11937: CALL USA FREE 1800 213 2171 microsoft customer support phone microsoft customer support phone number microsoft customer support phone number canada microsoft customer support phone number us microsoft customer support telephone number microsoft customer support usa microsoft customers service number microsoft email contact microsoft email contact support microsoft email customer service number -------------------------------------+------------------------------------- Reporter: dsvgfdsgfds | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- microsoft?tech?support?phone ??microsoft??technical?support?phone?number ??microsoft?helpline?phone?number ??microsoft?s?customer?service?telephone?number ??microsoft?support?telephone?number ??microsoft?technical?support?telephone?number ?contact?microsoft???customer?service?phone?number ?customer?service?microsoft??phone ?microsoft???phone?number ?microsoft??contact?phone?number ?microsoft??contact?phone?number?in?usa ?microsoft??customer?service ?microsoft??customer?service?phone ?microsoft??customer?service?phone?number ?microsoft??customer?service?telephone?number ?microsoft??customer?support ?microsoft??customer?support?number ?microsoft??customer?support?phone?number ?microsoft??email?sign?in?support?number ?microsoft??email?signature?support?number ?microsoft??email?support?phone?number ?microsoft??email?technical?support?number ?microsoft??express?tech?support?phone?number ?microsoft??exprss?technical?support?phone?number ?microsoft??help?desk?phone?number?in?usa ?microsoft??helpline?number ?microsoft??phone?number?customer?service ?microsoft??phone?number?in?usa ?microsoft??phone?number?support?for?technical?issue in?usa ?microsoft??ssupport?phone?number ?microsoft??support?number ?microsoft??support?number?toll?free?number ?microsoft??support?phone?number ?microsoft??tech?support ?microsoft??tech?support??phone?number?free?in?usa ?microsoft??tech?support?number ?microsoft??tech?support?phone?number ?microsoft??technical?support?number ?microsoft??technical?support?phone?number ?microsoft??toll?free?customer?care?number ?microsoft??toll?free?number ?microsoft?antivirus?customer?care ?microsoft?contact?number?usa ?microsoft?contact?phone?number ?microsoft?contact?phone?number?usa ?microsoft?customer?care?number?usa?toll?free ?microsoft?customer?care?tchnical?support ?microsoft?customer?care?usa ?microsoft?customer?service?number ?microsoft?customer?service?number?usa ?microsoft?customer?service?phone?number ?microsoft?customer?service?phone?number?usa ?microsoft?customer?service?phone?numbers ?microsoft?customer?support?number ?microsoft?customer?support?phone?number ?microsoft?gold?support?phone?number ?microsoft?help?desk?phone?number ?microsoft?help?phone?number ?microsoft?help?support ?microsoft?internet?security?customer?service?phone number ?microsoft?outlook?customer?service?contact?number ?microsoft?outlook?customer?service?phone?number ?microsoft?outlook?customer?service?toll?free?number ?microsoft?outlook?customer?support?contact?number ?microsoft?outlook?customer?support?telephone number ?microsoft?outlook?tech?support?contact?number ?microsoft?outlook?tech?support?phone?number ?microsoft?outlook?tech?support?telephone?number ?microsoft?outlook?tech?support?toll?free?number ?microsoft?outlook?technical?support?contact?number ?microsoft?outlook?technical?support?phone?number ?microsoft?outlook?technical?support?telephone? number ?microsoft?phone?number?customer?service ?microsoft?phone?number?customer?support ?microsoft?phone?number?support ?microsoft?phone?number?tech?support ?microsoft?phone?number?usa ?microsoft?phone?numbers?customer?support ?microsoft?phone?support ?microsoft?phone?support?number ?microsoft?security?phone?number ?microsoft?support?contact?number ?microsoft?support?contact?phone?number ?microsoft?support?email?address ?microsoft?support?number ?microsoft?support?number?usa ?microsoft?support?outlook?toll?free?number ?microsoft?support?phone ?microsoft?support?phone?number ?microsoft?support?phone?number?usa ?microsoft?support?telephone?number ?microsoft?support?telephone?number?usa ?microsoft?tech?support?number ?microsoft?tech?support?number?usa ?microsoft?tech?support?phone?number ?microsoft?tech?support?phone?number?free ?microsoft?tech?support?phone?number?us ?microsoft?technical?support ?microsoft?technical?support?help?desk?phone?number ?microsoft?technical?support?number ?microsoft?technical?support?number?usa ?microsoft?technical?support?phone?number ?microsoft?technical?support?phone?number?usa ?microsoft?technologies?phone?number ?microsoft?telephone?support?number ?microsoft?usa?customer?care?for?tech?support ?microsoft?usa?phone?number ?microsoftcustomer?service?phone?number ?phone?number?for?microsoft???technical?support ?phone?number?for?microsoft??customer?service ?phone?number?for?microsoft??customer?service ?phone?number?for?microsoft??customer?support ?phone?number?for?microsoft??security ?phone?number?for?microsoft??support ?phone?number?for?microsoft??technical?support ?phone?number?for?microsoft?customer?service ?phone?number?formicrosoft??customer?service ?phone?number?formicrosoft??customer?support ?phone?number?formicrosoft??tech?support ?phone?number?formicrosoft??technical?support ?telephone?number?for?microsoft??technical?support contact??phone?number?for?microsoft contact?microsoft?customer?service?and?support online contact?us?microsoft?support customer?service?number?for?microsoft free?helpline?number?for?microsoft free?helpline?number?for?microsoft free?microsoft?cutomer?service?phone?number free?online?technical?service?microsoft helpline?support?&?service?for?microsoft helpline?toll?free?number?for?microsoft microsoft?activation?toll?free?phone?number microsoft?canada?customer?care?phone?number microsoft?canada?tech?support?phone?number microsoft?contact?number microsoft?contact?number?technical?support microsoft?contact?us?toll?free?number microsoft?customer?care?phone?number microsoft?customer?care?support?toll?free?number microsoft?customer?service?and?support?online microsoft?customer?service?and?support?phone number microsoft?customer?service?number microsoft?customer?service?phone?number microsoft?customer?service?toll?free?no microsoft?customer?service?toll?free?number?canada microsoft?customer?service?toll?free?number?uk microsoft?customer?service?toll?free?number?usa microsoft?customer?sevice?phone?number microsoft?customer?support?number microsoft?customer?support?phone?number microsoft?customer?support?toll?free?number microsoft?online?support?toll?free?number microsoft?outlook?customer?service?number microsoft?outlook?technical?issues?and?solution contact?number microsoft?tech?support?helpline?number microsoft?tech?support?number?usa microsoft?tech?support?phone?number microsoft?tech?support?phone?number microsoft?tech?support?toll?free microsoft?tech?support?toll?free microsoft?tech?support?toll?free?number microsoft?tech?support?toll?free?number?UK microsoft?techinical?support?phone?number microsoft?technical?helpline?number microsoft?technical?issue?toll?free?number microsoft?technical?issues?and?conflict microsoft?technical?issues?and?need?to?close microsoft?technical?issues?and?service microsoft?technical?issues?and?solution?ppt microsoft?technical?issues?and?solutions microsoft?technical?issues?and?solutions?pdf microsoft?technical?issues?company?service microsoft?technical?issues?contact?person microsoft?technical?issues?customer?support microsoft?technical?issues?problem?solving microsoft?technical?issues?services microsoft?technical?issues?today microsoft?technical?issues?with?email microsoft?technical?support?calling?me microsoft?technical?support?number microsoft?technical?support?number?australia microsoft?technical?support?phone?number microsoft?technical?support?phone?number?usa microsoft?technical?support?pnone microsoft?technical?support?toll?free?number microsoft?technical?support?usa?phone?number microsoft?toll?free?helpline?number microsoft?toll?free?helpline?number microsoft?toll?free?helpline?phone?number microsoft?toll?free?hotline?phone?number microsoft?toll?free?number?for?tech?support microsoft?toll?free?number?of?uk microsoft?toll?free?number?of?us microsoft?toll?free?phone?number?of?tech?support microsoft?toll?free?tech?support?number?usa microsoft?toll?free?tech?support?phone?number microsoft?toll?free?telephone?number microsoft?usa?customer?care?number microsoft?usa?tech?support?phone?number phone?number?for?microsoft?cutomer?service phone?number?microsoft?tech?support technical?support?phone?number?of?microsoft telephone?number?microsoft?support telephone?number?microsoft?toll?free toll?free??microsoft?phone?number toll?free?helpline?microsoft?phone?number toll?free?hotline?number?for?microsoft toll?free?microsoft?activation?number toll?free?microsoft?customer?service?phone?number toll?free?microsoft?support toll?free?microsoft?support?number toll?free?microsoft?support?phone?number toll?free?microsoft?technical?support?number toll?free?number?for?microsoft?issue toll?free?number?for?microsoft?tech?support toll?free?number?for?microsoft?technical?support toll?free?number?microsoft?tech?support toll?free?number?microsoft?technical?support toll?free?number?of?microsoft?customer?service toll?free?phone?number?for?microsoft toll?free?technical?helpline?number toll?free?technical?support?phone?number toll?free?technical?support?phone?number?for microsoft -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 16:48:15 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 16:48:15 -0000 Subject: [GHC] #11938: Call(USA)) (+++) 1.8OO*213*2171 Office 365 Tech Support Phone Number Microsoft Office 365 Technical Support Phone Number, Microsoft Customer Support Phone Number , Windows Customer Care Phone Number, Office Technical Support Telephone, Windows 10 Technical Issues Helpline Number Message-ID: <050.02cfb7b81a99f50519a8def81bc45a03@haskell.org> #11938: Call(USA)) (+++) 1.8OO*213*2171 Office 365 Tech Support Phone Number Microsoft Office 365 Technical Support Phone Number, Microsoft Customer Support Phone Number , Windows Customer Care Phone Number, Office Technical Support Telephone, Windows 10 Technical Issues Helpline Number -------------------------------------+------------------------------------- Reporter: dsvgfdsgfds | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- call microsoft tech support phone number calls from microsoft technical support contact microsoft customer service contact microsoft customer service and support online contact microsoft customer support contact microsoft email support contact microsoft live support contact microsoft office by phone contact microsoft office support contact microsoft office support by phone contact microsoft phone number contact microsoft support by email contact microsoft support by phone contact microsoft support email contact microsoft support phone number contact microsoft support team contact microsoft tech support contact microsoft tech support phone number contact microsoft technical support contact microsoft technical support by phone contact microsoft windows support contact number for microsoft contact number for microsoft office contact number for microsoft office support contact number for microsoft support contact phone number for microsoft contact phone number for microsoft support contact windows support phone number contacting microsoft support by phone customer service for microsoft customer service for microsoft office customer service microsoft office customer service number for microsoft customer service number for microsoft office customer service phone number for microsoft customer support for microsoft customer support microsoft phone number email microsoft support team hotmail customer service phone number hotmail customer support number i need a phone number for microsoft support microsoft 24 hour support number microsoft 365 contact number microsoft 365 customer service number microsoft 365 customer service phone number microsoft 365 help phone number microsoft 365 phone number microsoft 365 support number microsoft 800 number tech support microsoft access technical support microsoft account contact phone number microsoft account customer service microsoft account customer service number microsoft account customer service phone number microsoft account customer support phone number microsoft account help number microsoft account phone number microsoft account support number microsoft account support phone number microsoft address and phone number microsoft assistance phone number microsoft billing phone number microsoft call center number microsoft calls to fix computer microsoft computer support phone number microsoft contact number canada microsoft contact number uk microsoft contact number usa microsoft contact phone number microsoft contact phone numbers microsoft contact support number microsoft contact support phone number microsoft contact telephone number microsoft corporate phone number microsoft corporation phone number microsoft customer assistance microsoft customer care phone number microsoft customer care toll free number microsoft customer phone number microsoft customer service and support microsoft customer service and support online microsoft customer service and support phone number microsoft customer service canada microsoft customer service center microsoft customer service contact microsoft customer service contact number microsoft customer service email microsoft customer service hotline microsoft customer service hours microsoft customer service number microsoft customer service number usa microsoft customer service phone microsoft customer service phone number microsoft customer service support microsoft customer service telephone number microsoft customer service toll free number microsoft customer service uk microsoft customer services phone number microsoft customer support email microsoft customer support number microsoft customer support phone microsoft customer support phone number microsoft customer support services microsoft customer support telephone number microsoft email contact number microsoft email customer service microsoft email customer service number microsoft email help phone number microsoft email phone number microsoft email support number microsoft email support phone number microsoft email tech support microsoft excel technical support microsoft genuine tech support phone number microsoft headquarters phone number microsoft help and support microsoft help center phone number microsoft help contact number microsoft help desk number microsoft help desk phone number microsoft help phone number microsoft help telephone number microsoft helpline phone number microsoft hotline number microsoft live account support microsoft live account support phone number microsoft live chat support microsoft live contact number microsoft live customer service number microsoft live customer service phone number microsoft live customer support microsoft live customer support number microsoft live help phone number microsoft live phone number microsoft live support phone number microsoft live tech support microsoft live tech support number microsoft main office phone number microsoft main phone number microsoft number customer service microsoft office 2007 support phone number microsoft office 2010 contact number microsoft office 2010 customer service microsoft office 2010 customer service phone number microsoft office 2010 help microsoft office 2013 customer service microsoft office 2013 customer service phone number microsoft office 2013 phone number microsoft office 2013 support phone number microsoft office 2013 tech support phone number microsoft office 2013 technical support phone number microsoft office 365 contact number microsoft office 365 customer service number microsoft office 365 customer service phone number microsoft office 365 customer support phone number microsoft office 365 help phone number microsoft office 365 phone number microsoft office 365 support number microsoft office 365 support phone number microsoft office 365 tech support phone number microsoft office activation phone number microsoft office activation toll free number microsoft office contact number microsoft office contact number usa microsoft office contact phone microsoft office contact phone number microsoft office contact support microsoft office customer service microsoft office customer service number microsoft office customer service phone microsoft office customer service phone number microsoft office customer service telephone microsoft office customer service telephone number microsoft office customer service toll free number microsoft office customer support microsoft office customer support number microsoft office customer support phone microsoft office customer support phone number microsoft office help desk microsoft office help desk phone number microsoft office help line microsoft office help number microsoft office help online microsoft office help phone number microsoft office helpline number microsoft office installation help microsoft office live chat support microsoft office live help microsoft office live phone number microsoft office number to call microsoft office online help microsoft office online support microsoft office phone number microsoft office phone number customer service microsoft office phone number support microsoft office phone support microsoft office phone support number microsoft office product support microsoft office support contact microsoft office support contact number microsoft office support email microsoft office support number microsoft office support number usa microsoft office support phone microsoft office support phone number microsoft office support phone number usa microsoft office support telephone number microsoft office tech support microsoft office tech support number microsoft office tech support phone number microsoft office tech support phone numbers microsoft office technical support microsoft office technical support number microsoft office technical support phone number microsoft office telephone number microsoft office telephone support microsoft office toll free number microsoft office word help microsoft online customer service microsoft online phone number microsoft online support phone number microsoft online tech support microsoft online tech support phone number microsoft online technical support microsoft outlook help online microsoft outlook help phone number microsoft outlook tech support phone number microsoft outlook technical support phone number microsoft phone customer service microsoft phone number canada microsoft phone number customer service microsoft phone number for support microsoft phone number support microsoft phone number tech support microsoft phone number technical support microsoft phone number uk microsoft phone numbers for customer service microsoft phone support number microsoft phone tech support microsoft powerpoint technical support microsoft product support number microsoft product support phone number microsoft product support services microsoft project technical support microsoft publisher 2003 support microsoft publisher technical support microsoft remote desktop technical support microsoft sales phone number microsoft scam phone call microsoft scam phone calls microsoft scam phone number microsoft scams phone calls microsoft server support number microsoft service center phone call microsoft service center phone number microsoft service phone number microsoft store contact number microsoft store customer service microsoft store customer service number microsoft store customer service phone number microsoft store phone number microsoft store support number microsoft support call number microsoft support center phone number microsoft support contact number microsoft support helpline microsoft support number uk microsoft support phone number microsoft support phone number windows 7 microsoft support phone number windows 8 microsoft support phone numbers microsoft support team contact microsoft support team email microsoft support team number microsoft support team phone number microsoft support team telephone number microsoft support telephone number microsoft support toll free number microsoft surface support phone number microsoft surface tech support microsoft surface tech support phone number microsoft tech help phone number microsoft tech phone number microsoft tech support canada microsoft tech support contact number microsoft tech support hours microsoft tech support number microsoft tech support number usa microsoft tech support phone microsoft tech support phone number microsoft tech support phone number for windows 7 microsoft tech support phone number for windows 8 microsoft tech support phone number usa microsoft tech support phone numbers microsoft tech support scam microsoft tech support scams microsoft tech support telephone number microsoft tech support toll free microsoft tech support toll free number microsoft tech support windows 7 microsoft technical assistance microsoft technical assistance phone number microsoft technical help phone number microsoft technical support calling me microsoft technical support canada microsoft technical support chat live microsoft technical support contact microsoft technical support contact number microsoft technical support email microsoft technical support hotline microsoft technical support number microsoft technical support phone microsoft technical support phone calls microsoft technical support phone number microsoft technical support scam microsoft technical support scams microsoft technical support telephone number microsoft technical support uk microsoft technician phone call microsoft telephone number for technical support microsoft telephone support number microsoft toll free number microsoft toll free number for product activation microsoft toll free number usa microsoft toll free numbers microsoft troubleshooting number microsoft troubleshooting phone number microsoft uk contact number microsoft uk phone number microsoft vista tech support phone number microsoft windows 7 help phone number microsoft windows 7 support number microsoft windows 7 support phone number microsoft windows 7 tech support phone number microsoft windows 7 technical support phone number microsoft windows 8 support phone number microsoft windows 8 tech support phone number microsoft windows activation toll free number microsoft windows contact number microsoft windows contact phone number microsoft windows customer service microsoft windows customer service phone number microsoft windows customer service toll free number microsoft windows customer support phone number microsoft windows help number microsoft windows help phone number microsoft windows phone number microsoft windows phone number for customer service microsoft windows phone scams microsoft windows phone support number microsoft windows support number microsoft windows support phone number microsoft windows tech support microsoft windows tech support number microsoft windows tech support phone number microsoft windows technical support microsoft windows technical support number microsoft windows technical support phone number microsoft windows telephone number microsoft windows toll free number microsoft word contact number microsoft word contact phone number microsoft word customer service number microsoft word customer service phone number microsoft word customer support phone number microsoft word help phone number microsoft word phone number microsoft word support number microsoft word support phone number microsoft word tech support phone number microsoft word technical support phone number microsoft zune tech support phone number microsoft.com support phone number ms office support phone number number for microsoft office support number for microsoft support number to microsoft customer service office 2013 support phone number office 365 customer service office 365 customer service number office 365 customer service phone number office 365 customer support number office 365 support phone number us phone # for microsoft tech support phone call from microsoft technical support phone call from windows technical support phone number for microsoft customer service phone number for microsoft customer support phone number for microsoft help phone number for microsoft live support phone number for microsoft office phone number for microsoft office support phone number for microsoft support phone number for microsoft tech support phone number for microsoft technical support phone number for microsoft windows phone number for microsoft windows support phone number for windows support phone number microsoft office phone number microsoft office support phone number microsoft support phone number of microsoft customer service phone number to contact microsoft phone number to contact microsoft support phone number to microsoft customer service phone number to microsoft support phone with microsoft office phones with microsoft office received a call from microsoft support skype customer service 800 number skype customer service number skype customer service phone number skype support phone number support for microsoft office support microsoft phone number support phone number for microsoft tech support for microsoft office tech support microsoft phone number tech support number for microsoft technical department of windows technical support microsoft phone number telephone number for microsoft telephone number for microsoft office telephone number for microsoft office support telephone number for microsoft support telephone number for microsoft technical support telephone number microsoft support toll free customer service number at microsoft toll free number for microsoft toll free number of microsoft windows 7 customer support phone number windows 7 support phone number windows 7 tech support phone number windows 7 technical support phone number windows 8 support phone number windows 8 tech support number windows 8 tech support phone number windows customer service number windows customer service phone number windows customer support number windows customer support phone number windows help and support phone number windows help phone number windows live support number windows microsoft contact number windows microsoft customer service windows microsoft phone number windows microsoft support phone number windows phone customer support number windows phone support number windows phone support phone number windows phone tech support number windows service center phone number windows service center scam windows support center phone number windows support contact number windows support phone number windows support telephone number windows tech support number windows tech support phone number windows technical department windows technical support number windows technical support phone number windows telephone scams windows telephone support -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 17:13:44 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 17:13:44 -0000 Subject: [GHC] #11939: Call 1-800-863-0840how to get your kindle fire to turn on, kindle paperwhite won't turn on Message-ID: <048.eb7e5918a997341987400e9fe2a728a0@haskell.org> #11939: Call 1-800-863-0840how to get your kindle fire to turn on, kindle paperwhite won't turn on -------------------------------------+------------------------------------- Reporter: ford.figo | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- ''' Call 1-800-863-0840how to get your kindle fire to turn on, kindle paperwhite won't turn on''' Password Reset At 1.800.863.0840 Kindle C.u.s.t.o.m.e.r S.e.r.v.i.c.e Number USA Kindle C.u.s.t.o.m.e.r C.a.r.e Number USA Used 1.800.863.0840 Kindle T.e.c.h S.u.p.p.o.r.t Number USA Kindle H.e.l.p D.e.s.k Number USA thats 1-800-863-0840 Kindle T.e.c.h S.u.p.p.o.r.t Number USA Kindle H.e.l.p D.e.s.k Number USA Kindle T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t p.h.o.n.e number USA 1-800-863-0840 Kindle C.u.s.t.o.m.e.r S.u.p.p.o.r.t P.h.o.n.e number USA Canada Kindle H.e.l.p D.e.s.k p.h.o.n.e number Kindle T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number USA 1-800-863-0840KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Number usa KINDLE P.h.o.n.e Number 1-800-863-0840 USA KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Numbe f.r.e.e USA !!1-800-863-0840 KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number KINDLE C.U.S.T.O.M.E.R S.E.R.V.I.C.E P.h.o.n.e Numberf.r.e.e USA !!1-800-863-0840 KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number KINDLE C.U.S.T.O.M.E.R S.E.R.V.I.C.E P.h.o.n.e Numberf.r.e.e USA !!1-800-863-0840 KINDLE T.e.c .h S.u.p.p.o.r.t P.h.o.n.e Number KINDLE C.U.S.T.O.M.E.R S.E.R.V.I.C.E P.h.o.n.e Numberf.r.e.e USA !!1-800-863-0840 KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number KINDLE C.U.S.T.O.M.E.R S.E.R.V.I.C.E P.h.o.n.e Number JUSTs C.a.l.l USA 1-800-863-0840Kindle T.e.c.h S.u.p.p.o.r.t Number, Wireless Kindle C.U.S.T.O.M.E.R S.E.R.V.I.C.E Number, Kindle S.u.p.p.o.r.t Number,KINDLE P.h.o.n.e Number Kindle C.U.S.T.O.M.E.R P.h.o.n.e Number H.e.l.p.l.i.n.e Number,USA 1-800-863-0840 KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number KINDLE C.U.S.T.O.M.E.R S.E.R.V.I.C.E P.h.o.n.e Number here.1-800-863-0840 KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number KINDLE C.U.S.T.O.M.E.R S.E.R.V.I.C.E P.h.o.n.e Number KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t Number KINDLE H.e.l.pdesk Number KINDLE H.e.l.pdesk P.h.o.n.e Number KINDLE H.e.l.p.l.i.n.e Number,KINDLE P.h.o.n.e Number USA ,1-800-863-0840.KINDLE P.h.o.n.e Number KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number H.e.l.p.l.i.n.e t.o.l.lf.r.e.e !! 1-800-863-0840 KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number !! KINDLE install T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number f.r.e.e USA !!1-800-863-0840 KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number KINDLE C.U.S.T.O.M.E.R S.E.R.V.I.C.E P.h.o.n.e Number !!! ***KINDLE C.U.S.T.O.M.E.R S.E.R.V.I.C.E P.h.o.n.e Number!!! KINDLE P.h.o.n.e Number KINDLE teleP.h.o.n.e Number!!1-800-863-0840 KINDLE P.h.o.n.e Number!!!T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number KINDLE t.o.l.l f.r.e.e P.h.o.n.e NumberP.h.o.n.e Number 1-800-863-0840 USA , KINDLE S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Numbe here.Describe t.o.l.l f.r.e.e KINDLE P.h.o.n.e Number 1-800-863-0840 USA , KINDLE S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Number here.t.o.l.l f.r.e.e KINDLE P.h.o.n.e Number 1-800-863-0840 USA , KINDLE S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Number t.o.l.l f.r.e.e KINDLE P.h.o.n.e Number 1-800-863-0840 USA , KINDLE S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE C.U.S.T.O.M.E.R S.u.p.p.o.r.t Number?? This article is in need of a T.e.c.h.n.i.c.a.l review. This article is in need of an editorial review. KINDLE P.h.o.n.e Number 1-800-863-0840 USA , KINDLE S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE C.U.S.T.O.M.E.R S.u.p.p.o.r.t Number?? KINDLE S.u.p.p.o.r.t P.h.o.n.e Number 1-800-863-0840 USA , KINDLE P.h.o.n.e Number, KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE S.E.R.V.I.C.E S.u.p.p.o.r.t Number KINDLE S.u.p.p.o.r.t P.h.o.n.e Number 1-800-863-0840 USA , KINDLE P.h.o.n.e Number, KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE S.E.R.V.I.C.E S.u.p.p.o.r.t Number?? KINDLE P.h.o.n.e Number 1-800-863-0840 USA , KINDLE S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE C.U.S.T.O.M.E.R S.u.p.p.o.r.t Number?? KINDLE S.u.p.p.o.r.t P.h.o.n.e Number 1-800-863-0840 USA , KINDLE S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE C.U.S.T.O.M.E.R S.u.p.p.o.r.t Number?? KINDLE P.h.o.n.e Number $ 1-800-863-0840 $KINDLE P.h.o.n.e Number KINDLE security P.h.o.n.e Number KINDLE P.h.o.n.e Number $ 1-800-863-0840 $KINDLE S.u.p.p.o.r.t P.h.o.n.e Number KINDLE symantec P.h.o.n.e Number KINDLE P.h.o.n.e Number C.U.S.T.O.M.E.R S.E.R.V.I.C.E $ 1-800-863-0840 $KINDLE C.U.S.T.O.M.E.R S.E.R.V.I.C.E P.h.o.n.e Number KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Number KINDLE P.h.o.n.e Numbers KINDLE H.e.l.p P.h.o.n.e Number KINDLE S.u.p.p.o.r.t P.h.o.n.e Number $ 1-800-863-0840 $KINDLE P.h.o.n.e S.u.p.p.o.r.t KINDLE c.o.n.t.a.c.t P.h.o.n.e Number KINDLE internet security P.h.o.n.e Number KINDLE S.u.p.p.o.r.t P.h.o.n.e Number KINDLE P.h.o.n.e KINDLE 1855 P.h.o.n.e Number P.h.o.n.e Number for KINDLE P.h.o.n.e Numbers KINDLE C.U.S.T.O.M.E.R S.E.R.V.I.C.E P.h.o.n.e Number KINDLE C.U.S.T.O.M.E.R S.u.p.p.o.r.t P.h.o.n.e Number find a P.h.o.n.e Number KINDLE USA P.h.o.n.e Number USA P.h.o.n.e Number P.h.o.n.e Number for KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number KINDLE P.h.o.n.e S.u.p.p.o.r.t f.r.e.e P.h.o.n.e Numbers P.h.o.n.e Number KINDLE P.h.o.n.e Number get human find P.h.o.n.e Number P.h.o.n.e Number for KINDLE security us P.h.o.n.e Number P.h.o.n.e Number USA $ 1-800-863-0840 $KINDLE c.o.n.t.a.c.t P.h.o.n.e Number KINDLE P.h.o.n.e Number for S.u.p.p.o.r.t KINDLE c.o.n.t.a.c.t Number P.h.o.n.e Number for KINDLE USA P.h.o.n.e Numbers P.h.o.n.e Number search us P.h.o.n.e Numbers find P.h.o.n.e Numbers Nortoumber KINDLE 1855 Number KINDLE downloads KINDLE f.r.e.e trial KINDLE internet security 2012 KINDLE cancellation P.h.o.n.e Number updates P.h.o.n.e book P.h.o.n.e Numbers in USA teleP.h.o.n.e Number KINDLE H.e.l.p.l.i.n.e Number P.h.o.n.e directory c.o.n.t.a.c.t KINDLE by P.h.o.n.e KINDLE subscription KINDLE ghost download KINDLE com S.u.p.p.o.r.t P.h.o.n.e Number KINDLE c.o.n.t.a.c.t KINDLE c.o.n.t.a.c.t Number T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Number KINDLE P.h.o.n.e KINDLE f.r.e.e KINDLE S.u.p.p.o.r.t t.o.l.l f.r.e.e KINDLE P.h.o.n.e Number 1-800-863-0840 f.r.e.e f.r.e.e USA , KINDLE S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Number t.o.l.l f.r.e.e KINDLE P.h.o.n.e Number 1-800-863-0840 USA , KINDLE S.u.p.p.o.r.t P.h.o.n.e Number, KINDLE T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e Numbe last edited 2016.02.28 f.r.e.e USA !!1-800-863-0840 KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number KINDLE C.U.S.T.O.M.E.R S.E.R.V.I.C.E P.h.o.n.e Numberf.r.e.e USA !!1-800-863-0840 KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number KINDLE C.U.S.T.O.M.E.R S.E.R.V.I.C.E P.h.o.n.e Numberf.r.e.e USA !!1-800-863-0840 KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number KINDLE C.U.S.T.O.M.E.R S.E.R.V.I.C.E P.h.o.n.e Numberf.r.e.e USA !!1-800-863-0840 KINDLE T.e.c.h S.u.p.p.o.r.t P.h.o.n.e Number KINDLE C.U.S.T.O.M.E.R S.E.R.V.I.C.E P.h.o.n.e Number -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 18:01:54 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 18:01:54 -0000 Subject: [GHC] #11940: Canon printer T.e.c.h S.u.p.p.o.r.t n.u.m.be.r. 18o0 790 9186 Message-ID: <047.d8ab21209ce8207ab4f235d0f124b340@haskell.org> #11940: Canon printer T.e.c.h S.u.p.p.o.r.t n.u.m.be.r. 18o0 790 9186 -------------------------------------+------------------------------------- Reporter: grengar2 | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Canon printer T.e.c.h S.u.p.p.o.r.t n.u.m.be.r. 18o0 790 9186 Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.be.r. U.S.A, Canon printer h.e.l.p.l.i.n.e p.h.o.n.e n.u.m.be.r. Google $$18o0 790 9186 $$ Canon printer t.e.c.h s.u.p.p.o.r.t n.u.m.be.r. u.s.a. C.a.l.l Canon printer h.e.l.p d.e.s.k n.u.m.be.r. n.u.m.be.r. U.S.A @@18o0 790 9186 Canon printer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.be.r. u.s.a. C.a.l.l Canon printer h.e.l.p d.e.s.k n.u.m.be.r. n.u.m.be.r. U.S.A Canon printer s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r USA Call @@@@@@@@sutta USA2 18o0 790 9186 Canon printer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.be.r. u.s.a. C.a.l.l Canon printer h.e.l.p d.e.s.k n.u.m.be.r. n.u.m.be.r. U.S.A Canon printer s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r USA Call @@@@@@ USA1 18o0 790 9186 Canon printer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.be.r. u.s.a. C.a.l.l Canon printer h.e.l.p d.e.s.k n.u.m.be.r. n.u.m.be.r. U.S.A Canon printer s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r USA Dial USA1 18o0 790 9186 Canon printer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.be.r. u.s.a. C.a.l.l Canon printer h.e.l.p d.e.s.k n.u.m.be.r. n.u.m.be.r. U.S.A Canon printer s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r USA USA USA 1 18o0 790 9186 Canon printer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.be.r. u.s.a. C.a.l.l Canon printer h.e.l.p d.e.s.k n.u.m.be.r. n.u.m.be.r. U.S.A Canon printer s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r USA USA 1-18o0 .-790 -9186 USA, Canon printer Tech s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r.,Canon printer pro technical s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. 1 18o0 790 9186 .Canon printer Tech s.u.p.p.o.r.t n.u.m.be.r. Canon printer Tech Canon printer tech s.u.p.p.o.r.t, Canon printer tech s.u.p.p.o.r.t n.u.m.be.r., Canon printer tech s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r., Canon printer pro technical s.u.p.p.o.r.t, Canon printer pro technical s.u.p.p.o.r.t n.u.m.be.r., Canon printer pro technical s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r., Canon printer tech s.u.p.p.o.r.t n.u.m.be.r., Canon printer s.u.p.p.o.r.t n.u.m.be.r., Canon printer Tech s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r., Canon printer s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r., Canon printer pro technical s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r., Canon printer pro technical s.u.p.p.o.r.t n.u.m.be.r.,s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. for Canon printer P.h.o.n.e n.u.m.be.r. for Canon printer c.u.s.t.o.m.e.rService Technical s.u.p.p.o.r.t TeleP.h.o.n.e n.u.m.be.r. Canon printer s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer tech s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer pro technical s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer pro technical s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e n.u.m.be.r. Canon printer Canon printer internet security technical s.u.p.p.o.r.t Canon printer pro technical s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer tech s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. I-8o0 .-790 -9186 Canon printer Canon printer s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer s.u.p.p.o.r.t P.h.o.n.e Canon printer tech s.u.p.p.o.r.t Canon printer c.u.s.t.o.m.e.r s.u.p.p.o.r.t Canon printer P.h.o.n.e s.u.p.p.o.r.t Canon printer s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer pro technical s.u.p.p.o.r.t Canon printer c.u.s.t.o.m.e.r s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer tech s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer contact Canon printer s.u.p.p.o.r.t Canon printer pro technical s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. ~!~18o0 790 9186 ++ Canon printer Canon printer P.h.o.n.e n.u.m.be.r. Canon printer tech s.u.p.p.o.r.t Canon printer s.u.p.p.o.r.t ticket Canon printer c.u.s.t.o.m.e.r s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer tech s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer pro technical s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer s.u.p.p.o.r.t center Canon printer teleP.h.o.n.e s.u.p.p.o.r.t call Canon printer s.u.p.p.o.r.t Canon printer s.u.p.p.o.r.t s.u.p.p.o.r.t Canon printer Canon printer billing s.u.p.p.o.r.t Canon printer pro technical s.u.p.p.o.r.t n.u.m.be.r. Canon printer s.u.p.p.o.r.t Canon printer Canon printer online s.u.p.p.o.r.t Canon printer contact s.u.p.p.o.r.t Canon printer s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer tech s.u.p.p.o.r.t n.u.m.be.r. Canon printer s.u.p.p.o.r.t for Canon printer Canon printer P.h.o.n.e n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e n.u.m.be.r. Canon printer Canon printer contact P.h.o.n.e n.u.m.be.r. Canon printer Canon printer P.h.o.n.e n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e n.u.m.be.r. Canon printer P.h.o.n.e n.u.m.be.r. Canon printer for Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e Canon printer software P.h.o.n.e n.u.m.be.r. Canon printer P.h.o.n.e n.u.m.be.r. Canon printer for Canon printer Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e teleP.h.o.n.e n.u.m.be.r. Canon printer Canon printer h.e.l.p.l.i.n.e P.h.o.n.e n.u.m.be.r. Canon printer Canon printer contact n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e n.u.m.be.r. ~!~18o0 790 9186 ++ Canon printer us Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e n.u.m.be.r. Canon printer USA Canon printer teleP.h.o.n.e n.u.m.be.r. Canon printer Canon printer P.h.o.n.e n.u.m.be.r. Canon printer USA Canon printer contact n.u.m.be.r. Canon printer Canon printer n.u.m.be.r. Canon printer Canon printer contact n.u.m.be.r. Canon printer USA Canon printer h.e.l.p.l.i.n.e n.u.m.be.r. Canon printer Canon printer h.e.l.p.l.i.n.e n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e n.u.m.be.r. Canon printer Canon printer contact teleP.h.o.n.e n.u.m.be.r. Canon printer contact n.u.m.be.r. Canon printer for Canon printer Canon printer software contact n.u.m.be.r. Canon printer Canon printer n.u.m.be.r. Canon printer Canon printer teleP.h.o.n.e n.u.m.be.r. Canon printer uk Canon printer registration n.u.m.be.r. Canon printer Canon printer n.u.m.be.r. Canon printer USA Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e Canon printer software c.u.s.t.o.m.e.r s.e.r.v.i.c.e contact Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e Canon printer service Canon printer pro technical s.u.p.p.o.r.t Canon printer c.u.s.t.o.m.e.r s.u.p.p.o.r.t Canon printer pro technical s.u.p.p.o.r.t reviews teleP.h.o.n.e Canon printer Canon printer tech s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer tech s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e Canon printer pro technical s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer free s.u.p.p.o.r.t Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e billing Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e email address Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e reviews contact Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e Canon printer tech s.u.p.p.o.r.t n.u.m.be.r. Canon printer USA Canon printer s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer contact n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e n.u.m.be.r. Canon printer Canon printer pro technical s.u.p.p.o.r.t USA Canon printer pro technical s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer tech s.u.p.p.o.r.t P.h.o.n.e Canon printer tech s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e teleP.h.o.n.e n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer P.h.o.n.e n.u.m.be.r. Canon printer Canon printer online s.u.p.p.o.r.t Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e n.u.m.be.r. Canon printer Canon printer tech s.u.p.p.o.r.t center Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e Canon printer software c.u.s.t.o.m.e.r s.e.r.v.i.c.e Canon printer c.u.s.t.o.m.e.r care n.u.m.be.r. Canon printer USA Canon printer c.u.s.t.o.m.e.r n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r care n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r care n.u.m.be.r. Canon printer Canon printer tech s.u.p.p.o.r.t Canon printer pro technical s.u.p.p.o.r.t Canon printer s.u.p.p.o.r.t Canon printer tech s.u.p.p.o.r.t Canon printer s.u.p.p.o.r.t center Canon printer Antivirus.com c.u.s.t.o.m.e.r s.e.r.v.i.c.e Canon printer c.u.s.t.o.m.e.r care n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r care Canon printer P.h.o.n.e n.u.m.be.r. Canon printer P.h.o.n.e n.u.m.be.r. Canon printer for Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e Canon printer P.h.o.n.e s.u.p.p.o.r.t Canon printer P.h.o.n.e n.u.m.be.r. Canon printer tech s.u.p.p.o.r.t Canon printer s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer contact Canon printer by P.h.o.n.e Canon printer contact P.h.o.n.e n.u.m.be.r. Canon printer Canon printer h.e.l.p.l.i.n.e P.h.o.n.e n.u.m.be.r. Canon printer Canon printer P.h.o.n.e Canon printer for P.h.o.n.e Canon printer contact n.u.m.be.r. Canon printer Canon printer contact s.u.p.p.o.r.t contact Canon printer Canon printer contact n.u.m.be.r. Canon printer USA Canon printer n.u.m.be.r. Canon printer Canon printer teleP.h.o.n.e n.u.m.be.r. Canon printer Canon printer n.u.m.be.r. Canon printer USA Canon printer s.u.p.p.o.r.t services technical s.u.p.p.o.r.t for Canon printer Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e n.u.m.be.r. Canon printer USA Canon printer c.u.s.t.o.m.e.r care n.u.m.be.r. Canon printer USA Canon printer c.u.s.t.o.m.e.r care n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r care center Canon printer c.u.s.t.o.m.e.r s.u.p.p.o.r.t Canon printer c.u.s.t.o.m.e.r s.u.p.p.o.r.t P.h.o.n.e Canon printer c.u.s.t.o.m.e.r h.e.l.p Canon printer c.u.s.t.o.m.e.r & technical s.u.p.p.o.r.t Canon printer c.u.s.t.o.m.e.r portal Canon printer c.u.s.t.o.m.e.r care P.h.o.n.e n.u.m.be.r. Canon printer USA Canon printer c.u.s.t.o.m.e.r care email Canon printer h.e.l.p.l.i.n.e Canon printer tech s.u.p.p.o.r.t contact Canon printer c.u.s.t.o.m.e.r care Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e n.u.m.be.r. Canon printer Canon printer protection c.u.s.t.o.m.e.r s.e.r.v.i.c.e n.u.m.be.r. Canon printer Canon printer software c.u.s.t.o.m.e.r s.e.r.v.i.c.e n.u.m.be.r. Canon printer Canon printer hotline c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e n.u.m.be.r. Canon printer us how to contact Canon printer by email Canon printer free P.h.o.n.e s.u.p.p.o.r.t Canon printer pro technical s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer pro technical s.u.p.p.o.r.t h.e.l.p desk P.h.o.n.e n.u.m.be.r. Canon printer Canon printer pro technical s.u.p.p.o.r.t n.u.m.be.r. Canon printer n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e n.u.m.be.r. Canon printer P.h.o.n.e n.u.m.be.r. Canon printer for Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e contact Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e n.u.m.be.r. Canon printer Canon printer security s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer internet security s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer P.h.o.n.e n.u.m.be.r. Canon printer for Canon printer security Canon printer internet security P.h.o.n.e n.u.m.be.r. Canon printer in USA Canon printer contact P.h.o.n.e n.u.m.be.r. Canon printer in USA Canon printer security contact P.h.o.n.e n.u.m.be.r. Canon printer Canon printer h.e.l.p desk P.h.o.n.e n.u.m.be.r. Canon printer in USA Canon printer tech s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer free in USA Canon printer s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer P.h.o.n.e n.u.m.be.r. Canon printer s.u.p.p.o.r.t for technical issue in USA P.h.o.n.e n.u.m.be.r. Canon printer for Canon printer pro technical s.u.p.p.o.r.t Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e teleP.h.o.n.e n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r care n.u.m.be.r. Canon printer Canon printer internet security h.e.l.p P.h.o.n.e n.u.m.be.r.[Category:Call @@@@@@@@ sutta USA2 18o0 790 9186 Canon printer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.be.r. u.s.a. C.a.l.l Canon printer h.e.l.p d.e.s.k n.u.m.be.r. n.u.m.be.r. U.S.A Call @@@@@@@@ sutta USA2 18o0 790 9186 Canon printer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.be.r. u.s.a. C.a.l.l Canon printer h.e.l.p d.e.s.k n.u.m.be.r. n.u.m.be.r. U.S.A Canon printer s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r USA Call @@@@@@@@sutta USA2 18o0 790 9186 Canon printer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.be.r. u.s.a. C.a.l.l Canon printer h.e.l.p d.e.s.k n.u.m.be.r. n.u.m.be.r. U.S.A Canon printer s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r USA Call @@@@@@ USA1 18o0 790 9186 Canon printer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.be.r. u.s.a. C.a.l.l Canon printer h.e.l.p d.e.s.k n.u.m.be.r. n.u.m.be.r. U.S.A Canon printer s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r USA Dial USA1 18o0 790 9186 Canon printer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.be.r. u.s.a. C.a.l.l Canon printer h.e.l.p d.e.s.k n.u.m.be.r. n.u.m.be.r. U.S.A Canon printer s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r USA USA USA 1 18o0 790 9186 Canon printer t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.be.r. u.s.a. C.a.l.l Canon printer h.e.l.p d.e.s.k n.u.m.be.r. n.u.m.be.r. U.S.A Canon printer s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r USA USA 1-18o0 .-790 -9186 USA][Category:s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. for Canon printer P.h.o.n.e n.u.m.be.r. for Canon printer c.u.s.t.o.m.e.rService Technical s.u.p.p.o.r.t TeleP.h.o.n.e n.u.m.be.r. Canon printer s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer tech s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer pro technical s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer pro technical s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.e.r.v.i.c.e n.u.m.be.r. Canon printer Canon printer internet security technical s.u.p.p.o.r.t Canon printer pro technical s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer tech s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer c.u.s.t.o.m.e.r s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. I-8o0 .-790 -9186 Canon printer Canon printer s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer s.u.p.p.o.r.t P.h.o.n.e Canon printer tech s.u.p.p.o.r.t Canon printer c.u.s.t.o.m.e.r s.u.p.p.o.r.t Canon printer P.h.o.n.e s.u.p.p.o.r.t Canon printer s.u.p.p.o.r.t n.u.m.be.r. Canon printer Canon printer pro technical s.u.p.p.o.r.t Canon printer c.u.s.t.o.m.e.r s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer Canon printer tech s.u.p.p.o.r.t P.h.o.n.e n.u.m.be.r. Canon printer contact Canon printer s.u.p.p.o.r.t Canon printer -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 19:35:10 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 19:35:10 -0000 Subject: [GHC] #11836: Hello World Bug - silent stdout errors In-Reply-To: <042.baad19c7e01cfc8c7893de62fb103b5f@haskell.org> References: <042.baad19c7e01cfc8c7893de62fb103b5f@haskell.org> Message-ID: <057.c1566cfc86bd93328af2cd6f7a5329d7@haskell.org> #11836: Hello World Bug - silent stdout errors -------------------------------------+------------------------------------- Reporter: bit | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Iceland_jack): * cc: Iceland_jack (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 19:53:41 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 19:53:41 -0000 Subject: [GHC] #11830: Disabling idle GC leads to freeze In-Reply-To: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> References: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> Message-ID: <066.25929137280a300e32a12d664264c26c@haskell.org> #11830: Disabling idle GC leads to freeze -------------------------------------+------------------------------------- Reporter: NeilMitchell | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Linux | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kolmodin): * Attachment "check_test_case.sh" added. git bisect automation -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 19:55:10 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 19:55:10 -0000 Subject: [GHC] #11830: Disabling idle GC leads to freeze In-Reply-To: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> References: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> Message-ID: <066.42c3054f80a1dc1b26e8f5b74bd69286@haskell.org> #11830: Disabling idle GC leads to freeze -------------------------------------+------------------------------------- Reporter: NeilMitchell | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Linux | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by kolmodin): git bisect from ghc-8.0.1-rc2 to latest commit in the ghc-8.0 branch suggests a few commits; - 15acd4227106ed912c8d6ebc476263f70cd4510c - 6e524ebaf299043990048356b01c045f2d6dc0d5 - 8e8b6df2e56389a1ed13d4198b1d2f3347706aaa - bbdc52f3a6e6a28e209fb8f65699121d4ef3a4e3 of which only bbdc52f3a6e6a28e209fb8f65699121d4ef3a4e3 looks likely. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 19:58:47 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 19:58:47 -0000 Subject: [GHC] #11830: Disabling idle GC leads to freeze In-Reply-To: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> References: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> Message-ID: <066.0e7c0d43a51576b48ef859de2a9571f5@haskell.org> #11830: Disabling idle GC leads to freeze -------------------------------------+------------------------------------- Reporter: NeilMitchell | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Linux | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by kolmodin): * cc: kolmodin (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 21:29:54 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 21:29:54 -0000 Subject: [GHC] #11444: 8.0 rc1 panics in applyTypeToArgs In-Reply-To: <043.8caf87d45669172d15b0507d2f671ad2@haskell.org> References: <043.8caf87d45669172d15b0507d2f671ad2@haskell.org> Message-ID: <058.62c66bf3fd40b931732d6797c04aaad0@haskell.org> #11444: 8.0 rc1 panics in applyTypeToArgs -------------------------------------+------------------------------------- Reporter: osa1 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Omer, any thoughts about comment:5? On comment:2 * Assume for now that `reallyUnsafePtrEquality# @ a_a1Ts x_X1wq y_X1ws` is ''not'' ok-for-speculation. Then the transformation you show above should not happen. Look at this code in `Simplify`: {{{ -- 2b. Turn the case into a let, if -- a) it binds only the case-binder -- b) unlifted case: the scrutinee is ok-for-speculation -- lifted case: the scrutinee is in HNF (or will later be demanded) | all_dead_bndrs , if is_unlifted then exprOkForSpeculation scrut -- See Note [Case elimination: unlifted case] else exprIsHNF scrut -- See Note [Case elimination: lifted case] || scrut_is_demanded_var scrut = do { tick (CaseElim case_bndr) ; env' <- simplNonRecX env case_bndr scrut ; simplExprF env' rhs cont } }}} We are in the unlifted case, and `exprOkForSpeculation` is false, so this case should not fire. But I think it is firing. Why? Can you check that this really is happening (e.g. there is a `CaseElim` on this case binder)? And figure out why? Can you make a small test case so I can see? Separately, it's true that `exprOkForSpeculation` is being conservative; see this comment in `CoreUtils.app_ok` {{{ | otherwise -> primop_ok op -- A bit conservative: we don't really need && all (expr_ok primop_ok) args -- to care about lazy arguments, but this is easy }}} Let me know if you need more help. Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 15 23:04:53 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 15 Apr 2016 23:04:53 -0000 Subject: [GHC] #11941: stage restriction mentioned when an identifier is out of scope Message-ID: <045.43c65ddae49310b99f4cdd2fca2af7ea@haskell.org> #11941: stage restriction mentioned when an identifier is out of scope -------------------------------------+------------------------------------- Reporter: aavogt | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc2 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- {{{#!hs {-# LANGUAGE TemplateHaskell #-} import Data.Monoid const (return []) $ mempty { getFrst = Just () } }}} {{{ typeErrBug.hs:5:21: error: ? GHC stage restriction: ?getFrst? is used in a top-level splice, quasi-quote, or annotation, and must be imported, not defined locally ? In the second argument of ?($)?, namely ?mempty {getFrst = Just ()}? In the expression: const (return []) $ mempty {getFrst = Just ()} typeErrBug.hs:5:30: error: Not in scope: ?getFrst? Perhaps you meant one of these: ?getFirst? (imported from Data.Monoid), ?getLast? (imported from Data.Monoid) }}} The stage restriction error shouldn't be mentioned: `getFrst` isn't defined at all while the "not defined locally" phrase says it's defined (in the wrong spot). -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 12:13:58 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 12:13:58 -0000 Subject: [GHC] #11942: GMAIL Password Recovery Help Easy 18552337309 For i Forgot My Gmail Password How do i Reset it Message-ID: <051.e7cfafab58e40a35fc6e7edaf0a977d0@haskell.org> #11942: GMAIL Password Recovery Help Easy 18552337309 For i Forgot My Gmail Password How do i Reset it -------------------------------------+------------------------------------- Reporter: roxiertaylor | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- I forgot my Gmail password I forgot my Gmail password how do I get it I forgot my Gmail password and username I forgot my Gmail password how do I find it I forgot my Gmail password and my phone is locked I forgot my Gmail password and my recovery email I forgot my Gmail password and my phone number is changed I forgot my Gmail password how do I change it I forgot my Gmail password how can I get it back I forgot my Gmail password and security question I forgot my Gmail password and email i forgot my Gmail password how to recover i forgot my Gmail password for my android i forgot my Gmail password for my phone i forgot my Gmail password and security question answers i forgot my Gmail password and username i forgot my Gmail password and secret question i forgot my Gmail password and recovery email i forgot my Gmail password for my android phone i forgot my Gmail password and security question i forgot my Gmail password what can i do i forgot my Gmail password and security answer i forgot my Gmail password for my android i lost my Gmail password how to recover i forgot my Gmail password and recovery email address how to reset my Gmail password if i forgot it reset my Gmail password using security question Gmail account hacked who to contact Gmail account hacked password changed Gmail account hacked Contact Deleted Gmail account hacked Phone Number Changed Gmail account hacked Online Gmail account hacked not receiving emails Gmail password recovery page Gmail password recovery phone number Gmail password recovery online Gmail password recovery software Gmail password recovery helpline Gmail password recovery not working Gmail password recovery phone number usa Gmail password recovery by phone Gmail password reset number Gmail password reset not working Gmail password reset phone number usa Gmail password reset process Gmail password reset by phone number Having troubles in Gmail password recovery Having troubles in Gmail password reset I could not recover my Gmail password Gmail password recovery on mac Gmail password recovery on android Gmail password recovery on iphone Gmail password recovery on ios Gmail password recovery on windows How do I log into my Gmail if I've forgotten my password and recovery email? How can you recover an email account without any information? What is toll free number of gmail password recovery? How do I hack a gmail account without the email? How do I find the recovery Gmail account without the user knowing? Gmail: In approximately what year did Gmail introduce the feature of adding security questions for password protection? How do I recover a Gmail account when I have the username and password, but don't have the recovery phone number or email or any other informa... How do I change my recovery email to recovery phone number to recover my password on my Google account? How do I recover my Gmail account when it does not open after password reset? How do I recover my gmail password when I lost my registered recovery number? How do I recover my Gmail account? What if I forgot my Gmail password and recovery email ID? How am I still logged in? I forgot my Gmail password I forgot my Gmail password how do I get it I forgot my Gmail password and username I forgot my Gmail password how do I find it I forgot my Gmail password and my phone is locked I forgot my Gmail password and my recovery email I forgot my Gmail password and my phone number is changed I forgot my Gmail password how do I change it I forgot my Gmail password how can I get it back I forgot my Gmail password and security question I forgot my Gmail password and email i forgot my Gmail password how to recover i forgot my Gmail password for my android i forgot my Gmail password for my phone i forgot my Gmail password and security question answers i forgot my Gmail password and username i forgot my Gmail password and secret question i forgot my Gmail password and recovery email i forgot my Gmail password for my android phone i forgot my Gmail password and security question i forgot my Gmail password what can i do i forgot my Gmail password and security answer i forgot my Gmail password for my android i lost my Gmail password how to recover i forgot my Gmail password and recovery email address how to reset my Gmail password if i forgot it reset my Gmail password using security question Gmail account hacked who to contact Gmail account hacked password changed Gmail account hacked Contact Deleted Gmail account hacked Phone Number Changed Gmail account hacked Online Gmail account hacked not receiving emails Gmail password recovery page Gmail password recovery phone number Gmail password recovery online Gmail password recovery software Gmail password recovery helpline Gmail password recovery not working Gmail password recovery phone number usa Gmail password recovery by phone Gmail password reset number Gmail password reset not working Gmail password reset phone number usa Gmail password reset process Gmail password reset by phone number Having troubles in Gmail password recovery Having troubles in Gmail password reset I could not recover my Gmail password Gmail password recovery on mac Gmail password recovery on android Gmail password recovery on iphone Gmail password recovery on ios Gmail password recovery on windows -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 12:50:59 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 12:50:59 -0000 Subject: =?utf-8?b?W0dIQ10gIzExOTQzOiBAQCQkIGw4NTUyMzM3MzA5IEdtYWlsIE1h?= =?utf-8?q?il_Customer_Service_Ph=C3=B3ne_=C3=91umber?= Message-ID: <047.635556d22726da62699e03ed22a41ebd@haskell.org> #11943: @@$$ l8552337309 Gmail Mail Customer Service Ph?ne ?umber -------------------------------------+------------------------------------- Reporter: ginigini | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- @@$$ l8552337309 Gmail Mail Customer Service Ph?ne ?umber @@$$ l8552337309 Gmail Mail Customer Service Ph?ne ?umber @@$$ l8552337309 Gmail Mail Customer Service Ph?ne ?umber Contact Gmail Support where you can get easy solution for you any kind of gmail queries such as Gmail Password Recovery, Gmail Account Blocked, Gmail forgot Password, Gmail Password reset, Gmail Login Support, Gmail Account Hacked, getting spam mails and sending/receiving mail issues. They provide best Gmail Customer service for any gmail issues by tech support or you can also visit website where you can get many articles in easy manner. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 14:13:31 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 14:13:31 -0000 Subject: [GHC] #11944: Simplifier ticks exhausted When trying UnfoldingDone ip_X7RI Message-ID: <053.b6d1a6463332a34fa3294aac6ca0da05@haskell.org> #11944: Simplifier ticks exhausted When trying UnfoldingDone ip_X7RI --------------------------------------+--------------------------------- Reporter: simone.trubian | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Keywords: | Operating System: Linux Architecture: x86_64 (amd64) | Type of failure: None/Unknown Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: --------------------------------------+--------------------------------- When trying compiling the following code I get a ghc panic {{{#!hs import Network.Wai import Network.Wai.Handler.Warp import Network.HTTP.Types ( status200 , status404) import Blaze.ByteString.Builder (copyByteString) import qualified Data.ByteString.UTF8 as BU import Data.Monoid main = do let port = 3000 putStrLn $ "Listening on port " ++ show port run port app app req respond = respond $ case pathInfo req of ["avOK"] -> avOK ["avWrong"] -> avWrong x -> index x avOK = responseBuilder status200 [("Content-Type", "text/html")] $ mconcat $ map copyByteString [ "" , "" , "" , "Title" , "" , "" , "
" , "In stock, usually dispatched in 1 business day" , "
" , "" , ""] avWrong = responseBuilder status404 [("Content-Type", "text/html")] $ mconcat $ map copyByteString ["

wong!

"] index x = responseBuilder status200 [("Content-Type", "text/html")] $ mconcat $ map copyByteString [ "

Hello from " , BU.fromString $ show x , "!

" , "

yay

\n" ] }}} ```: ghc: panic! (the 'impossible' happened) (GHC version 7.10.2 for x86_64-unknown-linux): Simplifier ticks exhausted When trying UnfoldingDone ip_X7RI To increase the limit, use -fsimpl-tick-factor=N (default 100) If you need to do this, let GHC HQ know, and what factor you needed To see detailed counts use -ddump-simpl-stats Total ticks: 53522k``` After a little bit of debugging I realised that it's the `copyBytestring` imported from `import Blaze.ByteString.Builder` function that is causing trouble, by reducing the number of elements in the list the function doesn't crash the compiler, so for instance: {{{#!hs avOK = responseBuilder status200 [("Content-Type", "text/html")] $ mconcat $ map copyByteString [ "" , "Title" , "" , "
" , "In stock, usually dispatched in 1 business day" , "
" , "" , ""] }}} compiles happily. I'm using - bytestring-0.10.6.0 - wai-3.0.4.0 - warp-3.1.8 - http-types-0.8.6 - blaze-builder-0.4.0.1 - utf8-string-1.0.1.1 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 15:59:43 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 15:59:43 -0000 Subject: [GHC] #11828: Linker.c doesn't build on OS X due to signedness mismatch In-Reply-To: <046.1b7a067e9bfa8ecb8f2e615c66ebe297@haskell.org> References: <046.1b7a067e9bfa8ecb8f2e615c66ebe297@haskell.org> Message-ID: <061.6ad37820d3a60b91e119390a0792fa6a@haskell.org> #11828: Linker.c doesn't build on OS X due to signedness mismatch -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: closed Priority: high | Milestone: 8.0.1 Component: Runtime System | Version: 8.0.1-rc3 (Linker) | Resolution: fixed | Keywords: Operating System: MacOS X | Architecture: Type of failure: Building GHC | Unknown/Multiple failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2110 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => closed * resolution: => fixed Comment: Merged as 736410552e6ba723f7967ad2b5a869f03b118df6. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 16:20:27 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 16:20:27 -0000 Subject: [GHC] #11820: Configure script doesn't check libdw version In-Reply-To: <046.683737f3d510683a10e3f723af3ce933@haskell.org> References: <046.683737f3d510683a10e3f723af3ce933@haskell.org> Message-ID: <061.6158cd034b727be5928a49beabd8eab6@haskell.org> #11820: Configure script doesn't check libdw version -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: patch Priority: highest | Milestone: 8.0.1 Component: Build System | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2103 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"e9ad48935fa48aa32dc39a55512168ba5f5bdbd2/ghc" e9ad4893/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="e9ad48935fa48aa32dc39a55512168ba5f5bdbd2" libdw: More precise version check Test Plan: Try configure in an environment with older `libdw` Reviewers: hvr, austin Subscribers: thomie, erikd Differential Revision: https://phabricator.haskell.org/D2103 GHC Trac Issues: #11820 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 16:20:27 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 16:20:27 -0000 Subject: [GHC] #11777: RTS source code issues In-Reply-To: <046.3e69faecf0e4f69a5fcc7ec246409435@haskell.org> References: <046.3e69faecf0e4f69a5fcc7ec246409435@haskell.org> Message-ID: <061.edbd1b5b8de2e3b6ca3eed4146f68a4e@haskell.org> #11777: RTS source code issues -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"d77981ed4347e5feb0497d8161af72f8f5e10b65/ghc" d77981ed/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="d77981ed4347e5feb0497d8161af72f8f5e10b65" rts/RetainerProfile: Remove unused local Reported in #11777. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 16:20:27 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 16:20:27 -0000 Subject: [GHC] #11744: Latest Xcode update violates POSIX compliance of `nm -P` In-Reply-To: <042.af01bf0c9281d3187ce47b8cda7a587e@haskell.org> References: <042.af01bf0c9281d3187ce47b8cda7a587e@haskell.org> Message-ID: <057.0a885f8f2308a5d0bb0f944836a345d4@haskell.org> #11744: Latest Xcode update violates POSIX compliance of `nm -P` ---------------------------------+---------------------------------------- Reporter: hvr | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Build System | Version: Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): phab:D2113 Wiki Page: | ---------------------------------+---------------------------------------- Comment (by Ben Gamari ): In [changeset:"bf17fd0e5b5442a87f507b26e64a30c79732838a/ghc" bf17fd0e/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="bf17fd0e5b5442a87f507b26e64a30c79732838a" deriveConstants: Verify sanity of nm Add a sanity check ensuring that nm emits valid hexadecimal output, as required by POSIX. See #11744 for motivation. Reviewers: austin, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2113 GHC Trac Issues: #11744 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 17:02:52 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 17:02:52 -0000 Subject: [GHC] #11339: Possible type-checker regression in GHC 8.0 In-Reply-To: <042.e02f929caf8d7a3c89e3acf4b77b9340@haskell.org> References: <042.e02f929caf8d7a3c89e3acf4b77b9340@haskell.org> Message-ID: <057.5b7e1eec1f3b1207fb2a67da781d99bd@haskell.org> #11339: Possible type-checker regression in GHC 8.0 -------------------------------------+------------------------------------- Reporter: hvr | Owner: simonpj Type: bug | Status: new Priority: highest | Milestone: 8.0.2 Component: Compiler (Type | Version: 8.0.1-rc1 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by RyanGlScott): This also affects [https://github.com/ekmett/machines machines]. [https://github.com/ekmett/machines/blob/4999036bdefe286e940dc70bf83413724d3927d0/src/Data/Machine/Fanout.hs#L25-L56 This is the code] that is affected (simplified version reproduced below): {{{#!hs {-# LANGUAGE ExistentialQuantification #-} {-# LANGUAGE GADTs #-} {-# LANGUAGE ScopedTypeVariables #-} -- Simplified code from the machines package module Data.Machine.Fanout where class Semigroup a where (<>) :: a -> a -> a sconcat :: NonEmpty a -> a data NonEmpty a = a :| [a] -- | Witnessed type equality data Is a b where Refl :: Is a a -- | This is the base functor for a 'Machine' or 'MachineT'. -- -- Note: A 'Machine' is usually constructed from 'Plan', so it does not need to be CPS'd. data Step k o r = Stop | Yield o r | forall t. Await (t -> r) (k t) r -- | A 'MachineT' reads from a number of inputs and may yield results before stopping -- with monadic side-effects. newtype MachineT m k o = MachineT { runMachineT :: m (Step k o (MachineT m k o)) } -- | A @'ProcessT' m a b@ is a stream transducer that can consume values of type @a@ -- from its input, and produce values of type @b@ and has side-effects in the -- 'Monad' @m at . type ProcessT m a b = MachineT m (Is a) b continue :: ([b] -> r) -> [(a -> b, b)] -> Step (Is a) o r continue _ [] = Stop continue f ws = Await (f . traverse fst ws) Refl (f $ map snd ws) -- | Pack a 'Step' of a 'Machine' into a 'Machine'. encased :: Monad m => Step k o (MachineT m k o) -> MachineT m k o encased = MachineT . return semigroupDlist :: Semigroup a => ([a] -> [a]) -> Maybe a semigroupDlist f = case f [] of [] -> Nothing x:xs -> Just $ sconcat (x:|xs) -- | Share inputs with each of a list of processes in lockstep. Any -- values yielded by the processes are combined into a single yield -- from the composite process. fanout :: (Functor m, Monad m, Semigroup r) => [ProcessT m a r] -> ProcessT m a r fanout = MachineT . go id id where go waiting acc [] = case waiting [] of ws -> return . maybe k (\x -> Yield x $ encased k) $ semigroupDlist acc where k = continue fanout ws go waiting acc (m:ms) = runMachineT m >>= \v -> case v of Stop -> go waiting acc ms Yield x k -> go waiting (acc . (x:)) (k:ms) Await f Refl k -> go (waiting . ((f, k):)) acc ms -- | Share inputs with each of a list of processes in lockstep. If -- none of the processes yields a value, the composite process will -- itself yield 'mempty'. The idea is to provide a handle on steps -- only executed for their side effects. For instance, if you want to -- run a collection of 'ProcessT's that await but don't yield some -- number of times, you can use 'fanOutSteps . map (fmap (const ()))' -- followed by a 'taking' process. fanoutSteps :: (Functor m, Monad m, Monoid r) => [ProcessT m a r] -> ProcessT m a r fanoutSteps = MachineT . go id id where go waiting acc [] = case (waiting [], mconcat (acc [])) of (ws, xs) -> return . Yield xs $ encased (continue fanoutSteps ws) go waiting acc (m:ms) = runMachineT m >>= \v -> case v of Stop -> go waiting acc ms Yield x k -> go waiting (acc . (x:)) (k:ms) Await f Refl k -> go (waiting . ((f, k):)) acc ms }}} The workaround is to change the definitions of `fanout` and `fanoutSteps` to the following: {{{#!hs -- | Share inputs with each of a list of processes in lockstep. Any -- values yielded by the processes are combined into a single yield -- from the composite process. fanout :: forall m a r. (Functor m, Monad m, Semigroup r) => [ProcessT m a r] -> ProcessT m a r fanout = MachineT . go id id where go :: ([(a -> ProcessT m a r, ProcessT m a r)] -> [(a -> ProcessT m a r, ProcessT m a r)]) -> ([r] -> [r]) -> [ProcessT m a r] -> m (Step (Is a) r (ProcessT m a r)) go waiting acc [] = case waiting [] of ws -> return . maybe k (\x -> Yield x $ encased k) $ semigroupDlist acc where k = continue fanout ws go waiting acc (m:ms) = runMachineT m >>= \v -> case v of Stop -> go waiting acc ms Yield x k -> go waiting (acc . (x:)) (k:ms) Await f Refl k -> go (waiting . ((f, k):)) acc ms -- | Share inputs with each of a list of processes in lockstep. If -- none of the processes yields a value, the composite process will -- itself yield 'mempty'. The idea is to provide a handle on steps -- only executed for their side effects. For instance, if you want to -- run a collection of 'ProcessT's that await but don't yield some -- number of times, you can use 'fanOutSteps . map (fmap (const ()))' -- followed by a 'taking' process. fanoutSteps :: forall m a r. (Functor m, Monad m, Monoid r) => [ProcessT m a r] -> ProcessT m a r fanoutSteps = MachineT . go id id where go :: ([(a -> ProcessT m a r, ProcessT m a r)] -> [(a -> ProcessT m a r, ProcessT m a r)]) -> ([r] -> [r]) -> [ProcessT m a r] -> m (Step (Is a) r (ProcessT m a r)) go waiting acc [] = case (waiting [], mconcat (acc [])) of (ws, xs) -> return . Yield xs $ encased (continue fanoutSteps ws) go waiting acc (m:ms) = runMachineT m >>= \v -> case v of Stop -> go waiting acc ms Yield x k -> go waiting (acc . (x:)) (k:ms) Await f Refl k -> go (waiting . ((f, k):)) acc ms }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 17:48:43 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 17:48:43 -0000 Subject: [GHC] #11797: Template Haskell does not quantify over extra vars in class methods In-Reply-To: <047.1a849e0397a2c031b9b89359db29506a@haskell.org> References: <047.1a849e0397a2c031b9b89359db29506a@haskell.org> Message-ID: <062.853d0caf0ebae112f54ff37c3d0f19c9@haskell.org> #11797: Template Haskell does not quantify over extra vars in class methods -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Template Haskell | Version: 8.1 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: th/T11797 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: Merged as 3f7832bc36f6cca42a33ec274fc5e7808af74a38. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 17:49:00 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 17:49:00 -0000 Subject: [GHC] #11811: GHC sometimes misses a CUSK In-Reply-To: <047.aa048334e27dc5846bc96224ce8abef4@haskell.org> References: <047.aa048334e27dc5846bc96224ce8abef4@haskell.org> Message-ID: <062.b1531f4f50e497adb45864686269e1d6@haskell.org> #11811: GHC sometimes misses a CUSK -------------------------------------+------------------------------------- Reporter: goldfire | Owner: goldfire Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.1 Resolution: fixed | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: | typecheck/should_compile/T11811 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: Merged as b1d92b5d6444ac7920c568086c5dc66e571c3438. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 17:49:40 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 17:49:40 -0000 Subject: [GHC] #11813: Template Haskell's Exact names don't shadow correctly In-Reply-To: <047.ec4624f6991f35a477e6b09cde05435e@haskell.org> References: <047.ec4624f6991f35a477e6b09cde05435e@haskell.org> Message-ID: <062.776df27fefbdc41a7e4883de1686d3b2@haskell.org> #11813: Template Haskell's Exact names don't shadow correctly -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Template Haskell | Version: 8.1 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: Merged as ead6998f9944112879b2ab322a25495bbc557a42. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 17:50:57 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 17:50:57 -0000 Subject: [GHC] #11814: Insufficient in-scope-sets In-Reply-To: <047.796364da21ee40afb75e08d9ee70f961@haskell.org> References: <047.796364da21ee40afb75e08d9ee70f961@haskell.org> Message-ID: <062.3ae26205bb2177827c1a9892c7053f44@haskell.org> #11814: Insufficient in-scope-sets -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.1 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed Comment: Merged as 6d1d979281c3b2b7e32f6bc50935f5925f89df8b (comment:1) and b3321ca73f9d8ae4a44e228ff77ecbe14e291440 (comment:2). -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 18:44:00 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 18:44:00 -0000 Subject: [GHC] #11945: Call I8OO 2I3 2I7I M.i.c.r.o.s.o.f.t. ..o.u.t.lo.o..k. .t.e.c.h.n.i.c.a.l. .supp.o.r.t. .p.h.o.n..e. .n.u.m.b.e.r. Message-ID: <045.08c576d517c05f35563ff770079ab155@haskell.org> #11945: Call I8OO 2I3 2I7I M.i.c.r.o.s.o.f.t. ..o.u.t.lo.o..k. .t.e.c.h.n.i.c.a.l. .supp.o.r.t. .p.h.o.n..e. .n.u.m.b.e.r. -------------------------------------+------------------------------------- Reporter: fatima | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- M.S. .o.f.f..i.c.e. p..h.on..e. .n.u.m.b.e.r. .t.ec..h.n.i.c.a.l. .s.u.p.p.o.r.t. .M.S. .o.f.f.i.c.e. .p.h.o.n.e. .n.u.m.b.e.r. .u.k. .M.S. .o.f.f.i.c.e. .p.h.o.n.e. .n.u.m.b.e.r.s. .f.o.r. .c.u.s.t.o.m.e.r. .s.e.r.v.i.c.e. .M.S. .o.f.f.i.c.e. .p.h.o.n.e. .s.u.p.p.o.r.t. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .p.h.o.n.e. .t.e.c.h. .s.u.p.p.o.r.t. .M.S. .o.f.f.i.c.e. .p.o.w.e.r.p.o.i.n.t. .t.e.c.h.n.i.c.a.l. .s.u.p.p.o.r.t. .M.S. .o.f.f.i.c.e. . .s.u.p.p.o.r.t. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. . .s.u.p.p.o.r.t. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. . .s.u.p.p.o.r.t. .s.e.r.v.i.c.e.s. .M.S. .o.f.f.i.c.e. .p.r.o.j.e.c.t. .t.e.c.h.n.i.c.a.l. .s.u.p.p.o.r.t. .M.S. .o.f.f.i.c.e. .p.u.b.l.i.s.h.e.r. .2.0.0.3. .s.u.p.p.o.r.t. .M.S. .o.f.f.i.c.e. .p.u.b.l.i.s.h.e.r. .t.e.c.h.n.i.c.a.l. .s.u.p.p.o.r.t. .M.S. .o.f.f.i.c.e. .r.e.m.o.t.e. .d.e.s.k.t.o.p. .t.e.c.h.n.i.c.a.l. .s.u.p.p.o.r.t. .M.S. .o.f.f.i.c.e. .s.a.l.e.s. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.c.a.m. .p.h.o.n.e. .c.a.l.l. .M.S. .o.f.f.i.c.e. .s.c.a.m. .p.h.o.n.e. .c.a.l.l.s. .M.S. .o.f.f.i.c.e. .s.c.a.m. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.c.a.m.s. .p.h.o.n.e. .c.a.l.l.s. .M.S. .o.f.f.i.c.e. .s.e.r.v.e.r. .s.u.p.p.o.r.t. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.e.r.v.i.c.e. .c.e.n.t.e.r. .p.h.o.n.e. .c.a.l.l. .M.S. .o.f.f.i.c.e. .s.e.r.v.i.c.e. .c.e.n.t.e.r. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.e.r.v.i.c.e. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.t.o.r.e. .c.o.n.t.a.c.t. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.t.o.r.e. .c.u.s.t.o.m.e.r. .s.e.r.v.i.c.e. .M.S. .o.f.f.i.c.e. .s.t.o.r.e. .c.u.s.t.o.m.e.r. .s.e.r.v.i.c.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.t.o.r.e. .c.u.s.t.o.m.e.r. .s.e.r.v.i.c.e. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.t.o.r.e. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.t.o.r.e. .s.u.p.p.o.r.t. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .c.a.l.l. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .c.e.n.t.e.r. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .c.o.n.t.a.c.t. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .h.e.l.p.l.i.n.e. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .n.u.m.b.e.r. .u.k. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .p.h.o.n.e. .n.u.m.b.e.r. .w.i.n.d.o.w.s. .7. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .p.h.o.n.e. .n.u.m.b.e.r. .w.i.n.d.o.w.s. .8. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .p.h.o.n.e. .n.u.m.b.e.r.s. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .t.e.a.m. .c.o.n.t.a.c.t. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .t.e.a.m. .e.m.a.i.l. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .t.e.a.m. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .t.e.a.m. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .t.e.a.m. .t.e.l.e.p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .t.e.l.e.p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .t.o.l.l. .f.r.e.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .o.f.f.i.c.e. .s.u.p.p.o.r.t. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .o.f.f.i.c.e. .t.e.c.h. .s.u.p.p.o.r.t. .M.S. .o.f.f.i.c.e. .o.f.f.i.c.e. .t.e.c.h. .s.u.p.p.o.r.t. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .t.e.c.h. .h.e.l.p. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .t.e.c.h. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .t.e.c.h. .s.u.p.p.o.r.t. .c.a.n.a.d.a. .M.S. .o.f.f.i.c.e. .t.e.c.h. .s.u.p.p.o.r.t. .c.o.n.t.a.c.t. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .t.e.c.h. .s.u.p.p.o.r.t. .h.o.u.r.s. .M.S. .o.f.f.i.c.e. .t.e.c.h. .s.u.p.p.o.r.t. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .t.e.c.h. .s.u.p.p.o.r.t. .n.u.m.b.e.r. .u.s.a. .M.S. .o.f.f.i.c.e. .t.e.c.h. .s.u.p.p.o.r.t. .p.h.o.n.e. .M.S. .o.f.f.i.c.e. .t.e.c.h. .s.u.p.p.o.r.t. .p.h.o.n.e. .n.u.m.b.e.r. .M.S. .o.f.f.i.c.e. .t.e.c.h. .s.u.p.p.o.r.t. .p.h.o.n.e. .n.u.m.b.e.r. .f.o.r. .w.i.n.d.o.w.s. .7. .M.S. .o.f.f.i.c.e. .t.e.c.h. .s.u.p.p.o.r.t. .p.h.o.n.e. .n.u.m.b.e.r. .f.o.r. .w.i.n.d.o.w.s. .8. .M.S. .o.f.f.i.c.e. .t.e.c.h. .s.u.p.p.o.r.t. .p.h.o.n.e. .n.u.m.b.e.r. .u.s.a. .M.S. .o.f.f.i.c.e. .t.e.c.h. .s.u.p.p.o.r.t. .p.h.o.n.e. .n.u.m.b.e.r.s. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 18:53:22 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 18:53:22 -0000 Subject: [GHC] #11946: Provide a `make uninstall` target Message-ID: <047.5aaa45c0af37779f8ed9cbbdddf9b3be@haskell.org> #11946: Provide a `make uninstall` target -------------------------------------+------------------------------------- Reporter: dobenour | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Currently there is no clean way to uninstall GHC built from source. The makefiles should provide an uninstall target that allows this. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 20:01:07 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 20:01:07 -0000 Subject: [GHC] #7934: usleep hangs, no threads In-Reply-To: <046.d121f779cb2c7e3c2c6772b604e9540c@haskell.org> References: <046.d121f779cb2c7e3c2c6772b604e9540c@haskell.org> Message-ID: <061.df901fd09911908d637d2039e4e16256@haskell.org> #7934: usleep hangs, no threads -------------------------------------+------------------------------------- Reporter: gelisam | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Runtime System | Version: 7.4.2 Resolution: fixed | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Incorrect result | (amd64) at runtime | Test Case: Blocked By: | Blocking: Related Tickets: 1156 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by ak3n): * status: new => closed * resolution: => fixed -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 20:03:56 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 20:03:56 -0000 Subject: [GHC] #10914: Bad symbol resolution on Darwin when using DYLD_FORCE_FLAT_NAMESPACE=1 In-Reply-To: <047.9268eb7f03934b85eb39681f4890afc7@haskell.org> References: <047.9268eb7f03934b85eb39681f4890afc7@haskell.org> Message-ID: <062.833e3f1f6ff0e40d9aa88244d44c10d4@haskell.org> #10914: Bad symbol resolution on Darwin when using DYLD_FORCE_FLAT_NAMESPACE=1 -------------------------------------+------------------------------------- Reporter: jacereda | Owner: Type: bug | Status: closed Priority: high | Milestone: Component: Runtime System | Version: 7.10.2 (Linker) | Resolution: fixed | Keywords: Operating System: MacOS X | Architecture: x86_64 | (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by ak3n): * status: new => closed * resolution: => fixed -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 21:08:13 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 21:08:13 -0000 Subject: [GHC] #11834: GHC master, not compiling on Archlinux In-Reply-To: <045.4e01e4471eaa123aed65b47cf92d5739@haskell.org> References: <045.4e01e4471eaa123aed65b47cf92d5739@haskell.org> Message-ID: <060.978e39fe00c4b544b5e7997761ee3fd0@haskell.org> #11834: GHC master, not compiling on Archlinux -------------------------------------+------------------------------------- Reporter: nitrix | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: (Linking) | Resolution: | Keywords: Operating System: Linux | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nitrix): Sorry for the delay: $ gcc -dM -E - < /dev/null | grep -E -i 'pic|pie' #define __pie__ 2 #define __PIE__ 2 #define __pic__ 2 #define __PIC__ 2 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 21:13:13 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 21:13:13 -0000 Subject: [GHC] #10914: Bad symbol resolution on Darwin when using DYLD_FORCE_FLAT_NAMESPACE=1 In-Reply-To: <047.9268eb7f03934b85eb39681f4890afc7@haskell.org> References: <047.9268eb7f03934b85eb39681f4890afc7@haskell.org> Message-ID: <062.551960cbec102ede2f945059533ce3d2@haskell.org> #10914: Bad symbol resolution on Darwin when using DYLD_FORCE_FLAT_NAMESPACE=1 -------------------------------------+------------------------------------- Reporter: jacereda | Owner: Type: bug | Status: closed Priority: high | Milestone: Component: Runtime System | Version: 7.10.2 (Linker) | Resolution: fixed | Keywords: Operating System: MacOS X | Architecture: x86_64 | (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by jacereda): I found out the reason why this no longer fails on 10.11: http://apple.stackexchange.com/questions/193368/what-is-the-rootless- feature-in-el-capitan-really Looks like dyld environment variables are simply ignored now. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 16 21:33:16 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 16 Apr 2016 21:33:16 -0000 Subject: [GHC] #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications Message-ID: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1 (Type checker) | Keywords: | Operating System: Unknown/Multiple TypeApplications | Architecture: | Type of failure: Incorrect Unknown/Multiple | warning at compile-time Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- This code: {{{#!hs {-# LANGUAGE RankNTypes #-} {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE TypeApplications #-} module Main (main) where theFloatDigits :: forall a. RealFloat a => Int theFloatDigits = floatDigits (undefined @_ @a) main :: IO () main = print (theFloatDigits @Double, theFloatDigits @Float) }}} erroneously produces this warning: {{{ $ /opt/ghc/8.0.1/bin/runghc -Wall TheFloatDigits.hs TheFloatDigits.hs:6:19: warning: [-Wtype-defaults] ? Defaulting the following constraint to type ?Double? RealFloat a0 ? In the ambiguity check for ?theFloatDigits? To defer the ambiguity check to use sites, enable AllowAmbiguousTypes In the type signature: theFloatDigits :: forall a. RealFloat a => Int (53,24) }}} GHC's claim that `a0` was defaulted to `Double` is clearly bogus, since `theFloatDigits` outputs different answers for `Double` and `Float`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 03:01:57 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 03:01:57 -0000 Subject: [GHC] #11948: GHC forgets constraints Message-ID: <047.96ae835fe7aab8f5bcec7c36bfd7fc23@haskell.org> #11948: GHC forgets constraints -------------------------------------+------------------------------------- Reporter: crockeea | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: GHC rejects Unknown/Multiple | valid program Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Possibly related: #10338 The following program should compile, but fails with the error: {{{ Could not deduce (Bar (F zq) zq) arising from a use of ?bar? from the context (Bar (Foo (F zq)) (Foo zq)) bound by the type signature for bug :: Bar (Foo (F zq)) (Foo zq) => Foo (F zq) -> Foo zq }}} This is definitely incorrect: I am providing a `Bar` constraint in the context of `bug`, but GHC is asking for constraints so that it can resolve to the instance declared in Bar.hs. A few workarounds I've found so far, which may or may not help find the bug: 1. Adding `-XTypeFamilies` to Main.hs makes the program compile. 2. ''Removing'' the type signature from `x` in `bug` makes the program compile. 3. Defining `bug` without a `let` as `bug sk = bar sk :: Foo zq` or `bug sk = bar sk` makes the program compile. Main.hs: {{{ {-# LANGUAGE FlexibleContexts, ScopedTypeVariables #-} import Bar bug :: forall zq . (Bar (Foo (F zq)) (Foo zq)) => Foo (F zq) -> Foo zq bug sk = let x = bar sk :: Foo zq in x }}} Bar.hs {{{ {-# LANGUAGE MultiParamTypeClasses, TypeFamilies #-} module Bar where type family F b newtype Foo r = Foo r type instance F (Foo r) = Foo (F r) class Bar a b where bar :: a -> b instance (Bar a b) => Bar (Foo a) (Foo b) }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 08:19:33 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 08:19:33 -0000 Subject: [GHC] #11946: Provide a `make uninstall` target In-Reply-To: <047.5aaa45c0af37779f8ed9cbbdddf9b3be@haskell.org> References: <047.5aaa45c0af37779f8ed9cbbdddf9b3be@haskell.org> Message-ID: <062.1da3093923986cb1e9853982eee20435@haskell.org> #11946: Provide a `make uninstall` target -------------------------------------+------------------------------------- Reporter: dobenour | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Build System | Version: 8.0.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by hvr): * component: Compiler => Build System -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 08:22:38 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 08:22:38 -0000 Subject: [GHC] #11948: GHC forgets constraints In-Reply-To: <047.96ae835fe7aab8f5bcec7c36bfd7fc23@haskell.org> References: <047.96ae835fe7aab8f5bcec7c36bfd7fc23@haskell.org> Message-ID: <062.a118b5098db19740bf8d2bb3af4a81dc@haskell.org> #11948: GHC forgets constraints -------------------------------------+------------------------------------- Reporter: crockeea | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: => 8.0.2 @@ -24,1 +24,1 @@ - Main.hs: + **Main.hs:** @@ -26,1 +26,1 @@ - {{{ + {{{#!hs @@ -28,0 +28,2 @@ + + module Main where @@ -39,1 +41,1 @@ - Bar.hs + **Bar.hs** @@ -41,1 +43,1 @@ - {{{ + {{{#!hs New description: Possibly related: #10338 The following program should compile, but fails with the error: {{{ Could not deduce (Bar (F zq) zq) arising from a use of ?bar? from the context (Bar (Foo (F zq)) (Foo zq)) bound by the type signature for bug :: Bar (Foo (F zq)) (Foo zq) => Foo (F zq) -> Foo zq }}} This is definitely incorrect: I am providing a `Bar` constraint in the context of `bug`, but GHC is asking for constraints so that it can resolve to the instance declared in Bar.hs. A few workarounds I've found so far, which may or may not help find the bug: 1. Adding `-XTypeFamilies` to Main.hs makes the program compile. 2. ''Removing'' the type signature from `x` in `bug` makes the program compile. 3. Defining `bug` without a `let` as `bug sk = bar sk :: Foo zq` or `bug sk = bar sk` makes the program compile. **Main.hs:** {{{#!hs {-# LANGUAGE FlexibleContexts, ScopedTypeVariables #-} module Main where import Bar bug :: forall zq . (Bar (Foo (F zq)) (Foo zq)) => Foo (F zq) -> Foo zq bug sk = let x = bar sk :: Foo zq in x }}} **Bar.hs** {{{#!hs {-# LANGUAGE MultiParamTypeClasses, TypeFamilies #-} module Bar where type family F b newtype Foo r = Foo r type instance F (Foo r) = Foo (F r) class Bar a b where bar :: a -> b instance (Bar a b) => Bar (Foo a) (Foo b) }}} -- Comment: This is reproducible with 8.0.1-rc3. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 09:02:40 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 09:02:40 -0000 Subject: [GHC] #11820: Configure script doesn't check libdw version In-Reply-To: <046.683737f3d510683a10e3f723af3ce933@haskell.org> References: <046.683737f3d510683a10e3f723af3ce933@haskell.org> Message-ID: <061.6f7376ae13b8126bfa6c15ba671b5156@haskell.org> #11820: Configure script doesn't check libdw version -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: closed Priority: highest | Milestone: 8.0.1 Component: Build System | Version: 7.10.3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2103 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => closed * resolution: => fixed Comment: Merged as 6554dc60304bbd4b2edb93be7e1658bff237e067. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 11:04:23 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 11:04:23 -0000 Subject: [GHC] #11072: Runtime linker doesn't search for DLLs referenced in import libraries on Windows In-Reply-To: <050.675e99e0c3128be1426b83f1c6310ea3@haskell.org> References: <050.675e99e0c3128be1426b83f1c6310ea3@haskell.org> Message-ID: <065.b4266cf73c2479253554ccbbdb5e72d8@haskell.org> #11072: Runtime linker doesn't search for DLLs referenced in import libraries on Windows -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Phyx- Type: feature request | Status: patch Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 7.10.2-rc2 (Linking) | Resolution: | Keywords: Operating System: Windows | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: T11072gcc | T11072msvc Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1564 Wiki Page: | Phab:D1696 -------------------------------------+------------------------------------- Comment (by Tamar Christina ): In [changeset:"97f2b16483aae28dc8fd60b6d2e1e283618f2390/ghc" 97f2b16/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="97f2b16483aae28dc8fd60b6d2e1e283618f2390" Add Windows import library support to the Runtime Linker Summary: Import libraries are files ending in `.dll.a` and `.lib` depending on which compiler creates them (GCC, vs MSVC). Import Libraries are standard `archive` files that contain object files. These object files can have two different formats: 1) The normal COFF Object format for object files (contains all ascii data and very little program code, so do not try to execute.) 2) "short import" format which just contains a symbol name and the dll in which the symbol can be found. Import Libraries are useful for two things: 1) Allowing applications that don't support dynamic linking to link against the import lib (non-short format) which then makes calls into the DLL by loading it at runtime. 2) Allow linking of mutually recursive dlls. if `A.DLL` requires `B.DLL` and vice versa, import libs can be used to break the cycle as they can be created from the expected exports of the DLLs. A side effect of having these two capabilities is that Import libs are often used to hide specific versions of DLLs behind a non-versioned import lib. e.g. GCC_S.a (non-conventional import lib) will point to the correct `libGCC` DLL. With this support Windows Haskell files can now just link to `-lGCC_S` and not have to worry about what the actual name of libGCC is. Also third party libraries such as `icuuc` use import libs to forward to versioned DLLs. e.g. `icuuc.lib` points to `icuuc51.dll` etc. Test Plan: ./validate Two new tests added T11072gcc T11072msvc Two binary files have been added to the test folder because the "short" import library format doesn't seem to be creatable via `dlltool` and requires Microsoft's `lib.exe`. Reviewers: bgamari, RyanGlScott, erikd, goldfire, austin, hvr Reviewed By: RyanGlScott, erikd Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D1696 GHC Trac Issues: #11072 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 11:07:39 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 11:07:39 -0000 Subject: [GHC] #11072: Runtime linker doesn't search for DLLs referenced in import libraries on Windows In-Reply-To: <050.675e99e0c3128be1426b83f1c6310ea3@haskell.org> References: <050.675e99e0c3128be1426b83f1c6310ea3@haskell.org> Message-ID: <065.477e57561dab9ef3f09cabce13f51395@haskell.org> #11072: Runtime linker doesn't search for DLLs referenced in import libraries on Windows -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Phyx- Type: feature request | Status: closed Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 7.10.2-rc2 (Linking) | Resolution: fixed | Keywords: Operating System: Windows | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: T11072gcc | T11072msvc Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1564 Wiki Page: | Phab:D1696 -------------------------------------+------------------------------------- Changes (by Phyx-): * status: patch => closed * resolution: => fixed -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 14:10:33 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 14:10:33 -0000 Subject: [GHC] #11776: RTS segfaults when printing profiling information which refers to unloaded objects In-Reply-To: <046.fc47333743fc6f4f1fd8d834c9aff42c@haskell.org> References: <046.fc47333743fc6f4f1fd8d834c9aff42c@haskell.org> Message-ID: <061.4044c476c71995e34b289c6512bcd77a@haskell.org> #11776: RTS segfaults when printing profiling information which refers to unloaded objects -------------------------------------+------------------------------------- Reporter: afarmer | Owner: afarmer Type: bug | Status: patch Priority: normal | Milestone: 8.0.2 Component: Runtime System | Version: 7.10.3 (Linker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2067 Wiki Page: | Phab:D2068 Phab:D2069 Phab:D2071 -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"36a0b6dc27ae0ee2022afbef5d3cd49dfde9e82b/ghc" 36a0b6d/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="36a0b6dc27ae0ee2022afbef5d3cd49dfde9e82b" Check CCS tree for pointers into shared object during checkUnload Prevent shared objects from being unloaded if cost centre stacks point at the object. This will prevent segfault in #11776, but also prevents objects from ever being unloaded when profiling. Pruning CCS tree will enable that in another diff. Test Plan: make TEST=linker_profiled, examine linker_profiled.run.stderr Reviewers: austin, simonmar, bgamari Reviewed By: simonmar, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2069 GHC Trac Issues: #11776 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 14:15:12 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 14:15:12 -0000 Subject: [GHC] #11776: RTS segfaults when printing profiling information which refers to unloaded objects In-Reply-To: <046.fc47333743fc6f4f1fd8d834c9aff42c@haskell.org> References: <046.fc47333743fc6f4f1fd8d834c9aff42c@haskell.org> Message-ID: <061.c76db39aabddf477cb715ec51185d23b@haskell.org> #11776: RTS segfaults when printing profiling information which refers to unloaded objects -------------------------------------+------------------------------------- Reporter: afarmer | Owner: afarmer Type: bug | Status: closed Priority: normal | Milestone: 8.0.2 Component: Runtime System | Version: 7.10.3 (Linker) | Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2067 Wiki Page: | Phab:D2068 Phab:D2069 Phab:D2071 -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => closed * resolution: => fixed Comment: Merged to `ghc-8.0` as 36a0b6dc27ae0ee2022afbef5d3cd49dfde9e82b. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 14:16:13 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 14:16:13 -0000 Subject: [GHC] #11776: RTS segfaults when printing profiling information which refers to unloaded objects In-Reply-To: <046.fc47333743fc6f4f1fd8d834c9aff42c@haskell.org> References: <046.fc47333743fc6f4f1fd8d834c9aff42c@haskell.org> Message-ID: <061.19f57294a5cf9c198641da391bcebeb8@haskell.org> #11776: RTS segfaults when printing profiling information which refers to unloaded objects -------------------------------------+------------------------------------- Reporter: afarmer | Owner: afarmer Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Runtime System | Version: 7.10.3 (Linker) | Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2067 Wiki Page: | Phab:D2068 Phab:D2069 Phab:D2071 -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: 8.0.2 => 8.0.1 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 15:20:40 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 15:20:40 -0000 Subject: [GHC] #11759: can't decompose ghc.exe path In-Reply-To: <045.78646c85aa5779cba5b2cf0a5492deb5@haskell.org> References: <045.78646c85aa5779cba5b2cf0a5492deb5@haskell.org> Message-ID: <060.377a847a1cd82bb5e56eb4af275b575a@haskell.org> #11759: can't decompose ghc.exe path -------------------------------------+------------------------------------- Reporter: erisco | Owner: Phyx- Type: feature request | Status: patch Priority: normal | Milestone: 8.2.1 Component: Driver | Version: 7.8.3 Resolution: | Keywords: Operating System: Windows | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2101 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Tamar Christina ): In [changeset:"a3922083e8f41fc236972564dc2978f2a2d4ec13/ghc" a392208/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="a3922083e8f41fc236972564dc2978f2a2d4ec13" Resolve symlinks when attempting to find GHC's lib folder on Windows Summary: Systools makes some pretty hard assumptions about where GHC is on Windows. One of these is that ghc be in a folder named `bin` and that `../lib` exists. This pattern doesn't hold for symlinks as a link `C:\ghc-bin\` pointing to `C:\ghc\ghc-7.10.3\bin` will break this assumption. This patch resolves symlinks by finding where they point to and uses that location as the base for GHC. This uses an API that's been introduced in Vista. For older systems it falls back to the current behavior of not resolving symlinks. Test Plan: 1) Create symlink to GHC's bin folder. 2) Run GHC from that folder. Reviewers: austin, bgamari Reviewed By: austin Subscribers: #ghc_windows_task_force, thomie Differential Revision: https://phabricator.haskell.org/D2101 GHC Trac Issues: #11759 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 15:24:01 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 15:24:01 -0000 Subject: [GHC] #11759: can't decompose ghc.exe path In-Reply-To: <045.78646c85aa5779cba5b2cf0a5492deb5@haskell.org> References: <045.78646c85aa5779cba5b2cf0a5492deb5@haskell.org> Message-ID: <060.e6401c022fe566556741f3b0a5ba7c35@haskell.org> #11759: can't decompose ghc.exe path -------------------------------------+------------------------------------- Reporter: erisco | Owner: Phyx- Type: feature request | Status: closed Priority: normal | Milestone: 8.2.1 Component: Driver | Version: 7.8.3 Resolution: fixed | Keywords: Operating System: Windows | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2101 Wiki Page: | -------------------------------------+------------------------------------- Changes (by Phyx-): * status: patch => closed * resolution: => fixed -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 15:34:30 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 15:34:30 -0000 Subject: [GHC] #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol In-Reply-To: <044.47110be31f0548a4f623e31c109dd321@haskell.org> References: <044.47110be31f0548a4f623e31c109dd321@haskell.org> Message-ID: <059.95cfc22099cb70af117761daced8a612@haskell.org> #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol -------------------------------------+------------------------------------- Reporter: jeiea | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 (Linking) | Resolution: | Keywords: Operating System: Windows | Architecture: x86_64 Type of failure: Compile-time | (amd64) crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Phyx-): Hi, Can you attach the verbose output of `stack build` e.g. `stack build --verbose=true`. I need to know what it's passing to `GHC`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 15:53:16 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 15:53:16 -0000 Subject: [GHC] #7459: deriving Generic does not work with TypeLits In-Reply-To: <050.dea8df7cdfffe3e0bb4782a6ad14924e@haskell.org> References: <050.dea8df7cdfffe3e0bb4782a6ad14924e@haskell.org> Message-ID: <065.add4ab2b29526693220afda1d432d403@haskell.org> #7459: deriving Generic does not work with TypeLits -------------------------------------+------------------------------------- Reporter: maxtaldykin | Owner: dreixel Type: feature request | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.6.1 Resolution: fixed | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * status: new => closed * resolution: => fixed Comment: #10604 provides a couple of motivating examples for why generic programming over data-kinded types would be useful. Furthermore, the original bug in this ticket has long since been fixed, and I think it's clear by now that generics shouldn't be needlessly kind-restricted. Closing. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 16:29:59 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 16:29:59 -0000 Subject: [GHC] #10087: DefaultSignatures: error message mentions internal name In-Reply-To: <051.aa4c4a0637fafc7e89e489be234173b6@haskell.org> References: <051.aa4c4a0637fafc7e89e489be234173b6@haskell.org> Message-ID: <066.b7b57248985f62726438c39e11637275@haskell.org> #10087: DefaultSignatures: error message mentions internal name -------------------------------------+------------------------------------- Reporter: andreas.abel | Owner: Type: feature request | Status: infoneeded Priority: normal | Milestone: Component: Compiler (Type | Version: 7.8.4 checker) | Resolution: | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * status: new => infoneeded Comment: I'm a bit confused about the state of affairs for this ticket. Pedro, I don't really understand what you mean when you say "So perhaps that's what we should do in this case, too." After all, this code: {{{#!hs {-# LANGUAGE DefaultSignatures #-} class C a where reflexive :: a -> Bool default reflexive :: Eq a => a -> Bool reflexive x = x == x data D instance C D where }}} and this code: {{{#!hs class C a where reflexive :: Eq a => a -> Bool reflexive x = x == x data D instance C D }}} appear to be fundamentally different. In the former, `reflexive` defines a function that //requires// an `Eq a` constraint when the user doesn't implement it. In the latter, `reflexive` defines a function that //presupposes// that `a` is an instance of `Eq`. When viewed in this light, shouldn't the former code error and the latter code be OK? Simon, what are `GenDefMeth` and `NoDefMeth`? I can't find anything in the source about them (save for one possibly outdated comment on `NoDefMeth`). Were they replaced by `DefMethSpec` (i.e, [http://git.haskell.org/ghc.git/blob/93d85af9fec968b43452891ec7b10382a4a99a38:/compiler/basicTypes/BasicTypes.hs#l774 this]) at some point? If so, are your comments about a proposed refactoring still relevant? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 20:43:20 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 20:43:20 -0000 Subject: [GHC] #11695: On GHCi prompt the arrow (movement) keys create strange character sequences In-Reply-To: <048.2c7ac4aadebf684928a9b23225097ed9@haskell.org> References: <048.2c7ac4aadebf684928a9b23225097ed9@haskell.org> Message-ID: <063.a2be3af71821e6815c68d40bbe4130c9@haskell.org> #11695: On GHCi prompt the arrow (movement) keys create strange character sequences ---------------------------------+-------------------------------------- Reporter: heisenbug | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 8.1 Resolution: | Keywords: Operating System: Linux | Architecture: x86_64 (amd64) Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | ---------------------------------+-------------------------------------- Comment (by heisenbug): @judahj, is there any way for me to help to track this one down? Maybe with printf-style debugging? It is a bit embarrassing when demoing GHCi and this happens out of nothing... -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 17 22:46:14 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 17 Apr 2016 22:46:14 -0000 Subject: [GHC] #11695: On GHCi prompt the arrow (movement) keys create strange character sequences In-Reply-To: <048.2c7ac4aadebf684928a9b23225097ed9@haskell.org> References: <048.2c7ac4aadebf684928a9b23225097ed9@haskell.org> Message-ID: <063.562d012554e37dd7cc48b9cc5381a9ce@haskell.org> #11695: On GHCi prompt the arrow (movement) keys create strange character sequences ---------------------------------+-------------------------------------- Reporter: heisenbug | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 8.1 Resolution: | Keywords: Operating System: Linux | Architecture: x86_64 (amd64) Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | ---------------------------------+-------------------------------------- Comment (by judahj): Let's try this. Can you please download the file Read.hs from: https://gist.github.com/judah/5c5ad518bb43d235efba4fa8f1e9953a And run (in the same terminal/environment that you have the ghci problem): {{{ ghc Read.hs ./Read }}} Then press some letter keys and some arrow keys, and let me know what the output is? For example, on my terminal: {{{ $ ./Prompt "a" "s" "d" "\ESC[D" "\ESC[B" "\ESC[A" }}} The last three lines are from when I pressed arrow keys. Do you see them split into separate lines (e.g. "\ESC", "[" and "D")? If so, that's the problem we should try to solve. Does the same behavior of Read.hs occur on laptop<-vnc->hostA, or only on laptop<->hostA<->hostB? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 06:32:59 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 06:32:59 -0000 Subject: [GHC] #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol In-Reply-To: <044.47110be31f0548a4f623e31c109dd321@haskell.org> References: <044.47110be31f0548a4f623e31c109dd321@haskell.org> Message-ID: <059.b3053783530f1201ff2cc54468dda8f7@haskell.org> #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol -------------------------------------+------------------------------------- Reporter: jeiea | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 (Linking) | Resolution: | Keywords: Operating System: Windows | Architecture: x86_64 Type of failure: Compile-time | (amd64) crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by jeiea): * Attachment "result.txt" added. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 06:50:05 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 06:50:05 -0000 Subject: [GHC] #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol In-Reply-To: <044.47110be31f0548a4f623e31c109dd321@haskell.org> References: <044.47110be31f0548a4f623e31c109dd321@haskell.org> Message-ID: <059.dde11718b18a14264f1c1324be4bd8fc@haskell.org> #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol -------------------------------------+------------------------------------- Reporter: jeiea | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 (Linking) | Resolution: | Keywords: Operating System: Windows | Architecture: x86_64 Type of failure: Compile-time | (amd64) crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by jeiea): Ah... I notice it's not same error now. Although I don't know why undefined symbol error occurred. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 09:55:24 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 09:55:24 -0000 Subject: [GHC] #11948: GHC forgets constraints In-Reply-To: <047.96ae835fe7aab8f5bcec7c36bfd7fc23@haskell.org> References: <047.96ae835fe7aab8f5bcec7c36bfd7fc23@haskell.org> Message-ID: <062.12bda9cda6824db715f47be6f804356d@haskell.org> #11948: GHC forgets constraints -------------------------------------+------------------------------------- Reporter: crockeea | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): This is a very delicate example. You have, roughly {{{ class C a where op :: Int -> a instance C a => C [a] where ... f :: forall z. C [z] => blah f = ...(op 3 :: [z]).... }}} So arising from the call to `op` we need to solve `C [z]`. There are two ways to solve this: * From the `instance` declaration * From the `C [z] => ...` in the type signature for `f` If we choose the former, type checking will fail. But generally speaking it is ''good'' to reduce class constraints using instance declarations. It's very odd to have a type signature that ''overlaps'' the instance. GHC makes some effort to get this "right", by prioritising solving against "givens", but it's a bit of a hopeless task. After all, it might look like {{{ f = ...(h (op 3)).... }}} where after a great deal of constraint solving, functional dependencies, type function reduction, etc etc, we finally discover that `h`'s argument must have type `[z]`. In this particular case, GHC is trying to infer the most general type for `x`: {{{ let x = bar sk :: Foo zq }}} Arising from `bar` we get the constraint `Bar (Foo (F sk)) (Foo sk)`. When inferring the most general type for `bar` we simplify the constraint as much as possible, using the class `instance` declaration. If you use `MonoLocalBinds` GHC does not attempt to generalise the type of `bar`. So now the (still delicate) prioritisation scheme works, and the program compiles. This why adding `TypeFamilies` helps: `TypeFamilies` implies `MonoLocalBinds`. Anyway the robust solution is to use the `instance` declaration to simplify the constraint for `bar`: {{{ bug :: forall zq . (Bar (F zq) zq) => Foo (F zq) -> Foo zq }}} Maybe GHC should warn about type signatures that have constraints that are reducible with class `instance`s, since they are so fragile. That would be a very worthwhile improvement. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 11:35:36 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 11:35:36 -0000 Subject: [GHC] #11944: Simplifier ticks exhausted When trying UnfoldingDone ip_X7RI In-Reply-To: <053.b6d1a6463332a34fa3294aac6ca0da05@haskell.org> References: <053.b6d1a6463332a34fa3294aac6ca0da05@haskell.org> Message-ID: <068.018cc20511ac58dc3f05ba28d31ebfe9@haskell.org> #11944: Simplifier ticks exhausted When trying UnfoldingDone ip_X7RI -----------------------------------+-------------------------------------- Reporter: simone.trubian | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Linux | Architecture: x86_64 (amd64) Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -----------------------------------+-------------------------------------- Description changed by simonpj: @@ -68,2 +68,3 @@ - - ```: + We get + {{{ + : @@ -77,2 +78,2 @@ - Total ticks: 53522k``` - + Total ticks: 53522k + }}} New description: When trying compiling the following code I get a ghc panic {{{#!hs import Network.Wai import Network.Wai.Handler.Warp import Network.HTTP.Types ( status200 , status404) import Blaze.ByteString.Builder (copyByteString) import qualified Data.ByteString.UTF8 as BU import Data.Monoid main = do let port = 3000 putStrLn $ "Listening on port " ++ show port run port app app req respond = respond $ case pathInfo req of ["avOK"] -> avOK ["avWrong"] -> avWrong x -> index x avOK = responseBuilder status200 [("Content-Type", "text/html")] $ mconcat $ map copyByteString [ "" , "" , "" , "Title" , "" , "" , "
" , "In stock, usually dispatched in 1 business day" , "
" , "" , ""] avWrong = responseBuilder status404 [("Content-Type", "text/html")] $ mconcat $ map copyByteString ["

wong!

"] index x = responseBuilder status200 [("Content-Type", "text/html")] $ mconcat $ map copyByteString [ "

Hello from " , BU.fromString $ show x , "!

" , "

yay

\n" ] }}} We get {{{ : ghc: panic! (the 'impossible' happened) (GHC version 7.10.2 for x86_64-unknown-linux): Simplifier ticks exhausted When trying UnfoldingDone ip_X7RI To increase the limit, use -fsimpl-tick-factor=N (default 100) If you need to do this, let GHC HQ know, and what factor you needed To see detailed counts use -ddump-simpl-stats Total ticks: 53522k }}} After a little bit of debugging I realised that it's the `copyBytestring` imported from `import Blaze.ByteString.Builder` function that is causing trouble, by reducing the number of elements in the list the function doesn't crash the compiler, so for instance: {{{#!hs avOK = responseBuilder status200 [("Content-Type", "text/html")] $ mconcat $ map copyByteString [ "" , "Title" , "" , "
" , "In stock, usually dispatched in 1 business day" , "
" , "" , ""] }}} compiles happily. I'm using - bytestring-0.10.6.0 - wai-3.0.4.0 - warp-3.1.8 - http-types-0.8.6 - blaze-builder-0.4.0.1 - utf8-string-1.0.1.1 -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 11:39:29 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 11:39:29 -0000 Subject: [GHC] #11944: Simplifier ticks exhausted When trying UnfoldingDone ip_X7RI In-Reply-To: <053.b6d1a6463332a34fa3294aac6ca0da05@haskell.org> References: <053.b6d1a6463332a34fa3294aac6ca0da05@haskell.org> Message-ID: <068.ab564365762e0498befc9e640fd0b652@haskell.org> #11944: Simplifier ticks exhausted When trying UnfoldingDone ip_X7RI -----------------------------------+-------------------------------------- Reporter: simone.trubian | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Linux | Architecture: x86_64 (amd64) Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -----------------------------------+-------------------------------------- Comment (by simonpj): It'd be good to characterise this better, if someone has time to do that. Could be due to excessive INLINE pragmas, or RULES, in some library. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 13:45:59 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 13:45:59 -0000 Subject: [GHC] #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications In-Reply-To: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> References: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> Message-ID: <065.361bf4e1d529363d22ee6a359ac1c7fe@haskell.org> #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): This is correct behavior. As described [http://downloads.haskell.org/~ghc/8.0.1-rc2/docs/html/users_guide/glasgow_exts.html #ambiguous-types-and-the-ambiguity-check here], the ambiguity check for `theFloatDigits` does precisely this: {{{ check :: forall a. RealFloat a => Int -- type copied from theFloatDigits check = theFloatDigits }}} When checking this declaration, `a` is indeed defaulted to `Double`, as reported. This is a consequence of the fact that `theFloatDigits`'s type is indeed ambiguous. A few ways forward here: 1. Clarify the mechanism behind the ambiguity check in the manual. It's stated in there now, but we could make this more prominent and describe that GHC really does type-check a binding as above. 2. Disable type defaulting in an ambiguity check. 3. Do nothing. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 14:15:58 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 14:15:58 -0000 Subject: [GHC] #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications In-Reply-To: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> References: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> Message-ID: <065.e508fe673c392c8593fd0f4e289313e7@haskell.org> #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by RyanGlScott): I suppose this is correct, but it hardly feels intuitive to me. The definition of `theFloatDigits`, as written above, doesn't seem ambiguous at all, given that we are explicitly applying the type `a` to `undefined`. The fact that GHC is emitting a warning at all appears to be byproduct of the particular implementation it uses to check for ambiguity. That being said, it looks like option 2 would be the most sensible option? I can't envision a scenario in which not defaulting types in an ambiguity check would make a difference. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 14:45:55 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 14:45:55 -0000 Subject: [GHC] #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications In-Reply-To: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> References: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> Message-ID: <065.80e5bfed071d2535b7bb8ca10266df9d@haskell.org> #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): `theFloatDigits` isn't the thing that's ambiguous or not; it's `theFloatDigits`'s type, `forall a. RealFloat a => Int`, which certainly is ambiguous, mentioning a type variable only in a constraint and not the type head. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 14:56:19 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 14:56:19 -0000 Subject: [GHC] #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications In-Reply-To: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> References: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> Message-ID: <065.59f8c95647c3a91bf7d1bf3cb359871a@haskell.org> #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by RyanGlScott): Replying to [comment:3 goldfire]: > `theFloatDigits` isn't the thing that's ambiguous or not; it's `theFloatDigits`'s type, `forall a. RealFloat a => Int`, which certainly is ambiguous, mentioning a type variable only in a constraint and not the type head. Sorry, I was confused. You're absolutely right in that `theFloatDigits`'s type signature is ambiguous. That is apparent if you try to typecheck something similar without defaulting rules like: {{{#!hs theIsSigned :: forall a. Bits a => Bool theIsSigned = isSigned (undefined @_ @a) }}} This fails to compile without `-XAllowAmbiguousTypes` enabled, which makes sense. `theFloatDigits`, on the other hand, compiles both with and without `-XAllowAmbiguousTypes`! This adds another wrinkle to the bug?should it require `-XAllowAmbiguousTypes`, or should it type defaulting make certain otherwise-ambiguous type signatures permissible? I'm not sure what the answer is, but I do believe that we should at least have some way to write `theFloatDigits` without needing to disable `-Wtype-defaults` altogether. Would it make sense to disable type defaulting in ambiguity checks when `-XAllowAmbiguousTypes` is enabled? After all, the warning message already suggests turning it on. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 14:58:38 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 14:58:38 -0000 Subject: [GHC] #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications In-Reply-To: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> References: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> Message-ID: <065.4b68766b0d902b39185f76c6fa4a6971@haskell.org> #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): But you should get no warning with `-XAllowAmbiguousTypes`, as that skips the ambiguity check that causes the warning. Or am I mistaken here? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 15:01:39 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 15:01:39 -0000 Subject: [GHC] #10266: Split base for Backpack In-Reply-To: <045.81e58b6e2b97dd039d014c76c016ea80@haskell.org> References: <045.81e58b6e2b97dd039d014c76c016ea80@haskell.org> Message-ID: <060.2f3dd8a7193d55b891b4ab3c63da9b64@haskell.org> #10266: Split base for Backpack -------------------------------------+------------------------------------- Reporter: ezyang | Owner: ezyang Type: task | Status: new Priority: low | Milestone: Component: libraries/base | Version: 7.11 Resolution: | Keywords: backpack Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by ibotty): * cc: ibotty (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 15:05:04 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 15:05:04 -0000 Subject: [GHC] #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications In-Reply-To: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> References: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> Message-ID: <065.04edf80a0c7773bc1e20ad43fc282146@haskell.org> #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by RyanGlScott): Replying to [comment:5 goldfire]: > But you should get no warning with `-XAllowAmbiguousTypes`, as that skips the ambiguity check that causes the warning. Or am I mistaken here? You do get a warning, it seems: {{{ $ /opt/ghc/8.0.1/bin/runghc -Wall -XAllowAmbiguousTypes TheFloatDigits.hs TheFloatDigits.hs:6:19: warning: [-Wtype-defaults] ? Defaulting the following constraint to type ?Double? RealFloat a0 ? In the ambiguity check for ?theFloatDigits? In the type signature: theFloatDigits :: forall a. RealFloat a => Int (53,24) }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 15:09:33 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 15:09:33 -0000 Subject: [GHC] #11830: Disabling idle GC leads to freeze In-Reply-To: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> References: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> Message-ID: <066.e277a4cbfdb5c249feccf66f8e11d6a6@haskell.org> #11830: Disabling idle GC leads to freeze -------------------------------------+------------------------------------- Reporter: NeilMitchell | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.1 Component: Runtime System | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Linux | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonmar): * priority: normal => highest * milestone: => 8.0.1 Comment: Release blocker -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 15:31:17 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 15:31:17 -0000 Subject: [GHC] #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications In-Reply-To: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> References: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> Message-ID: <065.3bcc729967e2f8d293d2c9a18ba0bfcf@haskell.org> #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): That is a solid bug. GHC should do no such thing. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 17:46:57 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 17:46:57 -0000 Subject: [GHC] #11836: Hello World Bug - silent stdout errors In-Reply-To: <042.baad19c7e01cfc8c7893de62fb103b5f@haskell.org> References: <042.baad19c7e01cfc8c7893de62fb103b5f@haskell.org> Message-ID: <057.4f1210c4e4f517518ab0203d7364fc4a@haskell.org> #11836: Hello World Bug - silent stdout errors -------------------------------------+------------------------------------- Reporter: bit | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11180 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by thomie): * related: => #11180 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 17:47:21 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 17:47:21 -0000 Subject: [GHC] #11180: A program writing to a read-only stdout should not succeed In-Reply-To: <045.32e51e5c9d825eeda3568b5614bc3a2c@haskell.org> References: <045.32e51e5c9d825eeda3568b5614bc3a2c@haskell.org> Message-ID: <060.893e644573e751a3a18f377f91e25a81@haskell.org> #11180: A program writing to a read-only stdout should not succeed -------------------------------------+------------------------------------- Reporter: thomie | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11836 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by thomie): * related: => #11836 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 17:52:53 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 17:52:53 -0000 Subject: [GHC] #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right Message-ID: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right -------------------------------------+------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- i've had to copy some files that aren't shipped with ghc, or perhaps i need to reinstall haddock in userland? {{{ ~ $ haddock --hyperlinked-source haddock: internal error: /Users/carter/.install- ghc/ghc-8.0.0.20160417/lib/ghc-8.0.0.20160417/html/solarized.css: copyFile: does not exist (No such file or directory) ~ $ cp /Users/carter/.install- ghc/ghc-8.0.0.20160417/share/doc/ghc-8.0.0.20160417/html/libraries/base-4.9.0.0/src/style.css /Users/carter/.install- ghc/ghc-8.0.0.20160417/lib/ghc-8.0.0.20160417/html/solarized.css cp /Users/carter/.install- ghc/ghc-8.0.0.20160417/share/doc/ghc-8.0.0.20160417/html/libraries/base-4.9.0.0/src/highlight.js /Users/carter/.install- ghc/ghc-8.0.0.20160417/lib/ghc-8.0.0.20160417/html/highlight.js }}} additionally i need to set {{{ haddock-options: --hyperlinked-source }}} correctly in the ~/.cabal/config file, and if thats set wrong, source files are silently not generated as part of the docs, so debugging a typo there is pretty confusing! sooo... either way, there seems to be two missing asset files in my build! namely those two files i had to CP! as additional data, heres the customized perf build way i did {{{ EXTRA_HADDOCK_OPTS=--hyperlinked-source HADDOCK_DOCS = YES BUILD_SPHINX_HTML = YES BUILD_SPHINX_PDF = YES libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-intree- gmp }}} my "debugging technique" was to run `haddock --hyperlinked-source` and figure out what file is in the pretty builds and CP that over to the location haddock was complaining about and repeat -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 18:41:40 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 18:41:40 -0000 Subject: [GHC] #11197: Overeager deferred type errors In-Reply-To: <047.311058030fc6bc2d09ef05760e42135c@haskell.org> References: <047.311058030fc6bc2d09ef05760e42135c@haskell.org> Message-ID: <062.0f0da4c9adc33af6842bb2b98947eb60@haskell.org> #11197: Overeager deferred type errors -------------------------------------+------------------------------------- Reporter: goldfire | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler (Type | Version: 7.11 checker) | Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): It looks like this is already affecting users: https://github.com/CRogers /should-not-typecheck/pull/6. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 19:13:19 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 19:13:19 -0000 Subject: [GHC] #11816: Refactor SymbolInfo out of Linker.c In-Reply-To: <044.2e959aba1a89ef8ffe1336bae5217af4@haskell.org> References: <044.2e959aba1a89ef8ffe1336bae5217af4@haskell.org> Message-ID: <059.21b761f524e936e124ed66f4069061eb@haskell.org> #11816: Refactor SymbolInfo out of Linker.c -------------------------------------+------------------------------------- Reporter: Phyx- | Owner: Phyx- Type: task | Status: new Priority: normal | Milestone: 8.2.1 Component: Runtime System | Version: 8.1 (Linker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11223 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Phyx-): * owner: => Phyx- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 19:22:34 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 19:22:34 -0000 Subject: [GHC] #11197: Overeager deferred type errors In-Reply-To: <047.311058030fc6bc2d09ef05760e42135c@haskell.org> References: <047.311058030fc6bc2d09ef05760e42135c@haskell.org> Message-ID: <062.efd549853f2f99452b1eeb0198344e41@haskell.org> #11197: Overeager deferred type errors -------------------------------------+------------------------------------- Reporter: goldfire | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler (Type | Version: 7.11 checker) | Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): The commentary on the PR linked to in comment:8 contains a workaround in that case. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 19:38:51 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 19:38:51 -0000 Subject: [GHC] #11836: Hello World Bug - silent stdout errors In-Reply-To: <042.baad19c7e01cfc8c7893de62fb103b5f@haskell.org> References: <042.baad19c7e01cfc8c7893de62fb103b5f@haskell.org> Message-ID: <057.ed4934159418ac7aacd8012bb7cb6b86@haskell.org> #11836: Hello World Bug - silent stdout errors -------------------------------------+------------------------------------- Reporter: bit | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11180 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: => 8.0.2 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 20:06:15 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 20:06:15 -0000 Subject: [GHC] #11824: GHC error in desugarer lookup In-Reply-To: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> References: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> Message-ID: <061.3e131afd9e875f6eac67030dabf3c9df@haskell.org> #11824: GHC error in desugarer lookup -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: patch Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2107, Wiki Page: | Phab:D2108 -------------------------------------+------------------------------------- Changes (by bgamari): * priority: normal => high -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 21:07:10 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 21:07:10 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.91451588aa965d9726d643b85af5aeb4@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Phab:D2105 Wiki Page: | -------------------------------------+------------------------------------- Changes (by dfeuer): * status: new => patch * differential: => Phab:D2105 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 22:00:57 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 22:00:57 -0000 Subject: [GHC] #11744: Latest Xcode update violates POSIX compliance of `nm -P` In-Reply-To: <042.af01bf0c9281d3187ce47b8cda7a587e@haskell.org> References: <042.af01bf0c9281d3187ce47b8cda7a587e@haskell.org> Message-ID: <057.1e52f2615981a4b2d696bc27cbb9473f@haskell.org> #11744: Latest Xcode update violates POSIX compliance of `nm -P` ---------------------------------+---------------------------------------- Reporter: hvr | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Build System | Version: Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): phab:D2113 Wiki Page: | ---------------------------------+---------------------------------------- Comment (by Ben Gamari ): In [changeset:"10d808c59307c5c0b1cb40a9ce0eb6e3efc068c9/ghc" 10d808c5/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="10d808c59307c5c0b1cb40a9ce0eb6e3efc068c9" relnotes: Add note about #11744 and workaround Test Plan: Read it Reviewers: hvr, austin Subscribers: carter, thomie Differential Revision: https://phabricator.haskell.org/D2120 GHC Trac Issues: #11744 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 18 22:28:39 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 18 Apr 2016 22:28:39 -0000 Subject: [GHC] #8524: GHC is inconsistent with the Haskell Report on which Unicode characters are allowed in string and character literals In-Reply-To: <045.aa22727e9338664a3617f731b2d178cd@haskell.org> References: <045.aa22727e9338664a3617f731b2d178cd@haskell.org> Message-ID: <060.ec9ae8a5ce13279351487eaf034a7bdd@haskell.org> #8524: GHC is inconsistent with the Haskell Report on which Unicode characters are allowed in string and character literals -------------------------------------+------------------------------------- Reporter: oerjan | Owner: Type: bug | Status: new Priority: low | Milestone: Component: Compiler | Version: 7.6.3 (Parser) | Resolution: | Keywords: unicode Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1235 Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * owner: RyanGlScott => -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 07:39:20 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 07:39:20 -0000 Subject: [GHC] #11450: Associated types at wrong type in instance In-Reply-To: <046.09703aba3da5589c5c125eb008ef88e8@haskell.org> References: <046.09703aba3da5589c5c125eb008ef88e8@haskell.org> Message-ID: <061.81d297a246104eabcb908fb35dde709b@haskell.org> #11450: Associated types at wrong type in instance -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.2 Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC accepts | Unknown/Multiple invalid program | Test Case: Blocked By: | Blocking: Related Tickets: #11449, #11451 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Simon Peyton Jones ): In [changeset:"8136a5cbfcd24647f897a2fae9fcbda0b1624035/ghc" 8136a5c/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="8136a5cbfcd24647f897a2fae9fcbda0b1624035" Tighten checking for associated type instances This patch finishes off Trac #11450. Following debate on that ticket, the patch tightens up the rules for what the instances of an associated type can look like. Now they must match the instance header exactly. Eg class C a b where type T a x b With this class decl, if we have an instance decl instance C ty1 ty2 where ... then the type instance must look like type T ty1 v ty2 = ... with exactly - 'ty1' for 'a' - 'ty2' for 'b', and - a variable for 'x' For example: instance C [p] Int type T [p] y Int = (p,y,y) Previously we allowed multiple instance equations and now, in effect, we don't since they would all overlap. If you want multiple cases, use an auxiliary type family. This is consistent with the treatment of generic-default instances, and the user manual always said "WARNING: this facility (multiple instance equations may be withdrawn in the future". I also improved error messages, and did other minor refactoring. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 07:52:26 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 07:52:26 -0000 Subject: [GHC] #11450: Associated types at wrong type in instance In-Reply-To: <046.09703aba3da5589c5c125eb008ef88e8@haskell.org> References: <046.09703aba3da5589c5c125eb008ef88e8@haskell.org> Message-ID: <061.613b6cd835ff7d0491279a0cffbe5d21@haskell.org> #11450: Associated types at wrong type in instance -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: closed Priority: high | Milestone: 8.0.2 Component: Compiler | Version: 7.10.3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC accepts | Test Case: indexed- invalid program | types/should_fail/T11450 Blocked By: | Blocking: Related Tickets: #11449, #11451 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * status: new => closed * testcase: => indexed-types/should_fail/T11450 * resolution: => fixed Comment: OK I've finally dealt with this one. I decided to tighten the rules, so that a `type instance` for an associated type, nested in a class `instance` declaration, must have an LHS that precisely matches the template laid out in the `class` declaration: * The arg positions that correspond to class type variables must be exactly as in the instance header * The other arg positions must be distinct type variables. That means you can no longer give ''multiple'' `type instance` decls for the same associated type in one `instance` decl. For example: {{{ class C a where type F a b instance C Int where type F Int Bool = Char type F Int Char = Bool }}} This is now illegal: the second arg position must be a variable. It's pretty weird anyway because the second arg position is open, so matching is incomplete. If you want something like that, use an auxiliary definition: {{{ instance C Int where type F Int b = FInt b type family FInt b type instance FInt Bool = Char type instance FInt Char = BOol }}} If the second arg is a closed type, you can use a closed type family definition, even better. This is a behaviour change -- but it's onle that the user manual explicitly signaled as subject to change. Don't merge to 8.0. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 09:28:54 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 09:28:54 -0000 Subject: [GHC] #11950: Eventlog should include delimiters showing when the process writes to the .eventlog file Message-ID: <050.f7b767a40aed547dddf7eb969d5bbc90@haskell.org> #11950: Eventlog should include delimiters showing when the process writes to the .eventlog file -------------------------------------+------------------------------------- Reporter: JamesFisher | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: Runtime | Version: 7.10.3 System | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Quoting a comment I just added at https://ghc.haskell.org/trac/ghc/wiki/EventLog#Limitations : > Event logging can produce "observer effects". In particular, programs can pause while writing to the `.eventlog` file. These display in Threadscope as periods of 100% CPU use with no obvious cause. This effect is exacerbated by heavy use of debug tools which expand the eventlog file, such as `Trace.traceMarkerIO`. (This effect was at least seen on OS X. In an extreme case, a program doing nothing but writing 200,000 trace markers, which took 120 ms to run, showed a single 10ms pause in the middle to write them to the `.eventlog` file. These periods were shown to be due to writing the `.eventlog` file by using `dtruss -a`, which shows long periods of `write_nocancel` syscalls, writing to the `.eventlog` file opened earlier with `open_nocancel`.) This behavior caused a few hours of investigation for us. It would make it much more obvious what is happening if this behavior were logged in the eventlog. Specifically, I would like for the eventlog to include a "starting writing eventlog file" event at the start of each of these periods, and a "stopped" event at the end of each period. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 09:39:28 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 09:39:28 -0000 Subject: [GHC] #11951: GHC formula is segfaulting with Xcode 7.3 Message-ID: <047.c0368f0ef5014b4dc61f0d364496bd71@haskell.org> #11951: GHC formula is segfaulting with Xcode 7.3 -------------------------------------+------------------------------------- Reporter: ilovezfs | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- This affects Xcode 7.3 but not Xcode 7.2.1. make[1]: *** [compiler/stage2/dll-split.stamp] Segmentation fault: 11 For >= Xcode 7.3 (also the 7.3 CLT) the directory "Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin" now has the old `nm` renamed `nm-classic` and `nm` is a symlink to `llvm- nm`. By redirecting the build system's use of `nm` to use `nm-classic` the segfault does not occur. I'm not sure what goes wrong with `llvm-nm` but it would be great if the build could be fixed to be able to use it without segfaulting, since using `nm-classic` is a hack and Apple may retire it at some point. https://github.com/Homebrew/homebrew-core/issues/371 https://github.com/Homebrew/homebrew-core/pull/449 https://gist.githubusercontent.com/ilovezfs/dd26686da7e545fabca1a517e3adb039/raw/85db1dd5070d6362ed280d8448161a3ab2b86b0d/gistfile1.txt -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 09:40:07 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 09:40:07 -0000 Subject: [GHC] #11951: GHC build is segfaulting with Xcode 7.3 (was: GHC formula is segfaulting with Xcode 7.3) In-Reply-To: <047.c0368f0ef5014b4dc61f0d364496bd71@haskell.org> References: <047.c0368f0ef5014b4dc61f0d364496bd71@haskell.org> Message-ID: <062.b29a1ba12899f5a0059103d5e5a44bd8@haskell.org> #11951: GHC build is segfaulting with Xcode 7.3 -------------------------------------+------------------------------------- Reporter: ilovezfs | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 09:41:07 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 09:41:07 -0000 Subject: [GHC] #11951: GHC build is segfaulting with Xcode 7.3 In-Reply-To: <047.c0368f0ef5014b4dc61f0d364496bd71@haskell.org> References: <047.c0368f0ef5014b4dc61f0d364496bd71@haskell.org> Message-ID: <062.ef6330646cea4f6c64ad997a2f98404c@haskell.org> #11951: GHC build is segfaulting with Xcode 7.3 -------------------------------------+------------------------------------- Reporter: ilovezfs | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by ilovezfs: @@ -18,0 +18,1 @@ + New description: This affects Xcode 7.3 but not Xcode 7.2.1. make[1]: *** [compiler/stage2/dll-split.stamp] Segmentation fault: 11 For >= Xcode 7.3 (also the 7.3 CLT) the directory "Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin" now has the old `nm` renamed `nm-classic` and `nm` is a symlink to `llvm- nm`. By redirecting the build system's use of `nm` to use `nm-classic` the segfault does not occur. I'm not sure what goes wrong with `llvm-nm` but it would be great if the build could be fixed to be able to use it without segfaulting, since using `nm-classic` is a hack and Apple may retire it at some point. https://github.com/Homebrew/homebrew-core/issues/371 https://github.com/Homebrew/homebrew-core/pull/449 https://gist.githubusercontent.com/ilovezfs/dd26686da7e545fabca1a517e3adb039/raw/85db1dd5070d6362ed280d8448161a3ab2b86b0d/gistfile1.txt -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 09:48:28 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 09:48:28 -0000 Subject: [GHC] #10053: Regression on MacOS platform, error in ghci calling main after loading compiled code: "Too late for parseStaticFlags..." In-Reply-To: <045.7defde488a4af19895968f8c8b9b5f95@haskell.org> References: <045.7defde488a4af19895968f8c8b9b5f95@haskell.org> Message-ID: <060.abd57fb444df163f01ff209baec790e0@haskell.org> #10053: Regression on MacOS platform, error in ghci calling main after loading compiled code: "Too late for parseStaticFlags..." -------------------------------------+------------------------------------- Reporter: George | Owner: ak3n Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.10.1-rc2 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Incorrect result | (amd64) at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by ak3n): * owner: => ak3n Comment: The problem is that "main" which is called in ghci is from ghc/Main.hs. Any ideas? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 10:47:54 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 10:47:54 -0000 Subject: [GHC] #10053: Regression on MacOS platform, error in ghci calling main after loading compiled code: "Too late for parseStaticFlags..." In-Reply-To: <045.7defde488a4af19895968f8c8b9b5f95@haskell.org> References: <045.7defde488a4af19895968f8c8b9b5f95@haskell.org> Message-ID: <060.ea5da929fd82f89c230d179ea45a2014@haskell.org> #10053: Regression on MacOS platform, error in ghci calling main after loading compiled code: "Too late for parseStaticFlags..." -------------------------------------+------------------------------------- Reporter: George | Owner: ak3n Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.10.1-rc2 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Incorrect result | (amd64) at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): ak3n, could you elaborate? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 11:27:03 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 11:27:03 -0000 Subject: [GHC] #11951: GHC build is segfaulting with Xcode 7.3 In-Reply-To: <047.c0368f0ef5014b4dc61f0d364496bd71@haskell.org> References: <047.c0368f0ef5014b4dc61f0d364496bd71@haskell.org> Message-ID: <062.5b253c85edb429c20d9c444d5a482beb@haskell.org> #11951: GHC build is segfaulting with Xcode 7.3 -------------------------------------+------------------------------------- Reporter: ilovezfs | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: duplicate | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11744 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => closed * resolution: => duplicate * related: => #11744 Comment: This is a bug in `llvm-nm`; see #11744. It has been fixed upstream but Apple has yet to ship a fixed XCode release. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 11:27:47 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 11:27:47 -0000 Subject: [GHC] #11951: GHC build is segfaulting with Xcode 7.3 In-Reply-To: <047.c0368f0ef5014b4dc61f0d364496bd71@haskell.org> References: <047.c0368f0ef5014b4dc61f0d364496bd71@haskell.org> Message-ID: <062.8a5380d80e684a78423ac5c505ac6a88@haskell.org> #11951: GHC build is segfaulting with Xcode 7.3 -------------------------------------+------------------------------------- Reporter: ilovezfs | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: duplicate | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11744 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): See also, the brief discussion in the [[GHC 8.0.1-rc3 release announcement|https://mail.haskell.org/pipermail/ghc- devs/2016-April/011862.html]]. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 11:33:34 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 11:33:34 -0000 Subject: [GHC] #11951: GHC build is segfaulting with Xcode 7.3 In-Reply-To: <047.c0368f0ef5014b4dc61f0d364496bd71@haskell.org> References: <047.c0368f0ef5014b4dc61f0d364496bd71@haskell.org> Message-ID: <062.b8569c6db8fb457de4bcad0f4a2d01f7@haskell.org> #11951: GHC build is segfaulting with Xcode 7.3 -------------------------------------+------------------------------------- Reporter: ilovezfs | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: duplicate | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11744 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by ilovezfs): Thanks for your response. Is `--with-nm=nm-classic` something that works only with the 8.* series or can we use it with ghc-7.10.3b? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 12:05:53 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 12:05:53 -0000 Subject: [GHC] #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications In-Reply-To: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> References: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> Message-ID: <065.8a24b056125d59f2fe45d4d0331fb932@haskell.org> #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): I think that the solution here is fairly simple: `simplifyAmbiguityCheck` should not do defaulting. Should not be hard to try this out. Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 13:18:39 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 13:18:39 -0000 Subject: [GHC] #10053: Regression on MacOS platform, error in ghci calling main after loading compiled code: "Too late for parseStaticFlags..." In-Reply-To: <045.7defde488a4af19895968f8c8b9b5f95@haskell.org> References: <045.7defde488a4af19895968f8c8b9b5f95@haskell.org> Message-ID: <060.74e97b3a6678d8d330a2c00fa31fcfeb@haskell.org> #10053: Regression on MacOS platform, error in ghci calling main after loading compiled code: "Too late for parseStaticFlags..." -------------------------------------+------------------------------------- Reporter: George | Owner: ak3n Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.10.1-rc2 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Incorrect result | (amd64) at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by ak3n): Replying to [comment:17 bgamari]: > ak3n, could you elaborate? This error is raised in [https://github.com/ghc/ghc/blob/master/compiler/main/StaticFlags.hs#L80 compiler/main/Staticflags.hs], when parseStaticFlags is called in [https://github.com/ghc/ghc/blob/master/ghc/Main.hs#L113 ghc/Main.hs]. So, this code is called two times: on ghci start and on "main" input statement. It looks like, linker replaces "main" from the loaded module with "main" of ghc. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 13:45:49 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 13:45:49 -0000 Subject: [GHC] #11952: automatic show instance generating loop Message-ID: <046.c7d68acc93ba67cb8f45efc98e34fe0c@haskell.org> #11952: automatic show instance generating loop --------------------------------+------------------------------------- Reporter: maxigit | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: x86 | Type of failure: None/Unknown Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: --------------------------------+------------------------------------- I have the following code : {{{#!hs {-# LANGUAGE TypeFamilies, DataKinds #-} data Status = Valid | Invalid deriving(Show) data A s = A (TF s) type family TF (s:: Status) where TF Valid = Int TF Invalid = Either String Int instance Show (A Valid) instance Show (A Invalid) a :: A Valid a = A 3 }}} Printing `a` results in a stackoverflow. I'm using GHC-7.10.3 (and 7.8.4) on Ubuntu under a VM -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 14:41:09 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 14:41:09 -0000 Subject: [GHC] #11952: automatic show instance generating loop In-Reply-To: <046.c7d68acc93ba67cb8f45efc98e34fe0c@haskell.org> References: <046.c7d68acc93ba67cb8f45efc98e34fe0c@haskell.org> Message-ID: <061.a0f7e745cd5922ac054bd0243413edb4@haskell.org> #11952: automatic show instance generating loop -------------------------------------+------------------------------ Reporter: maxigit | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: invalid | Keywords: Operating System: Unknown/Multiple | Architecture: x86 Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------ Changes (by kosmikus): * status: new => closed * resolution: => invalid Comment: An empty instance for `show` is not automatic. It uses the default definitions, which are defined in terms of each other. You can use `StandaloneDeriving` and say {{{ deriving instance Show (A Valid) deriving instance Show (A Invalid) }}} instead and it will work just fine. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 14:45:10 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 14:45:10 -0000 Subject: [GHC] #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right In-Reply-To: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> References: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> Message-ID: <060.dc4131f6f8b622f9bc9079be686c64de@haskell.org> #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right -------------------------------------+------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by carter): Hvr mentioned on IRC that something along these lines has been a bug for a while now. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 14:46:45 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 14:46:45 -0000 Subject: [GHC] #11953: Export Word32#, Word64# on all architectures Message-ID: <046.593317f13858c2d1c5dc11a464cab3d1@haskell.org> #11953: Export Word32#, Word64# on all architectures -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Currently we have no always-available fixed-width primitive types. For instance, if you want a 64-bit unsigned integer you need to use `Word#` on 64-bit targets and `Word32#` otherwise. This adds a fair bit of complexity in places which really should be simple (e.g. `Data.Word`). -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 14:47:29 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 14:47:29 -0000 Subject: [GHC] #11954: Associated pattern synonyms not included in haddock Message-ID: <046.dee795066f70760dedef2b550cf6d5e0@haskell.org> #11954: Associated pattern synonyms not included in haddock -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Running haddock on: {{{#!hs {-# LANGUAGE PatternSynonyms #-} module Foo ( A(P) ) where data A a = A pattern P = A }}} Just gives a data type A with no constructors, and no mention of the associated pattern synonym P. Attached is a patch for haddock that prints associated patterns as GADT constructors -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 14:48:05 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 14:48:05 -0000 Subject: [GHC] #11954: Associated pattern synonyms not included in haddock In-Reply-To: <046.dee795066f70760dedef2b550cf6d5e0@haskell.org> References: <046.dee795066f70760dedef2b550cf6d5e0@haskell.org> Message-ID: <061.52dede44df012c367513f1961d656fd4@haskell.org> #11954: Associated pattern synonyms not included in haddock -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by darchon): * Attachment "haddock_assoc_pat_to_con.patch" added. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 14:59:29 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 14:59:29 -0000 Subject: [GHC] #11955: Haddock documentation for pattern synonyms printed with explicit forall quantifiers Message-ID: <046.a6a2b187c86fbb5c93bbd55a34566418@haskell.org> #11955: Haddock documentation for pattern synonyms printed with explicit forall quantifiers -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Running haddock on: {{{#!hs {-# LANGUAGE PatternSynonyms #-} module Foo ( A(..), pattern P ) where data A a = A a pattern P :: a -> A a pattern P a <- A a }}} in GHC 7.10.3 gives haddock documentation for P in the form of: {{{ pattern P :: a -> A a }}} while the haddock in GHC 8.0.1-rc3 gives haddock documentation for P in the form of: {{{ pattern P :: forall a. a -> A a }}} I think GHC/Haddock should not be adding the forall quantifier, and hence think the behaviour in GHC 8.0.1-rc3 is wrong, and the behaviour of GHC 7.10.3 is preferred. -- Ticket URL: GHC The Glasgow Haskell Compiler From matthew at wellquite.org Tue Apr 19 15:06:53 2016 From: matthew at wellquite.org (matthew at wellquite.org) Date: Tue, 19 Apr 2016 18:06:53 +0300 Subject: Fw: new important message Message-ID: <0000d464286e$ec6e6911$1e29a730$@wellquite.org> Hello! New message, please read matthew at wellquite.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From ghc-devs at haskell.org Tue Apr 19 15:06:13 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 15:06:13 -0000 Subject: [GHC] #11955: Haddock documentation for pattern synonyms printed with explicit forall quantifiers In-Reply-To: <046.a6a2b187c86fbb5c93bbd55a34566418@haskell.org> References: <046.a6a2b187c86fbb5c93bbd55a34566418@haskell.org> Message-ID: <061.40d3b056f88719fd3e04eb9fdfc499e3@haskell.org> #11955: Haddock documentation for pattern synonyms printed with explicit forall quantifiers -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by mpickering): * keywords: => PatternSynonyms -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 15:49:47 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 15:49:47 -0000 Subject: [GHC] #11954: Associated pattern synonyms not included in haddock In-Reply-To: <046.dee795066f70760dedef2b550cf6d5e0@haskell.org> References: <046.dee795066f70760dedef2b550cf6d5e0@haskell.org> Message-ID: <061.0f47816c63584762f1689fe19f03f5b1@haskell.org> #11954: Associated pattern synonyms not included in haddock -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by darchon): Please ignore the {{{ import DynFlags (unsafeGlobalDynFlags) }}} in the attached patch, it's a leftover from some of my debugging. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 17:14:10 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 17:14:10 -0000 Subject: [GHC] #11759: can't decompose ghc.exe path In-Reply-To: <045.78646c85aa5779cba5b2cf0a5492deb5@haskell.org> References: <045.78646c85aa5779cba5b2cf0a5492deb5@haskell.org> Message-ID: <060.6720214347904068f6ae4cfa1f917ede@haskell.org> #11759: can't decompose ghc.exe path -------------------------------------+------------------------------------- Reporter: erisco | Owner: Phyx- Type: feature request | Status: closed Priority: normal | Milestone: 8.0.1 Component: Driver | Version: 7.8.3 Resolution: fixed | Keywords: Operating System: Windows | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2101 Wiki Page: | -------------------------------------+------------------------------------- Changes (by Phyx-): * milestone: 8.2.1 => 8.0.1 Comment: Was merged to GHC 8.0 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 18:31:22 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 18:31:22 -0000 Subject: [GHC] #11956: on osx 10.11 haddock --hyperlinked-source on ghc source fails with file resource exhausted Message-ID: <045.fee2087a290e6aaf014fc48496728b47@haskell.org> #11956: on osx 10.11 haddock --hyperlinked-source on ghc source fails with file resource exhausted --------------------------------------+--------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: MacOS X Architecture: x86_64 (amd64) | Type of failure: None/Unknown Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: --------------------------------------+--------------------------------- {{{ Warning: Module: moduleUnitId is exported separately but will be documented under Module. Consider exporting it together with its parent(s) for code clarity. Warning: Module: moduleName is exported separately but will be documented under Module. Consider exporting it together with its parent(s) for code clarity. Warning: Couldn't find .haddock for export typeKind Warning: Couldn't find .haddock for export liftedTypeKind haddock: internal error: compiler/HsVersions.h: openBinaryFile: resource exhausted (Too many open files) }}} theres also quite a few "cannot find link destination" style errors, see the attached file for that NB: the key bit for fixing this, at least in my local environment, is to do `ulimit -n 10000` before invoking make. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 18:31:42 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 18:31:42 -0000 Subject: [GHC] #11956: on osx 10.11 haddock --hyperlinked-source on ghc source fails with file resource exhausted In-Reply-To: <045.fee2087a290e6aaf014fc48496728b47@haskell.org> References: <045.fee2087a290e6aaf014fc48496728b47@haskell.org> Message-ID: <060.36bb64258064123576b4fa42dda99bcc@haskell.org> #11956: on osx 10.11 haddock --hyperlinked-source on ghc source fails with file resource exhausted ---------------------------------+-------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 (amd64) Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | ---------------------------------+-------------------------------------- Changes (by carter): * Attachment "makerun-warnings.txt" added. haddock warnings outputs -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 19:07:28 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 19:07:28 -0000 Subject: [GHC] #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right In-Reply-To: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> References: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> Message-ID: <060.7e03b1fefde1ab78bc056a0b94121418@haskell.org> #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right -------------------------------------+------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by carter): {{{ /usr/bin/install -c -m 755 -d "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/html/" /usr/bin/install -c -m 755 -d "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/html/Classic.theme/" /usr/bin/install -c -m 755 -d "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/html/Ocean.std-theme/" /usr/bin/install -c -m 755 -d "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/latex/" /usr/bin/install -c -m 644 utils/haddock/haddock- api/resources/html/frames.html "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/html/" /usr/bin/install -c -m 644 utils/haddock/haddock-api/resources/html /haddock-util.js "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/html/" /usr/bin/install -c -m 644 utils/haddock/haddock- api/resources/html/Classic.theme/haskell_icon.gif "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/html/Classic.theme/" /usr/bin/install -c -m 644 utils/haddock/haddock- api/resources/html/Classic.theme/minus.gif "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/html/Classic.theme/" /usr/bin/install -c -m 644 utils/haddock/haddock- api/resources/html/Classic.theme/plus.gif "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/html/Classic.theme/" /usr/bin/install -c -m 644 utils/haddock/haddock- api/resources/html/Classic.theme/xhaddock.css "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/html/Classic.theme/" /usr/bin/install -c -m 644 utils/haddock/haddock-api/resources/html/Ocean .std-theme/hslogo-16.png "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/html/Ocean.std-theme/" /usr/bin/install -c -m 644 utils/haddock/haddock-api/resources/html/Ocean .std-theme/minus.gif "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/html/Ocean.std-theme/" /usr/bin/install -c -m 644 utils/haddock/haddock-api/resources/html/Ocean .std-theme/ocean.css "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/html/Ocean.std-theme/" /usr/bin/install -c -m 644 utils/haddock/haddock-api/resources/html/Ocean .std-theme/plus.gif "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/html/Ocean.std-theme/" /usr/bin/install -c -m 644 utils/haddock/haddock-api/resources/html/Ocean .std-theme/synopsis.png "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/html/Ocean.std-theme/" /usr/bin/install -c -m 644 utils/haddock/haddock- api/resources/latex/haddock.sty "/Users/carter/.install- ghc/ghc-8.0.0.20160419/lib/ghc-8.0.0.20160419/latex/" }}} is the applicable set of commands that should be doing this stuff, and it looks like they're simply neglected because the current install make file is doing it item by item rather than "for each i in foo ; cp i target/directory/", which is done in later stuff in the make file, such as {{{ for i in docs/users_guide/build-html/users_guide; do \ cp -Rp $i "/Users/carter/.install- ghc/ghc-8.0.0.20160419/share/doc/ghc-8.0.0.20160419/html"; \ done }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 19:21:36 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 19:21:36 -0000 Subject: [GHC] #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right In-Reply-To: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> References: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> Message-ID: <060.1670a71efd722c07817f10fe2da8bceb@haskell.org> #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right -------------------------------------+------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by carter): this seems to then get into tracing out / understanding how ghc generates the bindist-list file via the make process. which i'll try to look at this evening -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 19:31:03 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 19:31:03 -0000 Subject: [GHC] #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right In-Reply-To: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> References: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> Message-ID: <060.94451d22bd4b8a3a8cb1f4ae763f98f3@haskell.org> #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right -------------------------------------+------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by thomie): Those missing files should be mentioned in `utils/haddock/ghc.mk`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 19 22:56:04 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 19 Apr 2016 22:56:04 -0000 Subject: [GHC] #11957: DataKinds: lifting constructors whose identifier is a single character Message-ID: <051.0d4a428f7c0fd4e7178b832a34812c61@haskell.org> #11957: DataKinds: lifting constructors whose identifier is a single character -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- {{{ ghci> data I' = I' ghci> :kind I' I' :: * ghci> :kind 'I' :1:1: error: parse error on input ?'? }}} there doesn't seem to be a way to get `'I' :: I'`? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 03:54:57 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 03:54:57 -0000 Subject: [GHC] #11958: Improved testing of cross-compiler Message-ID: <044.199977cda1889326e5e53eb484e40895@haskell.org> #11958: Improved testing of cross-compiler -------------------------------------+------------------------------------- Reporter: erikd | Owner: Type: task | Status: new Priority: low | Milestone: 8.2.1 Component: Test Suite | Version: 7.10.3 Keywords: cross-compile | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- It is already possible to build cross compiler eg from x86_64/linux to armhf/linux or arm64/linux, but there is currently no way to run the test suite. However, at least for the host and targets above, it should be possible to run the test executables under the Qemu user space emulation. I know this works, because in my own personal jenkins build instance, I test exactly this by doing (for x86_64/linux to amr64/linux cross): {{{ echo -e 'main :: IO ()\nmain = putStrLn "Hello World"\n' > hello-world.hs inplace/bin/ghc-stage1 hello-world.hs -o hello-world test $(file hello-world | grep -c 'ARM aarch64, version 1') -eq 1 ./hello-world }}} The linux machine I run the above test on is x86_64/linux but has Qemu and `binfmt` stuff set up so that it can run some foreign binaries. For instance, if GHC worked as a Linux to Windows cross-compiler the resulting windows binaries should work under Wine. To get this working, I suspect that just about all the required work is in the build system. Not sure if it might not be better to wait until the Shake based build system is in better shape. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 08:01:55 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 08:01:55 -0000 Subject: [GHC] #11957: DataKinds: lifting constructors whose identifier is a single character In-Reply-To: <051.0d4a428f7c0fd4e7178b832a34812c61@haskell.org> References: <051.0d4a428f7c0fd4e7178b832a34812c61@haskell.org> Message-ID: <066.998c77c4bd0caa29d2584b1c7ac96a2a@haskell.org> #11957: DataKinds: lifting constructors whose identifier is a single character -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by tswilkinson): {{{ ghci> data I' = I' ghci> :kind I' I' :: * ghci> :kind ' I' ' I' :: I' }}} This is mentioned in the 8.0.1-rc3 user's guide, in section 9.10.3. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 08:02:33 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 08:02:33 -0000 Subject: [GHC] #11955: Haddock documentation for pattern synonyms printed with explicit forall quantifiers In-Reply-To: <046.a6a2b187c86fbb5c93bbd55a34566418@haskell.org> References: <046.a6a2b187c86fbb5c93bbd55a34566418@haskell.org> Message-ID: <061.f4738b3ad9afbdf7b5202333dee2144a@haskell.org> #11955: Haddock documentation for pattern synonyms printed with explicit forall quantifiers -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by darchon): Patch available as a github pull request for haddock at: https://github.com/haskell/haddock/pull/494 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 08:03:39 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 08:03:39 -0000 Subject: [GHC] #11954: Associated pattern synonyms not included in haddock In-Reply-To: <046.dee795066f70760dedef2b550cf6d5e0@haskell.org> References: <046.dee795066f70760dedef2b550cf6d5e0@haskell.org> Message-ID: <061.a040d6ccff5ab61536596cb0632da3a1@haskell.org> #11954: Associated pattern synonyms not included in haddock -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by darchon): Github pull request for haddock: https://github.com/haskell/haddock/pull/494 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 08:34:09 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 08:34:09 -0000 Subject: [GHC] #11959: Importing doubly exported pattern synonym and associated pattern synonym panics Message-ID: <046.6ec5a340ae5bc3bfa0a1a054dcc8ecc7@haskell.org> #11959: Importing doubly exported pattern synonym and associated pattern synonym panics -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple PatternSynonyms | Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Given {{{#!hs {-# LANGUAGE PatternSynonyms, ViewPatterns #-} module Pat (Vec2(Nil,(:>)), pattern (:>)) where newtype Vec2 a = Vec2 {unvec2 :: [a]} pattern Nil :: Vec2 a pattern Nil = Vec2 [] pattern (:>) x xs <- ((\ys -> (head $ unvec2 ys,Vec2 . tail $ unvec2 ys)) -> (x,xs)) where (:>) x xs = Vec2 (x:unvec2 xs) }}} and {{{#!hs {-# LANGUAGE PatternSynonyms #-} module Main where import Pat (Vec2(..),pattern (:>)) }}} I get: {{{ $ ghci Main.hs GHCi, version 8.0.0.20160411: http://www.haskell.org/ghc/ :? for help [1 of 2] Compiling Pat ( Pat.hs, interpreted ) Pat.hs:2:29: warning: [-Wduplicate-exports] ?:>? is exported by ?(:>)? and ?Vec2(Nil, type (:>))? [2 of 2] Compiling Main ( Main.hs, interpreted ) ghc: panic! (the 'impossible' happened) (GHC version 8.0.0.20160411 for x86_64-unknown-linux): filterImports/combine (:>, :>, Nothing) (:>, Vec2{Vec2, :>, Nil}, Nothing) Please report this as a GHC bug: http://www.haskell.org/ghc/reportabug }}} Now, the warning about the duplicate export is of course correct. But the panic shouldn't happen when I try to import both the associated pattern synonym and the normal pattern synonym. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 09:41:38 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 09:41:38 -0000 Subject: [GHC] #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right In-Reply-To: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> References: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> Message-ID: <060.16fa2ca9ea8bb2790841c780fdba93b4@haskell.org> #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right -------------------------------------+------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): I have a patch for this. Thanks for everyone who helped isolate the issue. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 09:51:27 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 09:51:27 -0000 Subject: [GHC] #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right In-Reply-To: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> References: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> Message-ID: <060.6fbec78f691d7291ca3ea61d116e891c@haskell.org> #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right -------------------------------------+------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Ben Gamari ): In [changeset:"7f71dbe3a17d6914f874488ef76d80c946db370c/ghc" 7f71dbe/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="7f71dbe3a17d6914f874488ef76d80c946db370c" Bump haddock submodule Install files necessary for --hyperlinked-source. Fixes #11949. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 10:06:47 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 10:06:47 -0000 Subject: [GHC] #11960: GHC parallel build failure during "make" Message-ID: <047.ec2cf2a2fa93a6c771ea2f164f8f5768@haskell.org> #11960: GHC parallel build failure during "make" -------------------------------------+------------------------------------- Reporter: ilovezfs | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Build System | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: Building GHC Unknown/Multiple | failed Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- This keeps happening (in the same place every time): {{{ config.status: executing libtool commands config.status: executing include commands config.status: executing src commands # wc on OS X has spaces in its output, which libffi's Makefile # doesn't expect, so we tweak it to sed them out mv libffi/build/Makefile libffi/build/Makefile.orig sed "s#wc -w#wc -w | sed 's/ //g'#" < libffi/build/Makefile.orig > libffi/build/Makefile "touch" libffi/stamp.ffi.static-shared.configure make: *** [all] Error 2 }}} Adding some sleep in various places seems to work around it, so it appears to be a race of some kind during parallel builds. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 13:26:12 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 13:26:12 -0000 Subject: [GHC] #11348: Local open type families instances ignored during type checking In-Reply-To: <048.419b44d406ca8091f032a727fdd29058@haskell.org> References: <048.419b44d406ca8091f032a727fdd29058@haskell.org> Message-ID: <063.a4030b929f93127136967edeb8aafad4@haskell.org> #11348: Local open type families instances ignored during type checking -------------------------------------+------------------------------------- Reporter: alexvieth | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc1 Resolution: | Keywords: TypeFamilies Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1762 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Simon Peyton Jones ): In [changeset:"353d8ae6fafe117a1cac4adf6f029a5baccc2780/ghc" 353d8ae6/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="353d8ae6fafe117a1cac4adf6f029a5baccc2780" SCC analysis for instances as well as types/classes This big patch is in pursuit of Trac #11348. It is largely the work of Alex Veith (thank you!), with some follow-up simplification and refactoring from Simon PJ. The main payload is described in RnSource Note [Dependency analysis of type, class, and instance decls] which is pretty detailed. * There is a new data type HsDecls.TyClGroup, for a strongly connected component of type/class/instance/role decls. The hs_instds field of HsGroup disappears, in consequence This forces some knock-on changes, including a minor haddock submodule update Smaller, weakly-related things * I found that both the renamer and typechecker were building an identical env for RoleAnnots, so I put common code for RoleAnnotEnv in RnEnv. * I found that tcInstDecls1 had very clumsy error handling, so I put it together into TcInstDcls.doClsInstErrorChecks }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 13:29:06 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 13:29:06 -0000 Subject: [GHC] #11348: Local open type families instances ignored during type checking In-Reply-To: <048.419b44d406ca8091f032a727fdd29058@haskell.org> References: <048.419b44d406ca8091f032a727fdd29058@haskell.org> Message-ID: <063.100de2f569c862ed9e6e2430e309f1ca@haskell.org> #11348: Local open type families instances ignored during type checking -------------------------------------+------------------------------------- Reporter: alexvieth | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc1 Resolution: fixed | Keywords: TypeFamilies Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | typecheck/should_compile/T11348 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1762 Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * testcase: => typecheck/should_compile/T11348 * status: patch => closed * resolution: => fixed Comment: OK, done. '''Thank you''' to Alex Vieth for doing all the heavy lifting; the above patch is mostly his work. Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 13:58:44 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 13:58:44 -0000 Subject: [GHC] #11348: Local open type families instances ignored during type checking In-Reply-To: <048.419b44d406ca8091f032a727fdd29058@haskell.org> References: <048.419b44d406ca8091f032a727fdd29058@haskell.org> Message-ID: <063.08228d135117930c35a05ee6fb3430d0@haskell.org> #11348: Local open type families instances ignored during type checking -------------------------------------+------------------------------------- Reporter: alexvieth | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc1 Resolution: fixed | Keywords: TypeFamilies Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | typecheck/should_compile/T11348 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1762 Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): Hooray Hooray Hooray! Thanks, Alex! This was a major engineering task that I shuddered at the thought of. It has lightened my day knowing that I won't have to do this. :) If that was fun for you, the next step is to support [https://en.wikipedia.org/wiki/Induction-recursion_%28type_theory%29 induction recursion]. I'm pretty sure I know how to do this, but it will take a similar engineering effort. It's not for the faint of heart, but this patch shows that your heart is not faint. As an added bonus, supporting induction recursion in GHC may be enough to publish a paper about, if that kind of thing is an incentive for you. Some notes (meant for myself, YMMV) I have on the subject are [https://ghc.haskell.org/trac/ghc/wiki/DependentHaskell/Internal#Separatingtypesignaturesfromdefinitions here]. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 15:52:50 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 15:52:50 -0000 Subject: [GHC] #4012: Compilation results are not deterministic In-Reply-To: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> References: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> Message-ID: <058.d226952e3d65841d83e2b70200ee6f1d@haskell.org> #4012: Compilation results are not deterministic -------------------------------------+------------------------------------- Reporter: kili | Owner: niteria Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 6.12.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: 11362 | Blocking: Related Tickets: #10424 | Differential Rev(s): Phab:D910, | Phab:D1073, Phab:D1133, Phab:D1192, | Phab:D1268, Phab:D1360, Phab:D1373, Wiki Page: | Phab:D1396, Phab:D1457, Phab:D1468, DeterministicBuilds | Phab:D1487, Phab:D1504, Phab:D1508 -------------------------------------+------------------------------------- Comment (by Bartosz Nitka ): In [changeset:"687c77808b82e8cf8c77fba2c0ed2fe003c907cf/ghc" 687c7780/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="687c77808b82e8cf8c77fba2c0ed2fe003c907cf" Kill unnecessary varSetElemsWellScoped in deriveTyData varSetElemsWellScoped introduces unnecessary non-determinism and it's possible to do the same thing deterministically for the same price. Test Plan: ./validate Reviewers: austin, simonmar, bgamari, simonpj Reviewed By: simonpj Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2124 GHC Trac Issues: #4012 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 16:08:12 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 16:08:12 -0000 Subject: [GHC] #10087: DefaultSignatures: error message mentions internal name In-Reply-To: <051.aa4c4a0637fafc7e89e489be234173b6@haskell.org> References: <051.aa4c4a0637fafc7e89e489be234173b6@haskell.org> Message-ID: <066.543f24775bbb420d3d633dc8b197b0c4@haskell.org> #10087: DefaultSignatures: error message mentions internal name -------------------------------------+------------------------------------- Reporter: andreas.abel | Owner: Type: feature request | Status: infoneeded Priority: normal | Milestone: Component: Compiler (Type | Version: 7.8.4 checker) | Resolution: | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Clarifications. `GenDefMeth` an `NoDefMeth` are gone. Now we just have (in `Class.hs`): {{{ type DefMethInfo = Maybe (Name, DefMethSpec Type) -- Nothing No default method -- Just ($dm, VanillaDM) A polymorphic default method, name $dm -- Just ($gm, GenericDM ty) A generic default method, name $gm, type ty -- The generic dm type is *not* quantified -- over the class variables; ie has the -- class vaiables free }}} So there are still three cases, just as stated in comment:4. But the representation has changed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 16:09:43 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 16:09:43 -0000 Subject: [GHC] #11961: PatBind test suite failure with `-DDEBUG` Message-ID: <046.8458f776be5ba55c048624dcb46a7891@haskell.org> #11961: PatBind test suite failure with `-DDEBUG` -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: bug | Status: new Priority: high | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- I get {{{ Compile failed (status 256) errors were: ghc-stage2: panic! (the 'impossible' happened) (GHC version 8.1.20160420 for x86_64-unknown-linux): ASSERT failed! CallStack (from HasCallStack): assertPprPanic, called at compiler/types/TyCoRep.hs:2082:56 in ghc:TyCoRep checkValidSubst, called at compiler/types/TyCoRep.hs:2118:17 in ghc:TyCoRep substTy, called at compiler/types/TyCoRep.hs:2060:3 in ghc:TyCoRep in_scope InScope {a_apN t_apW a_apX} tenv [apC :-> t_apW[tau:3], apN :-> a_apX[tau:3]] tenvFVs [apD :-> t_apD[tau:3], apW :-> t_apW[tau:3], apX :-> a_apX[tau:3]] cenv [] cenvFVs [] tys [a_apN[sk] -> a_apN[sk]] cos [] Please report this as a GHC bug: http://www.haskell.org/ghc/reportabug *** unexpected failure for PatBind(normal) }}} with a `-DDEBUG` build, e.g. on travis: https://s3.amazonaws.com/archive .travis-ci.org/jobs/124426776/log.txt -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 16:28:35 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 16:28:35 -0000 Subject: [GHC] #10087: DefaultSignatures: error message mentions internal name In-Reply-To: <051.aa4c4a0637fafc7e89e489be234173b6@haskell.org> References: <051.aa4c4a0637fafc7e89e489be234173b6@haskell.org> Message-ID: <066.2f0541b42eb785113342841c0c84ede3@haskell.org> #10087: DefaultSignatures: error message mentions internal name -------------------------------------+------------------------------------- Reporter: andreas.abel | Owner: Type: feature request | Status: infoneeded Priority: normal | Milestone: Component: Compiler (Type | Version: 7.8.4 checker) | Resolution: | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): The real issue is this: what error message do we *want* from the erroneous program in the Description? There really is an error: * the generic default method is used in the `instance` because no explicit method for `reflexive` is given. * but the generic default requires `(Eq a)` and that is not available. So we need something like {{{ No instance for (Eq D) arising from the generic default method for `reflexive` In the instance declaration for ?C D? }}} Would that be about right? The difficulty is that for generic defaults, for the class decl we generate {{{ $gdmreflexive :: (C a, Eq a) => a -> Bool $gdmreflexive x = x==x }}} This part is fine. For the missing method binding in the `instance` we generate we generate ''source code'' looking like {{{ reflexive = $gdmreflexive }}} Now we typecheck that, which gives the error message. And you can see it might be hard to generate the "right" error message. Better perhaps to do what happens for non-generic default methods, which is to generate typechecked code directly (and emit some constraints). Compare what we do for the `Nothing` case of `DefMethInfo` in `tc_default` in `tcMethods` in `TcInstDcls`. Does that make sense? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 16:33:42 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 16:33:42 -0000 Subject: [GHC] #11371: Bogus in-scope set in substitutions In-Reply-To: <046.772da5831321f90972ab679b44e7eb97@haskell.org> References: <046.772da5831321f90972ab679b44e7eb97@haskell.org> Message-ID: <061.aece0ac2ac5db6c323c820dac0c6271b@haskell.org> #11371: Bogus in-scope set in substitutions -------------------------------------+------------------------------------- Reporter: simonpj | Owner: niteria Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11360 | Differential Rev(s): phab:D1792, Wiki Page: | phab:D1801, phab:D1802 -------------------------------------+------------------------------------- Comment (by Bartosz Nitka ): In [changeset:"62943d2adc51c4a7a61bb1f48fd245791acfffe9/ghc" 62943d2/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="62943d2adc51c4a7a61bb1f48fd245791acfffe9" Build a correct substitution in dataConInstPat This adds the tyvars of the domain of the substitution into the in-scope set as well. What I'm not sure here is if the kinds can have any free vars that should be in the in-scope set as well. Test Plan: ./validate Reviewers: goldfire, austin, bgamari, simonpj Reviewed By: simonpj Subscribers: thomie, simonmar Differential Revision: https://phabricator.haskell.org/D2094 GHC Trac Issues: #11371 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 17:23:58 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 17:23:58 -0000 Subject: [GHC] #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol In-Reply-To: <044.47110be31f0548a4f623e31c109dd321@haskell.org> References: <044.47110be31f0548a4f623e31c109dd321@haskell.org> Message-ID: <059.e267ea944e6e7f02a521e678d38f0612@haskell.org> #11748: GHC runtime linker: fatal error: I found a duplicate definition for symbol -------------------------------------+------------------------------------- Reporter: jeiea | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 (Linking) | Resolution: duplicate | Keywords: Operating System: Windows | Architecture: x86_64 Type of failure: Compile-time | (amd64) crash | Test Case: Blocked By: | Blocking: Related Tickets: #11223 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Phyx-): * status: new => closed * resolution: => duplicate * related: => #11223 Comment: Right, looking at it more closely, I think I understand the problem. The `Win32` package already provides a function named `rgb`. Due to the call `C.include ""` in `Lib.hs`. The TH seems to be producing another function called `rgb` and hence the duplicate symbols error. GHC 7.x uses the old runtime linker which greedily loads symbols. So even though you don't use any symbols from the `Win32` package. Because you're linking against it an error is given. The second issue is that it's linking against the full `Win32.o` object file that cabal produces instead of the `Win32.a` file. In any case, you can't solve this in 7.10.3, you need the fix of #11223. So this is a combination of things, but I'll mark it as a duplicate since for it to work you'll need GHC 8.0. Feel free to re-open it if that doesn't solve it. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 17:27:52 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 17:27:52 -0000 Subject: [GHC] #10087: DefaultSignatures: error message mentions internal name In-Reply-To: <051.aa4c4a0637fafc7e89e489be234173b6@haskell.org> References: <051.aa4c4a0637fafc7e89e489be234173b6@haskell.org> Message-ID: <066.2cdf61dc35e74de92ca2344767120c0c@haskell.org> #10087: DefaultSignatures: error message mentions internal name -------------------------------------+------------------------------------- Reporter: andreas.abel | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 7.8.4 checker) | Resolution: | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * status: infoneeded => new Comment: Thanks, Simon! [https://ghc.haskell.org/trac/ghc/ticket/10087?replyto=8#comment:7 This comment] helps tremendously in figuring out how things currently work. Replying to [comment:8 simonpj]: > So we need something like > {{{ > No instance for (Eq D) arising from > the generic default method for `reflexive` > In the instance declaration for ?C D? > }}} > Would that be about right? I agree completely! I was confused because after reading [https://ghc.haskell.org/trac/ghc/ticket/10087?replyto=8#comment:1 Pedros' comment], I was under the impression he was implying that code should be legal. I probably misinterpreted it wildly and came to a very wrong conclusion. > Better perhaps to do what happens for non-generic default methods, which is to generate typechecked code directly (and emit some constraints). Compare what we do for the `Nothing` case of `DefMethInfo` in `tc_default` in `tcMethods` in `TcInstDcls`. > > Does that make sense? That seems sensible. Clearly, the mechanism we use for `VanillaDM` works well, because I've never seen an error message mention a name that begins with `$dm` :) If we modify the code that handles `GenericDM` to use the same tricks, that would probably make the error message much more palatable. We could also insert the phrase `"the generic default method for"` to make the origin of the issue clearer. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 17:40:51 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 17:40:51 -0000 Subject: [GHC] #11957: DataKinds: lifting constructors whose identifier is a single character In-Reply-To: <051.0d4a428f7c0fd4e7178b832a34812c61@haskell.org> References: <051.0d4a428f7c0fd4e7178b832a34812c61@haskell.org> Message-ID: <066.5ddccbf49b5ea5ecc1d1ac2ef85a6131@haskell.org> #11957: DataKinds: lifting constructors whose identifier is a single character -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Iceland_jack): Thank you, that's unintuitive. Could the error message reflect this syntax? A more confusing error message is: {{{ ghci> data I' = I' ghci> ' I' Ghci10.I'*** Exception: :273:11-43: Irrefutable pattern failed for pattern (char :: Char, rest') : _ ghci> }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 18:13:21 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 18:13:21 -0000 Subject: [GHC] #11348: Local open type families instances ignored during type checking In-Reply-To: <048.419b44d406ca8091f032a727fdd29058@haskell.org> References: <048.419b44d406ca8091f032a727fdd29058@haskell.org> Message-ID: <063.e59329879da6544dce8cb73d76119440@haskell.org> #11348: Local open type families instances ignored during type checking -------------------------------------+------------------------------------- Reporter: alexvieth | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc1 Resolution: fixed | Keywords: TypeFamilies Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | typecheck/should_compile/T11348 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1762 Wiki Page: | -------------------------------------+------------------------------------- Comment (by alexvieth): Happy to help! I'm glad to see this all wrapped up. > If that was fun for you, the next step is to support ?induction recursion. Is there a trac ticket for this? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 18:18:35 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 18:18:35 -0000 Subject: [GHC] #10087: DefaultSignatures: error message mentions internal name In-Reply-To: <051.aa4c4a0637fafc7e89e489be234173b6@haskell.org> References: <051.aa4c4a0637fafc7e89e489be234173b6@haskell.org> Message-ID: <066.332a2d09ef722ebd4a76820eab13d033@haskell.org> #10087: DefaultSignatures: error message mentions internal name -------------------------------------+------------------------------------- Reporter: andreas.abel | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 7.8.4 checker) | Resolution: | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by dreixel): I'm not entirely sure I understand my own comment, to be honest. The current proposal for handling certainly seems fine to me. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 18:25:28 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 18:25:28 -0000 Subject: [GHC] #11951: GHC build is segfaulting with Xcode 7.3 In-Reply-To: <047.c0368f0ef5014b4dc61f0d364496bd71@haskell.org> References: <047.c0368f0ef5014b4dc61f0d364496bd71@haskell.org> Message-ID: <062.4283bc4777f7421cb0281c21878d077c@haskell.org> #11951: GHC build is segfaulting with Xcode 7.3 -------------------------------------+------------------------------------- Reporter: ilovezfs | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: duplicate | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11744 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): It should work in both cases. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 19:59:56 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 19:59:56 -0000 Subject: [GHC] #10087: DefaultSignatures: error message mentions internal name In-Reply-To: <051.aa4c4a0637fafc7e89e489be234173b6@haskell.org> References: <051.aa4c4a0637fafc7e89e489be234173b6@haskell.org> Message-ID: <066.19db6e60e26dcb3dcf65ab9a886083f4@haskell.org> #10087: DefaultSignatures: error message mentions internal name -------------------------------------+------------------------------------- Reporter: andreas.abel | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 7.8.4 checker) | Resolution: | Keywords: Generics Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): OK, Ryan if you are prepared to have a go at this, feel free to consult me. You will have to emit some constraints, with a suitable `CtOrigin`. Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 20:12:07 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 20:12:07 -0000 Subject: [GHC] #11962: Support induction recursion Message-ID: <047.045273ef2ac55a0385e215af795b4757@haskell.org> #11962: Support induction recursion -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Now that we have `-XTypeInType`, let's take it a step further and allow induction recursion. This feature exists in Agda and Idris. Here is a short example of what can be done in Agda: {{{ mutual -- Codes for types. data U : Set where nat : U pi : (a : U) ? (El a ? U) ? U -- A function that interprets codes as actual types. El : U ? Set El nat = ? El (pi a b) = (x : El a) ? El (b x) }}} Note that the `U` datatype and the `El` function depend on each other. But if you look more closely, the header for `U` does not depend on `El`; only the constructors of `U` depend on `El`. So if we typecheck `U : Set` first, then `El : U ? Set`, then the constructors of `U`, then the equations of `El`, we're OK. Translation into Haskell: {{{ import Data.Kind data family Sing (a :: k) -- we still require singletons data U :: Type where Nat :: U Pi :: Sing (a :: U) -> (El a -> U) -> U type family El (u :: U) :: Type where El 'Nat = Int El (Pi a b) = forall (x :: El a). Sing x -> El (b x) }}} This currently errors with {{{ ? Type constructor ?U? cannot be used here (it is defined and used in the same recursive group) ? In the kind ?U? }}} It needn't error. (I'm cheating a bit here, because for unrelated reasons, we can't return a `forall` on the right-hand side of a type family. But that's not the issue at hand.) I have some very sketchy notes on how we might do this [wiki:DependentHaskell/Internal#Separatingtypesignaturesfromdefinitions here]. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 20:12:16 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 20:12:16 -0000 Subject: [GHC] #11348: Local open type families instances ignored during type checking In-Reply-To: <048.419b44d406ca8091f032a727fdd29058@haskell.org> References: <048.419b44d406ca8091f032a727fdd29058@haskell.org> Message-ID: <063.82d6a35f1adc57a0c029a7322819e8fe@haskell.org> #11348: Local open type families instances ignored during type checking -------------------------------------+------------------------------------- Reporter: alexvieth | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc1 Resolution: fixed | Keywords: TypeFamilies Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | typecheck/should_compile/T11348 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1762 Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): Yes, #11962. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 21:15:03 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 21:15:03 -0000 Subject: [GHC] #11742: 'Strict' extension is incompatible with 'deriving' mechanism In-Reply-To: <044.1099056177bb9b8f8365ada563f6c2b6@haskell.org> References: <044.1099056177bb9b8f8365ada563f6c2b6@haskell.org> Message-ID: <059.baeecd7bd9e84e090d006435e5ae72f5@haskell.org> #11742: 'Strict' extension is incompatible with 'deriving' mechanism -------------------------------------+------------------------------------- Reporter: awson | Owner: Type: bug | Status: closed Priority: highest | Milestone: 8.0.1 Component: Compiler | Version: 8.1 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: | simplCore/should_compile/T11742 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: merge => closed * resolution: => fixed * milestone: 8.2.1 => 8.0.1 Comment: Merged to `ghc-8.0` as 5f29b77af4c96e0e7002fa8ad6a4446960ea6592. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 21:20:21 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 21:20:21 -0000 Subject: [GHC] #11822: Pattern match checker exceeded (2000000) iterations In-Reply-To: <049.f2a29571b162949a036aa4b2a361c7f6@haskell.org> References: <049.f2a29571b162949a036aa4b2a361c7f6@haskell.org> Message-ID: <064.1c868709af6d1ca12bb9428250942e90@haskell.org> #11822: Pattern match checker exceeded (2000000) iterations -------------------------------------+------------------------------------- Reporter: j.waldmann | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: x86_64 Type of failure: Compile-time | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * keywords: => PatternMatchWarnings * cc: gkaracha (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 21:43:24 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 21:43:24 -0000 Subject: [GHC] #11830: Disabling idle GC leads to freeze In-Reply-To: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> References: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> Message-ID: <066.92d2c6559401d275f76598cf4f44a9ec@haskell.org> #11830: Disabling idle GC leads to freeze -------------------------------------+------------------------------------- Reporter: NeilMitchell | Owner: Type: bug | Status: patch Priority: highest | Milestone: 8.0.1 Component: Runtime System | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Linux | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2129 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => patch * differential: => Phab:D2129 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 22:55:41 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 22:55:41 -0000 Subject: [GHC] #11963: GHC introduces kind equality without TypeInType Message-ID: <045.559d5b56cb415a48409d0ecee32c5ab8@haskell.org> #11963: GHC introduces kind equality without TypeInType -------------------------------------+------------------------------------- Reporter: ezyang | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc2 (Type checker) | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- The following program is accepted by GHC 8.0 rc2 {{{ {-# LANGUAGE GADTs, PolyKinds, RankNTypes #-} data Typ k t where Typ :: (forall (a :: k -> *). a t -> a t) -> Typ k t }}} This probably shouldn't be accepted, because this is a circuitous way of saying: {{{ {-# LANGUAGE TypeInType #-} data Typ k (t :: k) = Typ }}} which does not work without `TypeInType`. Or perhaps both should be accepted without `TypeInType`? Printing with explicit kinds makes it clear why the obvious check didn't fire: {{{ ezyang at sabre:~$ ghc-8.0 --interactive B.hs -fprint-explicit-kinds GHCi, version 8.0.0.20160204: http://www.haskell.org/ghc/ :? for help [1 of 1] Compiling Main ( B.hs, interpreted ) Ok, modules loaded: Main. *Main> :info Typ type role Typ nominal nominal nominal data Typ k k1 (t :: k) where Typ :: forall k (t :: k). (forall (a :: k -> *). a t -> a t) -> Typ k k t -- Defined at B.hs:2:1 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 23:31:52 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 23:31:52 -0000 Subject: [GHC] #11964: Without TypeInType, inconsistently accepts Data.Kind.Type but not type synonym Message-ID: <045.8ccc62b1fd247c9c170f9f51a6d9bc8c@haskell.org> #11964: Without TypeInType, inconsistently accepts Data.Kind.Type but not type synonym -------------------------------------+------------------------------------- Reporter: ezyang | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc2 (Type checker) | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- For convenience, I'll use GHCi to demonstrate flag behavior. First, we define a file: ``` {-# LANGUAGE TypeInType #-} import Data.Kind type Star = Type newtype T k (t :: k) = T () ``` Next, we load it up in GHCi, WITHOUT `-XTypeInType`. Now we observe strange behavior: ``` ezyang at sabre:~$ ghc-8.0 --interactive C.hs GHCi, version 8.0.0.20160204: http://www.haskell.org/ghc/ :? for help [1 of 1] Compiling Main ( C.hs, interpreted ) Ok, modules loaded: Main. *Main> :k T Type Int T Type Int :: * *Main> :k T Star Int :1:3: error: ? Data constructor ?Star? cannot be used here (Perhaps you intended to use DataKinds) ? In the first argument of ?T?, namely ?Star? In the type ?T Star Int? ``` Of course, if we pass `-TypeInType` to GHCi that fixes the problem (BTW, `DataKinds` does NOT solve the problem.) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 20 23:32:12 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 20 Apr 2016 23:32:12 -0000 Subject: [GHC] #11964: Without TypeInType, inconsistently accepts Data.Kind.Type but not type synonym In-Reply-To: <045.8ccc62b1fd247c9c170f9f51a6d9bc8c@haskell.org> References: <045.8ccc62b1fd247c9c170f9f51a6d9bc8c@haskell.org> Message-ID: <060.7b45dd940457dceca5c74a437183eaf7@haskell.org> #11964: Without TypeInType, inconsistently accepts Data.Kind.Type but not type synonym -------------------------------------+------------------------------------- Reporter: ezyang | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1-rc2 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by ezyang: @@ -4,1 +4,1 @@ - ``` + {{{ @@ -9,1 +9,1 @@ - ``` + }}} @@ -14,1 +14,1 @@ - ``` + {{{ @@ -28,1 +28,1 @@ - ``` + }}} New description: For convenience, I'll use GHCi to demonstrate flag behavior. First, we define a file: {{{ {-# LANGUAGE TypeInType #-} import Data.Kind type Star = Type newtype T k (t :: k) = T () }}} Next, we load it up in GHCi, WITHOUT `-XTypeInType`. Now we observe strange behavior: {{{ ezyang at sabre:~$ ghc-8.0 --interactive C.hs GHCi, version 8.0.0.20160204: http://www.haskell.org/ghc/ :? for help [1 of 1] Compiling Main ( C.hs, interpreted ) Ok, modules loaded: Main. *Main> :k T Type Int T Type Int :: * *Main> :k T Star Int :1:3: error: ? Data constructor ?Star? cannot be used here (Perhaps you intended to use DataKinds) ? In the first argument of ?T?, namely ?Star? In the type ?T Star Int? }}} Of course, if we pass `-TypeInType` to GHCi that fixes the problem (BTW, `DataKinds` does NOT solve the problem.) -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 00:28:31 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 00:28:31 -0000 Subject: [GHC] #8779: Exhaustiveness checks for pattern synonyms In-Reply-To: <046.b910d807e2ecf5838df4d05d7ec88278@haskell.org> References: <046.b910d807e2ecf5838df4d05d7ec88278@haskell.org> Message-ID: <061.401c1abf242b6b6f28e590d78d6e4398@haskell.org> #8779: Exhaustiveness checks for pattern synonyms -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 7.8.1 checker) | Keywords: Resolution: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by dfeuer): * cc: dfeuer (added) Comment: I suspect making this really work right may require some modifications to the pattern synonym concept. For example, {{{#!hs pattern Empty = Seq EmptyT pattern x :<| xs <- (viewl -> x :< xs) pattern xs :|> x <- (viewr -> xs :> x) }}} To see that either `x :<| xs` or `xs :|> x` is complete when combined with `Empty`, the exhaustiveness checker would have to recognize that `viewl` and `viewr` will give non-empty results under the same circumstances. This may be feasible in this case (I'm not sure), but in principle it seems rather hard. I think a good target would be to ensure that multiple pattern synonyms using the ''same'' view are handled properly. An alternative blunt instrument: let the user promise that a certain combination of pattern synonyms will always be exhaustive when applied to a particular type. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 00:28:59 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 00:28:59 -0000 Subject: [GHC] #8779: Exhaustiveness checks for pattern synonyms In-Reply-To: <046.b910d807e2ecf5838df4d05d7ec88278@haskell.org> References: <046.b910d807e2ecf5838df4d05d7ec88278@haskell.org> Message-ID: <061.ff67c0b658a2f1c8d48e64bd9d644663@haskell.org> #8779: Exhaustiveness checks for pattern synonyms -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 7.8.1 checker) | Keywords: Resolution: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by dfeuer): Oh, I see that was proposed initially. Duh! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 00:57:30 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 00:57:30 -0000 Subject: [GHC] #11963: GHC introduces kind equality without TypeInType In-Reply-To: <045.559d5b56cb415a48409d0ecee32c5ab8@haskell.org> References: <045.559d5b56cb415a48409d0ecee32c5ab8@haskell.org> Message-ID: <060.158265350971338cf9b603f561bb3576@haskell.org> #11963: GHC introduces kind equality without TypeInType -------------------------------------+------------------------------------- Reporter: ezyang | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1-rc2 checker) | Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * keywords: => TypeInType Comment: As it says in the user's guide, identifying the necessity for `-XTypeInType` is done on a best-effort basis. That said, I'm surprised this one is missed, because `k` is clearly used as both a kind and a type in the type of the data constructor. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 00:59:12 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 00:59:12 -0000 Subject: [GHC] #11964: Without TypeInType, inconsistently accepts Data.Kind.Type but not type synonym In-Reply-To: <045.8ccc62b1fd247c9c170f9f51a6d9bc8c@haskell.org> References: <045.8ccc62b1fd247c9c170f9f51a6d9bc8c@haskell.org> Message-ID: <060.2344654785a376fc6e35e2d4ce3af869@haskell.org> #11964: Without TypeInType, inconsistently accepts Data.Kind.Type but not type synonym -------------------------------------+------------------------------------- Reporter: ezyang | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1-rc2 checker) | Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * keywords: => TypeInType -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 08:52:21 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 08:52:21 -0000 Subject: [GHC] #11965: USE_PTHREAD_FOR_ITIMER causes unnecessary wake-ups Message-ID: <046.693e963a76f01ad7673f5f3266c31daf@haskell.org> #11965: USE_PTHREAD_FOR_ITIMER causes unnecessary wake-ups -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: new Priority: high | Milestone: Component: Runtime | Version: 7.10.3 System | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: Runtime Unknown/Multiple | performance bug Test Case: | Blocked By: Blocking: | Related Tickets: #1623 Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- The `USE_PTHREAD_FOR_ITIMER` path appears to regress #1623 as it has no ability to disarm the timer when the ticker is in the `STOPPED` state. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 11:09:47 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 11:09:47 -0000 Subject: [GHC] #1623: ghci: 20 wakeups per second In-Reply-To: <044.79f0800bada3efe37e69bcbb2dfb2672@haskell.org> References: <044.79f0800bada3efe37e69bcbb2dfb2672@haskell.org> Message-ID: <059.e8590465f5630c96aa65eaf257bd6ec0@haskell.org> #1623: ghci: 20 wakeups per second -------------------------------------+------------------------------------- Reporter: igloo | Owner: simonmar Type: bug | Status: closed Priority: normal | Milestone: 6.8.1 Component: Runtime System | Version: 6.6.1 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * cc: simonmar (added) * failure: => None/Unknown Comment: This is still broken in the `USE_PTHREAD_FOR_ITIMER` codepath. See #11965. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 11:10:23 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 11:10:23 -0000 Subject: [GHC] #11965: USE_PTHREAD_FOR_ITIMER causes unnecessary wake-ups In-Reply-To: <046.693e963a76f01ad7673f5f3266c31daf@haskell.org> References: <046.693e963a76f01ad7673f5f3266c31daf@haskell.org> Message-ID: <061.4a6baa76de101fa4595e85bb4893a75d@haskell.org> #11965: USE_PTHREAD_FOR_ITIMER causes unnecessary wake-ups -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: patch Priority: high | Milestone: Component: Runtime System | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: #1623 | Differential Rev(s): Phab:D2131 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => patch * differential: => Phab:D2131 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 11:25:27 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 11:25:27 -0000 Subject: [GHC] #10840: Periodic alarm signals can cause a retry loop to get stuck In-Reply-To: <049.c792fb7fbab25e12997f6231b1f3472d@haskell.org> References: <049.c792fb7fbab25e12997f6231b1f3472d@haskell.org> Message-ID: <064.9e3569fec8031252af9fa5be85a5bb91@haskell.org> #10840: Periodic alarm signals can cause a retry loop to get stuck -------------------------------------+------------------------------------- Reporter: Rufflewind | Owner: bgamari Type: bug | Status: new Priority: high | Milestone: 8.0.2 Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): Unfortunately it seems that the patch as merged in comment:9 has a subtle race condition (see #11830) and introduces unnecessary wake-ups (see #11965, #1623). I'm going to revert this for 8.0.1 and perhaps we can give it another try in 8.0.2 if this issues have been sorted. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 11:37:31 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 11:37:31 -0000 Subject: [GHC] #10840: Periodic alarm signals can cause a retry loop to get stuck In-Reply-To: <049.c792fb7fbab25e12997f6231b1f3472d@haskell.org> References: <049.c792fb7fbab25e12997f6231b1f3472d@haskell.org> Message-ID: <064.c3feb93361ccac071f7a9745968482a3@haskell.org> #10840: Periodic alarm signals can cause a retry loop to get stuck -------------------------------------+------------------------------------- Reporter: Rufflewind | Owner: bgamari Type: bug | Status: new Priority: high | Milestone: 8.0.2 Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by hsyl20): In the threaded RTS, on platforms without "timerfd" we could create a "ghc ticker" thread too and block the alarm signal in all threads except this one. I think this would fix the reported issue on OS X. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 13:29:31 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 13:29:31 -0000 Subject: [GHC] #11966: Surprising behavior with higher-rank quantification of kind variables Message-ID: <047.8ead3955d96d6526d9461332f9167c7a@haskell.org> #11966: Surprising behavior with higher-rank quantification of kind variables -------------------------------------+------------------------------------- Reporter: ocharles | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc3 (Type checker) | Keywords: TypeInType | Operating System: Unknown/Multiple Architecture: | Type of failure: GHC rejects Unknown/Multiple | valid program Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Sorry about the rubbish title. I wrote the following code, which type checks: {{{#!hs {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE DataKinds #-} {-# LANGUAGE KindSignatures #-} {-# LANGUAGE PolyKinds #-} {-# LANGUAGE RankNTypes #-} {-# LANGUAGE TypeInType #-} {-# LANGUAGE TypeOperators #-} module Test where import Data.Kind (Type) -- Simplification type family Col (f :: k -> j) (x :: k) :: Type -- Base types data PGBaseType = PGInteger | PGText -- Transformations data Column t = Column Symbol t newtype Nullable t = Nullable t newtype HasDefault t = HasDefault t -- Interpretations data Expr k data Record (f :: forall k. k -> Type) = Record {rX :: Col f ('Column "x" 'PGInteger) ,rY :: Col f ('Column "y" ('Nullable 'PGInteger)) ,rZ :: Col f ('HasDefault 'PGText)} }}} However, if I play with this in GHCI, I can get the following error: {{{ ?> let x = undefined :: Record Expr :136:29-32: error: ? Expected kind ?forall k. k -> Type?, but ?Expr? has kind ?forall k. k -> *? ? In the first argument of ?Record?, namely ?Expr? In an expression type signature: Record Expr In the expression: undefined :: Record Expr }}} It seems that if I write {{{#!hs data Expr :: forall k. k -> Type }}} things work, but I'm unclear if/why that is necessary, and the error message certainly needs to be fixed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 13:34:33 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 13:34:33 -0000 Subject: [GHC] #10053: Regression on MacOS platform, error in ghci calling main after loading compiled code: "Too late for parseStaticFlags..." In-Reply-To: <045.7defde488a4af19895968f8c8b9b5f95@haskell.org> References: <045.7defde488a4af19895968f8c8b9b5f95@haskell.org> Message-ID: <060.84ffc9059cc4be436b99fae8bfa54470@haskell.org> #10053: Regression on MacOS platform, error in ghci calling main after loading compiled code: "Too late for parseStaticFlags..." -------------------------------------+------------------------------------- Reporter: George | Owner: ak3n Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.10.1-rc2 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Incorrect result | (amd64) at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by ak3n): This error occurs only if the name of module is "Main". E.g. this code works fine: {{{ module Bug where main = print "hello" }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 13:36:06 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 13:36:06 -0000 Subject: [GHC] #11830: Disabling idle GC leads to freeze In-Reply-To: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> References: <051.01e036a0222a29198e3a9c508112fb05@haskell.org> Message-ID: <066.820e6cbd2b1a163b50a9c6528b247731@haskell.org> #11830: Disabling idle GC leads to freeze -------------------------------------+------------------------------------- Reporter: NeilMitchell | Owner: Type: bug | Status: patch Priority: highest | Milestone: 8.2.1 Component: Runtime System | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Linux | Architecture: Type of failure: Incorrect result | Unknown/Multiple at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2129 Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: 8.0.1 => 8.2.1 Comment: The patch in question has been reverted on `ghc-8.0` (see #10840). -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 14:30:39 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 14:30:39 -0000 Subject: [GHC] #10840: Periodic alarm signals can cause a retry loop to get stuck In-Reply-To: <049.c792fb7fbab25e12997f6231b1f3472d@haskell.org> References: <049.c792fb7fbab25e12997f6231b1f3472d@haskell.org> Message-ID: <064.3150a2e6391358cdb799f5dc99b13d88@haskell.org> #10840: Periodic alarm signals can cause a retry loop to get stuck -------------------------------------+------------------------------------- Reporter: Rufflewind | Owner: bgamari Type: bug | Status: new Priority: high | Milestone: 8.0.2 Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by hsyl20): Replying to [comment:16 hsyl20]: > In the threaded RTS, on platforms without "timerfd" we could create a "ghc ticker" thread too and block the alarm signal in all threads except this one. I think this would fix the reported issue on OS X. Forget this idea, @simonmar told me that it won't work nicely with threads that don't belong to GHC. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 18:58:55 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 18:58:55 -0000 Subject: [GHC] #10725: Figure out how to support type synonym implementions of abstract data In-Reply-To: <045.980e660de8478100fba0b108c0422308@haskell.org> References: <045.980e660de8478100fba0b108c0422308@haskell.org> Message-ID: <060.2a4c01a19557bfce26293b94a3ecc288@haskell.org> #10725: Figure out how to support type synonym implementions of abstract data -------------------------------------+------------------------------------- Reporter: ezyang | Owner: ezyang Type: task | Status: closed Priority: normal | Milestone: Component: Compiler (Type | Version: 7.10.2 checker) | Resolution: fixed | Keywords: backpack Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by ezyang): * status: new => closed * resolution: => fixed Comment: It was really easy, and I've implemented it on my branch. Just a few minor complications: 1. When we recompile an hsig file with the actual backing implementation, we need to notice when we define an abstract type "data A" which is implemented with a type synonym, and "swap in" the correct type synonym immediately. If we don't, when we subsequently refer to A we'll get a TyCon that is not decorated as a type synonym (despite being the same original name as a type synonym), and then type equality chokes. 2. There was a bug when serializing out hsig interface files where I was incorrectly grabbing fingerprints locally rather than from the backing implementation. That's fixed now. https://github.com/ezyang/ghc/commit/4d59c74b2381eb8e2b9c1d31111a921ed95ebd23 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 21:23:19 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 21:23:19 -0000 Subject: [GHC] #7602: Threaded RTS performing badly on recent OS X (10.8?) In-Reply-To: <047.d4c76195d3e5b80e244f99bd757e13e7@haskell.org> References: <047.d4c76195d3e5b80e244f99bd757e13e7@haskell.org> Message-ID: <062.76bf85daee60e208448e549a77a81d9f@haskell.org> #7602: Threaded RTS performing badly on recent OS X (10.8?) -------------------------------------+------------------------------------- Reporter: simonmar | Owner: thoughtpolice Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Runtime System | Version: Resolution: | Keywords: thread-local | state, TLS clang Operating System: MacOS X | Architecture: x86_64 Type of failure: Runtime | (amd64) performance bug | Test Case: Blocked By: 7678 | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): George, Yes, my builds (built with https://github.com/bgamari/ghc- utils/blob/master/rel-eng/bin-release.sh#L116) indeed use GCC. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 22:08:04 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 22:08:04 -0000 Subject: [GHC] #11824: GHC error in desugarer lookup In-Reply-To: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> References: <046.bef37bafb0de36b55d56e17189a8ba9e@haskell.org> Message-ID: <061.46ec3bab0115d04ad78e377dc54867f4@haskell.org> #11824: GHC error in desugarer lookup -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: closed Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2107, Wiki Page: | Phab:D2108 -------------------------------------+------------------------------------- Changes (by bgamari): * status: patch => closed * resolution: => fixed Comment: A version of the patch referenced in comment:6 was merged to `ghc-8.0` as 09665a7e678691ca03702854d0a1f76812a11c1a. I'm going to try doing some refactoring in this area soon to make all of this a bit less opaque. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 22:09:44 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 22:09:44 -0000 Subject: [GHC] #11719: Cannot use higher-rank kinds with type families In-Reply-To: <047.7d1567263c03c83c3feb5d4cd6d08b50@haskell.org> References: <047.7d1567263c03c83c3feb5d4cd6d08b50@haskell.org> Message-ID: <062.95ed5b913a3e2a1b13b017e7b9adfde1@haskell.org> #11719: Cannot use higher-rank kinds with type families -------------------------------------+------------------------------------- Reporter: ocharles | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.2.1 Component: Compiler (Type | Version: 8.0.1-rc2 checker) | Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | dependent/should_compile/T11719 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * milestone: 8.0.1 => 8.2.1 Comment: This is out of the scope of 8.0.1 (and perhaps 8.0 entirely). -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 22:11:28 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 22:11:28 -0000 Subject: [GHC] #11793: Confusing type error from constrained class method In-Reply-To: <049.66d83c7f7ec1f2be250a76e4769b49e0@haskell.org> References: <049.66d83c7f7ec1f2be250a76e4769b49e0@haskell.org> Message-ID: <064.724e273acc6e93e28091ee9a12122885@haskell.org> #11793: Confusing type error from constrained class method -------------------------------------+------------------------------------- Reporter: gridaphobe | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc2 Resolution: fixed | Keywords: error-message Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => closed * resolution: => fixed Comment: Merged to `ghc-8.0` as aab92412cf4cb77d988d36fb013018695c271ccd. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 22:12:54 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 22:12:54 -0000 Subject: [GHC] #11821: Internal error: not in scope during type checking, but it passed the renamer In-Reply-To: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> References: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> Message-ID: <061.ef230240297628c5dec35753a487f769@haskell.org> #11821: Internal error: not in scope during type checking, but it passed the renamer -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * cc: goldfire (added) * milestone: 8.0.1 => 8.0.2 Comment: It doesn't look like anything will be happening to address this for 8.0.1. Bumping. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 22:13:22 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 22:13:22 -0000 Subject: [GHC] #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right In-Reply-To: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> References: <045.fc842e32a8a4e1d4329589fbcb2fa18c@haskell.org> Message-ID: <060.ae882ee0e0c1530fa30440c89d64622b@haskell.org> #11949: ghc bindist doesn't bundle up the assets needed for hyperlinked-source properly and doesn't treat certain base modules right -------------------------------------+------------------------------------- Reporter: carter | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => closed * resolution: => fixed Comment: This has been fixed and merged to `ghc-8.0`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 22:13:50 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 22:13:50 -0000 Subject: [GHC] #11953: Export Word32#, Word64# on all architectures In-Reply-To: <046.593317f13858c2d1c5dc11a464cab3d1@haskell.org> References: <046.593317f13858c2d1c5dc11a464cab3d1@haskell.org> Message-ID: <061.781b15b521a8f91cab4eab40131abe35@haskell.org> #11953: Export Word32#, Word64# on all architectures -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: feature request | Status: new Priority: normal | Milestone: 8.2.1 Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * type: bug => feature request * milestone: 8.0.1 => 8.2.1 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 21 22:47:08 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 21 Apr 2016 22:47:08 -0000 Subject: [GHC] #11959: Importing doubly exported pattern synonym and associated pattern synonym panics In-Reply-To: <046.6ec5a340ae5bc3bfa0a1a054dcc8ecc7@haskell.org> References: <046.6ec5a340ae5bc3bfa0a1a054dcc8ecc7@haskell.org> Message-ID: <061.9938f731ceec5dd75b6ca6c81c307412@haskell.org> #11959: Importing doubly exported pattern synonym and associated pattern synonym panics -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * priority: normal => high Comment: Hmm, this is problematic. For future reference, we typically call these patterns "bundled" and not "associated" as the latter would be confusing if we ever gain the ability to associate a pattern with a typeclass. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 00:05:30 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 00:05:30 -0000 Subject: [GHC] #11959: Importing doubly exported pattern synonym and associated pattern synonym panics In-Reply-To: <046.6ec5a340ae5bc3bfa0a1a054dcc8ecc7@haskell.org> References: <046.6ec5a340ae5bc3bfa0a1a054dcc8ecc7@haskell.org> Message-ID: <061.405c49038e2a81b0cb826bee67a2af09@haskell.org> #11959: Importing doubly exported pattern synonym and associated pattern synonym panics -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: patch Priority: high | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2132, Wiki Page: | Phab:D2133 -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => patch * differential: => Phab:D2132, Phab:D2133 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 00:39:06 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 00:39:06 -0000 Subject: [GHC] #11954: Associated pattern synonyms not included in haddock In-Reply-To: <046.dee795066f70760dedef2b550cf6d5e0@haskell.org> References: <046.dee795066f70760dedef2b550cf6d5e0@haskell.org> Message-ID: <061.b0a49e1c79fefd7e8df97356985b26eb@haskell.org> #11954: Associated pattern synonyms not included in haddock -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: patch Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * status: new => patch -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 03:05:50 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 03:05:50 -0000 Subject: [GHC] #9334: Implement "instance chains" In-Reply-To: <047.4ee93c8536fe403cb27c42a096a1269b@haskell.org> References: <047.4ee93c8536fe403cb27c42a096a1269b@haskell.org> Message-ID: <062.129dcfe57ece5fb4bc2df6d5cacda371@haskell.org> #9334: Implement "instance chains" -------------------------------------+------------------------------------- Reporter: diatchki | Owner: diatchki Type: feature request | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 7.9 checker) | Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by tomberek): * cc: tomberek (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 07:06:55 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 07:06:55 -0000 Subject: [GHC] #11808: nofib's cryptarithm1 regresses due to deferred inlining of Int's Ord operations In-Reply-To: <046.0de81d906e12dbb6e83ee1dc28c4efa9@haskell.org> References: <046.0de81d906e12dbb6e83ee1dc28c4efa9@haskell.org> Message-ID: <061.3a50bfc5f19099e9cdc6c01e25e79bf9@haskell.org> #11808: nofib's cryptarithm1 regresses due to deferred inlining of Int's Ord operations -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: task | Status: new Priority: high | Milestone: 8.0.2 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by bgamari): * priority: highest => high * milestone: 8.0.1 => 8.0.2 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 07:50:01 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 07:50:01 -0000 Subject: [GHC] #11967: Custom message when showing functions, comparing functions, ... Message-ID: <051.2df31b020a6410a714945f3799f1d6ad@haskell.org> #11967: Custom message when showing functions, comparing functions, ... -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- One of the [https://ghc.haskell.org/trac/ghc/wiki/Proposal/CustomTypeErrors#Examples examples] of type errors: {{{#!hs instance TypeError (Text "Cannot 'Show' functions." :$$: Text "Perhaps there is a missing argument?") => Show (a -> b) where showsPrec = error "unreachable" }}} We already have [https://hackage.haskell.org/package/base-4.8.2.0/docs/src/Text.Show.Functions.html Text.Show.Functions], is there a place in `base` for this along with `Ord (a -> b)` instances and co. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 08:48:11 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 08:48:11 -0000 Subject: [GHC] #10012: Cheap-to-compute values aren't pushed into case branches inducing unnecessary register pressure In-Reply-To: <046.d81887f1f82ecca81477b67bf0ea3214@haskell.org> References: <046.d81887f1f82ecca81477b67bf0ea3214@haskell.org> Message-ID: <061.c44a9ea5886ac735248d87b433b2270a@haskell.org> #10012: Cheap-to-compute values aren't pushed into case branches inducing unnecessary register pressure -------------------------------------+------------------------------------- Reporter: bgamari | Owner: bgamari Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.8.4 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): I was thinking about this a bit more recently; to recap, the issue here is that GHC is unwilling to push bindings into case analyses when this would imply duplication. This leaves GHC no other option but to allocate the shared binding on the heap. To see an example of this let's look at `bytestring`'s `Builder`. The key branch here is `Data.ByteString.Builder.Internal.ensureFree`, {{{#!hs -- | The result of a build action data BuildSignal a = -- | We wrote all of the content we were asked to Done !(Ptr Word8) a -- | The buffer we were provided is full, but here's a continuation -- BuildStep to pick up where we left off | BufferFull !Int !(Ptr Word8) (BuildStep a) newtype Builder = Builder (forall r. BuildStep r -> BuildStep r) instance Monoid Builder where ... type BuildStep a = BufferRange -> IO (BuildSignal a) ensureFree :: Int -> Builder ensureFree minFree = builder step where step :: BuildStep r -> BuildStep r step k br@(BufferRange op ope) = | ope `minusPtr` op < minFree -> return $ bufferFull minFree op k | otherwise -> k br }}} The idea here is that we are filling a pre-allocated buffer (described by the `BufferRange`) with bytes; `ensureFree` verifies that the buffer has at least `minFree` free bytes remaining. The trouble comes when we write something like, {{{#!hs twoWord64s :: Word64 -> Word64 -> Builder twoWord64s a b = word64 (f a) <> word64 (f b) where -- just some cheap to evaluate function that we really don't want -- to build a thunk for f = (+1) }}} which in STG turns into something like, {{{#!hs twoWord64s' :: Word64 -> Word64 -> forall r. BuildStep r -> BufferRange -> IO (BuildSignal r) twoWord64s' a b cont br = let fa, fb :: Word64 fa = a + 1 fb = b + 1 in case br of BufferRange op ope -> case ope `minusPtr` op < minFree of True -> return $ bufferFull 16 {- bytes -} op cont False -> cont br }}} It seems that one interesting (albeit slightly inelegant) way to addressing this issue is to provide a means for the library author to indicate that a given `case` should be considered "cheap" to push through. That is, you might define `ensureFree` as, {{{#!hs ensureFree :: Int -> Builder ensureFree minFree = builder step where step k br@(BufferRange op ope) = case ope `minusPtr` op < minFree of True -> return $ bufferFull minFree op k False -> k br {-# INLINE_THROUGH #-} -- Telling GHC "it's okay if we lose sharing across -- the branches of this case, I would far prefer code duplication -- to allocation" }}} I don't believe there are too many places where this sort of pragma would be useful, but when it is needed I suspect it would be very useful indeed. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 09:05:59 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 09:05:59 -0000 Subject: [GHC] #10012: Cheap-to-compute values aren't pushed into case branches inducing unnecessary register pressure In-Reply-To: <046.d81887f1f82ecca81477b67bf0ea3214@haskell.org> References: <046.d81887f1f82ecca81477b67bf0ea3214@haskell.org> Message-ID: <061.51bf3dda955a1fd42e790d68f5c731e1@haskell.org> #10012: Cheap-to-compute values aren't pushed into case branches inducing unnecessary register pressure -------------------------------------+------------------------------------- Reporter: bgamari | Owner: bgamari Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.8.4 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): In comment:4 simon (or ben?) says ?duplicating work?, but it seems that the question at hand is not about loss of sharing, but rather code size, right? Floating a let binding into the branches of a case does not duplicate any work, only code. A `{-# INLINE_THROUGH #-}` pragma seems to be a bit unspecific. Do we really want the compiler to inline through everything, no matter how large? Or should this just shift the heuristics a bit? But what is so special about this `case` that makes this a worthwhile thing here, and not in other cases (sic)? Maybe the heuristics can be improved in general? It seems to be more a general question of whether the user wants more speed or smaller code. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 09:06:38 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 09:06:38 -0000 Subject: [GHC] #10012: Cheap-to-compute values aren't pushed into case branches inducing unnecessary register pressure In-Reply-To: <046.d81887f1f82ecca81477b67bf0ea3214@haskell.org> References: <046.d81887f1f82ecca81477b67bf0ea3214@haskell.org> Message-ID: <061.e558a71fc1fb3b1aa68d616c965b8549@haskell.org> #10012: Cheap-to-compute values aren't pushed into case branches inducing unnecessary register pressure -------------------------------------+------------------------------------- Reporter: bgamari | Owner: bgamari Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.8.4 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): There's something wrong with the example: far from being used in both branches, `fa` and `fb` are dead bindings. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 09:23:11 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 09:23:11 -0000 Subject: [GHC] #10012: Cheap-to-compute values aren't pushed into case branches inducing unnecessary register pressure In-Reply-To: <046.d81887f1f82ecca81477b67bf0ea3214@haskell.org> References: <046.d81887f1f82ecca81477b67bf0ea3214@haskell.org> Message-ID: <061.a517bb702f90fe5a0c06f6a2dc91809d@haskell.org> #10012: Cheap-to-compute values aren't pushed into case branches inducing unnecessary register pressure -------------------------------------+------------------------------------- Reporter: bgamari | Owner: bgamari Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.8.4 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): Replying to [comment:8 simonpj]: > There's something wrong with the example: far from being used in both branches, `fa` and `fb` are dead bindings. Oh dear, yes, sorry about that. I was a bit hurried in submitting. This should be fixed now. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 09:51:48 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 09:51:48 -0000 Subject: [GHC] #10012: Cheap-to-compute values aren't pushed into case branches inducing unnecessary register pressure In-Reply-To: <046.d81887f1f82ecca81477b67bf0ea3214@haskell.org> References: <046.d81887f1f82ecca81477b67bf0ea3214@haskell.org> Message-ID: <061.4582d7641f08a48adea03b79d2c62fe2@haskell.org> #10012: Cheap-to-compute values aren't pushed into case branches inducing unnecessary register pressure -------------------------------------+------------------------------------- Reporter: bgamari | Owner: bgamari Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.8.4 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): Replying to [comment:7 nomeata]: > In comment:4 simon (or ben?) says ?duplicating work?, but it seems that the question at hand is not about loss of sharing, but rather code size, right? Floating a let binding into the branches of a case does not duplicate any work, only code. > Correct, the primary concern is code size. > A `{-# INLINE_THROUGH #-}` pragma seems to be a bit unspecific. Do we really want the compiler to inline through everything, no matter how large? Or should this just shift the heuristics a bit? Indeed it is intentionally unspecific because I haven't yet found enough other potential use-cases for such a pragma to know what semantics would make the most sense. My first inclination was to essentially render the `case` invisible to the simplifier and float freely into the branches but simply shifting the float-in heuristics would also be a reasonable option (albeit perhaps a bit harder to reason about). > But what is so special about this `case` that makes this a worthwhile thing here, and not in other cases (sic)? Maybe the heuristics can be improved in general? > Unfortunately I haven't been able to pin this down very clearly beyond it occurring in an "inner loop". > It seems to be more a general question of whether the user wants more speed or smaller code. Right, but not all case analyses are created equal: examples like this one which occur in an inner loop deserve more inlining than others, yet I'm not sure GHC is in a position to be able to discern this. This is why I proposed simply providing a tool for nudging the compiler in the right direction. Clearly following this approach of adding source-level knobs to guide arbitrary simplifier heuristics to its logical conclusion is a path to madness; unfortunately I don't see a more general way to robustly address the issue at hand. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 10:04:13 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 10:04:13 -0000 Subject: [GHC] #11821: Internal error: not in scope during type checking, but it passed the renamer In-Reply-To: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> References: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> Message-ID: <061.029faa40cc4781a2bc60fbb14092b963@haskell.org> #11821: Internal error: not in scope during type checking, but it passed the renamer -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Richard I wonder if you might look at this? The dreaded `splitTelescopeTvs` seems to be implicated, and I really don't understand that function. I bet it's not hard to fix. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 10:04:32 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 10:04:32 -0000 Subject: [GHC] #11821: Internal error: not in scope during type checking, but it passed the renamer In-Reply-To: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> References: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> Message-ID: <061.dccbecfb7cac0fe35050cdaa29cd4563@haskell.org> #11821: Internal error: not in scope during type checking, but it passed the renamer -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * keywords: => TypeInType -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 10:18:00 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 10:18:00 -0000 Subject: [GHC] #10012: Cheap-to-compute values aren't pushed into case branches inducing unnecessary register pressure In-Reply-To: <046.d81887f1f82ecca81477b67bf0ea3214@haskell.org> References: <046.d81887f1f82ecca81477b67bf0ea3214@haskell.org> Message-ID: <061.97b0d7aa5b6250a45b47bfe9aaaaddb3@haskell.org> #10012: Cheap-to-compute values aren't pushed into case branches inducing unnecessary register pressure -------------------------------------+------------------------------------- Reporter: bgamari | Owner: bgamari Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.8.4 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): > But what is so special about this case that makes this a worthwhile thing here, and not in other cases (sic)? Maybe the heuristics can be improved in general? I'd also like to point out that we already decide to inline the `BuildStep` `k` itself into `ensureRoom/step` (although I admittedly don't yet understand why). It seems odd that we would inline this yet not its free variables. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 10:19:33 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 10:19:33 -0000 Subject: [GHC] #10012: Cheap-to-compute values aren't pushed into case branches inducing unnecessary register pressure In-Reply-To: <046.d81887f1f82ecca81477b67bf0ea3214@haskell.org> References: <046.d81887f1f82ecca81477b67bf0ea3214@haskell.org> Message-ID: <061.ac557ee159c7606e6180f0b136c29fae@haskell.org> #10012: Cheap-to-compute values aren't pushed into case branches inducing unnecessary register pressure -------------------------------------+------------------------------------- Reporter: bgamari | Owner: bgamari Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.8.4 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): To supplement the attached freestanding example, here is a smaller example depending upon `bytestring`, {{{#!hs module Hi where import qualified Data.ByteString.Builder as B import Data.Monoid import Data.Word hello :: Word64 -> Word64 -> B.Builder hello a b = B.word64LE (f a) <> B.word64LE (f b) where f = (+1) }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 10:29:49 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 10:29:49 -0000 Subject: [GHC] #11948: GHC forgets constraints In-Reply-To: <047.96ae835fe7aab8f5bcec7c36bfd7fc23@haskell.org> References: <047.96ae835fe7aab8f5bcec7c36bfd7fc23@haskell.org> Message-ID: <062.c38a0ea86e6d660d2b7955fa441d871b@haskell.org> #11948: GHC forgets constraints -------------------------------------+------------------------------------- Reporter: crockeea | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Simon Peyton Jones ): In [changeset:"9421b0c77122d40bf72665ea9f90dca64a0a0ae2/ghc" 9421b0c/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="9421b0c77122d40bf72665ea9f90dca64a0a0ae2" Warn about simplifiable class constraints Provoked by Trac #11948, this patch adds a new warning to GHC -Wsimplifiable-class-constraints It warns if you write a class constraint in a type signature that can be simplified by an existing instance declaration. Almost always this means you should simplify it right now; type inference is very fragile without it, as #11948 shows. I've put the warning as on-by-default, but I suppose that if there are howls of protest we can move it out (as happened for -Wredundant- constraints. It actually found an example of an over-complicated context in CmmNode. Quite a few tests use these weird contexts to trigger something else, so I had to suppress the warning in those. The 'haskeline' library has a few occurrences of the warning (which I think should be fixed), so I switched it off for that library in warnings.mk. The warning itself is done in TcValidity.check_class_pred. HOWEVER, when type inference fails we get a type error; and the error suppresses the (informative) warning. So as things stand, the warning only happens when it doesn't cause a problem. Not sure what to do about this, but this patch takes us forward, I think. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 10:29:49 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 10:29:49 -0000 Subject: [GHC] #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications In-Reply-To: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> References: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> Message-ID: <065.ae64cbab583af220ac545e259f67e2bb@haskell.org> #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1 checker) | Keywords: Resolution: | TypeApplications Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Simon Peyton Jones ): In [changeset:"edf54d72b5b8a6dd0deafa036dc16dcfc3fcb29f/ghc" edf54d72/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="edf54d72b5b8a6dd0deafa036dc16dcfc3fcb29f" Do not use defaulting in ambiguity check This fixes Trac #11947. See TcSimplify Note [No defaulting in the ambiguity check] }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 10:29:49 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 10:29:49 -0000 Subject: [GHC] #3990: UNPACK doesn't unbox data families In-Reply-To: <041.50e84dc9fb16fae63af270459584532c@haskell.org> References: <041.50e84dc9fb16fae63af270459584532c@haskell.org> Message-ID: <056.3a6454bc1433ecc54b861421bbab6eaf@haskell.org> #3990: UNPACK doesn't unbox data families -------------------------------------+------------------------------------- Reporter: rl | Owner: Type: bug | Status: new Priority: low | Milestone: Component: Compiler | Version: 7.0.3 Resolution: | Keywords: TypeFamilies Operating System: Unknown/Multiple | Architecture: Type of failure: Runtime | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Simon Peyton Jones ): In [changeset:"251a376baf9b3824a67fba3bfb9a72bc31cf8e33/ghc" 251a376/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="251a376baf9b3824a67fba3bfb9a72bc31cf8e33" Test Trac #3990 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 10:29:49 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 10:29:49 -0000 Subject: [GHC] #11941: stage restriction mentioned when an identifier is out of scope In-Reply-To: <045.43c65ddae49310b99f4cdd2fca2af7ea@haskell.org> References: <045.43c65ddae49310b99f4cdd2fca2af7ea@haskell.org> Message-ID: <060.0902657462b089dad43a82a6f3c5a286@haskell.org> #11941: stage restriction mentioned when an identifier is out of scope -------------------------------------+------------------------------------- Reporter: aavogt | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Simon Peyton Jones ): In [changeset:"c2b7a3d9f6ad946a2cb2773e96a377cc2216cb5b/ghc" c2b7a3d/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="c2b7a3d9f6ad946a2cb2773e96a377cc2216cb5b" Avoid double error on out-of-scope identifier Trac #11941 demonstrated a case where an out-of-scope error also gave rise to a (bogus and confusing) stage restriction message. It's caused by the fact that out-of-scope errors do not stop renaming, but rather return an "unbound name". We need to detect this in the stage-restriction test to avoid the double error. Easy fix. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 10:32:50 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 10:32:50 -0000 Subject: [GHC] #11948: GHC forgets constraints In-Reply-To: <047.96ae835fe7aab8f5bcec7c36bfd7fc23@haskell.org> References: <047.96ae835fe7aab8f5bcec7c36bfd7fc23@haskell.org> Message-ID: <062.bb4bcc19277297fe8a14feae624b04a7@haskell.org> #11948: GHC forgets constraints -------------------------------------+------------------------------------- Reporter: crockeea | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 7.10.3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | typecheck/should_fail/T11948 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * testcase: => typecheck/should_fail/T11948 * status: new => closed * resolution: => fixed Comment: OK I've added a warning for simplifiable class constraints. I anticipate a discussion about whether it should be on by default, but currently it is. Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 10:36:53 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 10:36:53 -0000 Subject: [GHC] #3990: UNPACK doesn't unbox data families In-Reply-To: <041.50e84dc9fb16fae63af270459584532c@haskell.org> References: <041.50e84dc9fb16fae63af270459584532c@haskell.org> Message-ID: <056.5592d45316a3b812d1711916eab18589@haskell.org> #3990: UNPACK doesn't unbox data families -------------------------------------+------------------------------------- Reporter: rl | Owner: Type: bug | Status: closed Priority: low | Milestone: Component: Compiler | Version: 7.0.3 Resolution: fixed | Keywords: TypeFamilies Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Runtime | Test Case: performance bug | simplCore/should_compile/T3990 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * testcase: => simplCore/should_compile/T3990 * status: new => closed * resolution: => fixed Comment: This commit [https://ghc.haskell.org/trac/ghc/changeset/353d8ae6fafe117a1cac4adf6f029a5baccc2780/ghc 353d8ae6/ghc] from #11348: {{{ In SCC analysis for instances as well as types/classes This big patch is in pursuit of Trac #11348. It is largely the work of Alex Veith (thank you!), with some follow-up simplification and refactoring from Simon PJ. The main payload is described in RnSource Note [Dependency analysis of type, class, and instance decls] which is pretty detailed. * There is a new data type HsDecls.TyClGroup, for a strongly connected component of type/class/instance/role decls. The hs_instds field of HsGroup disappears, in consequence This forces some knock-on changes, including a minor haddock submodule update Smaller, weakly-related things * I found that both the renamer and typechecker were building an identical env for RoleAnnots, so I put common code for RoleAnnotEnv in RnEnv. * I found that tcInstDecls1 had very clumsy error handling, so I put it together into TcInstDcls.doClsInstErrorChecks }}} deals with the ToDo in comment:13: {{{ Still to do: need to do knot-tying to allow instances to take effect within the same module. }}} So now we are good; e.g. comment:20 is fixed. I've added a test case. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 10:38:12 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 10:38:12 -0000 Subject: [GHC] #11941: stage restriction mentioned when an identifier is out of scope In-Reply-To: <045.43c65ddae49310b99f4cdd2fca2af7ea@haskell.org> References: <045.43c65ddae49310b99f4cdd2fca2af7ea@haskell.org> Message-ID: <060.879f570a7eef0ac8d9ea99ab9f6e4c79@haskell.org> #11941: stage restriction mentioned when an identifier is out of scope -------------------------------------+------------------------------------- Reporter: aavogt | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 8.0.1-rc2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: th/T11941 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * status: new => merge * testcase: => th/T11941 * milestone: => 8.0.2 Comment: Great error report, thank you. The fix is small and non-invasive, so I'll mark it as "merge". Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 10:39:56 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 10:39:56 -0000 Subject: [GHC] #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications In-Reply-To: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> References: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> Message-ID: <065.04b3e42eeeaec5f8130794bd552a2e83@haskell.org> #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1 checker) | Keywords: Resolution: fixed | TypeApplications Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Incorrect | Test Case: warning at compile-time | typecheck/should_compile/T11947 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * status: new => closed * testcase: => typecheck/should_compile/T11947 * resolution: => fixed Comment: Yes, that worked. The change is small and non-invasive, so could be merged; but it's also a corner case so I think I'll suggest leaving for 8.2 unless anyone yells. Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 11:02:51 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 11:02:51 -0000 Subject: [GHC] #7602: Threaded RTS performing badly on recent OS X (10.8?) In-Reply-To: <047.d4c76195d3e5b80e244f99bd757e13e7@haskell.org> References: <047.d4c76195d3e5b80e244f99bd757e13e7@haskell.org> Message-ID: <062.5f7658dbb62721434345fd9fe7727586@haskell.org> #7602: Threaded RTS performing badly on recent OS X (10.8?) -------------------------------------+------------------------------------- Reporter: simonmar | Owner: thoughtpolice Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Runtime System | Version: Resolution: | Keywords: thread-local | state, TLS clang Operating System: MacOS X | Architecture: x86_64 Type of failure: Runtime | (amd64) performance bug | Test Case: Blocked By: 7678 | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by carter): My builds use real gcc too :) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 12:20:19 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 12:20:19 -0000 Subject: [GHC] #11968: Document AMP in the deviations from the standard Message-ID: <047.56b750184d2d8910d5a6ee861076f297@haskell.org> #11968: Document AMP in the deviations from the standard -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Documentation | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- The manual includes a section describing deviations from the Haskell2010 standard [https://downloads.haskell.org/~ghc/master/users-guide/bugs.html here]. But this page makes no mention of `Applicative` being a superclass of `Monad`. We should fix this omission. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 12:42:26 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 12:42:26 -0000 Subject: [GHC] #11969: Version number of the binary package in 8.0.1-rc3 Message-ID: <042.ace849fafa686e5779cad0a0ffea9362@haskell.org> #11969: Version number of the binary package in 8.0.1-rc3 -------------------------------------+------------------------------------- Reporter: asr | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Core | Version: 8.0.1-rc3 Libraries | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Using 8.0.1-rc3 I got the following error: {{{ src/UHC/Util/Binary.hs:23:5: error: Ambiguous occurrence ?putList? It could refer to either ?Data.Binary.putList?, imported from ?Data.Binary? at src/UHC/Util/Binary.hs:30:1-18 (and originally defined in ?binary-0.8.2.1:Data.Binary.Class?) or ?UHC.Util.Binary.putList?, defined at src/UHC/Util/Binary.hs:118:1 }}} Note that error says `and originally defined in ?binary-0.8.2.1:Data.Binary.Class?`, but [http://hackage.haskell.org/package/binary-0.8.2.1 binary 0.8.2.1] in Hackage doesn't define `putList`. From this [https://github.com/kolmodin/binary/blob/master/changelog.md changelog], `putList` was added in binary 0.8.3.0. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 12:57:45 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 12:57:45 -0000 Subject: [GHC] #11948: GHC forgets constraints In-Reply-To: <047.96ae835fe7aab8f5bcec7c36bfd7fc23@haskell.org> References: <047.96ae835fe7aab8f5bcec7c36bfd7fc23@haskell.org> Message-ID: <062.433ef1f5a0f3c0a145883df757327653@haskell.org> #11948: GHC forgets constraints -------------------------------------+------------------------------------- Reporter: crockeea | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 7.10.3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | typecheck/should_fail/T11948 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by crockeea): Thanks for your work on this Simon. The warning is better than the current state of things. I do want to point out that while there are good reasons for simplifying constraints from instance declarations, it can also be a good thing **not** to. In particular, simplifying constraints to help GHC can result in code that has the LHS of the instance in many places, all of which have to be updated when the instance changes. Second, these simplified contexts might not make sense. For example: if I have an `instance (F a) => Foo (G a)` and a function `bar :: Foo (G a) => ...` where `bar` calls some function of `Foo` on type `G a`, GHC will now suggest (if I understand correctly) `bar :: (F a) => ...`. However, `bar` might not use any functions from `F` at all, and it may not involve the type `a` directly. Someone not intimately familiar with the code could be confused by this odd set of constraints. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 12:57:46 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 12:57:46 -0000 Subject: [GHC] #11970: Simplify Parent Message-ID: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> #11970: Simplify Parent -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- This commit {{{ commit 96621b1b4979f449e873513e9de8d806257c9493 Associate pattern synonyms with types in module exports }}} added `PatternSynonym` to `RdrName.Parent`. That's a pretty heavy hammer. It forces us to add `IsPatSyn` to `AvailInfo`, including binary serialisation etc. And I think it's needed in precisely one place, namely `RnNames.findPatSyns`. Right? The caller of `findPatSyns` and the associated `lookupChildren` is jolly obscure and I don't fully understand it. I **think** the issue is this: * I want to allow an export item `T( K )`, where `K` is a pattern synonym, even though it's not really (yet) associated with `T`. I think the goal of this code was to reject the `K` if it's a data constructor. But we also have a **further** check in `tcExports` to check that `K` has the right type. Surely it'd be better to nuke this `PatternSynonym` and `IsPatSyn` stuff? Just use`isDataOcc` in the export lookup part. Then the `tcExport` check will object if you write an export item like `Either( Just )`. Fewer moving parts! Matthew, does this make sense? Might you look at it? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 12:58:24 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 12:58:24 -0000 Subject: [GHC] #11970: Simplify Parent for patten synonyms (was: Simplify Parent) In-Reply-To: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> References: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> Message-ID: <061.8a9ee9edbc99aca396d17b5f69f2cf04@haskell.org> #11970: Simplify Parent for patten synonyms -------------------------------------+------------------------------------- Reporter: simonpj | Owner: mpickering Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * owner: => mpickering -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 14:23:10 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 14:23:10 -0000 Subject: [GHC] #11970: Simplify Parent for patten synonyms In-Reply-To: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> References: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> Message-ID: <061.940cf006064b164ca69ac362819b0f44@haskell.org> #11970: Simplify Parent for patten synonyms -------------------------------------+------------------------------------- Reporter: simonpj | Owner: mpickering Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by mpickering): That sounds much simpler. I can make the change. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 16:02:02 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 16:02:02 -0000 Subject: [GHC] #11971: Unify error messages that suggest enabling extensions Message-ID: <049.c19e54ed1863f55401e3b6a5f863e0dd@haskell.org> #11971: Unify error messages that suggest enabling extensions -------------------------------------+------------------------------------- Reporter: cocreature | Owner: Type: feature | Status: new request | Priority: low | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- The error messages that suggest to enable some extension currently have a lot of slightly different forms: Here are just a few examples (I?ll do a longer search if we come to a consensus) - Did you mean to enable _? - Did you mean to use _? - Perhaps you meant to use _? - Perhaps you intended to use _? These error messages are parsed by haskell-mode (and maybe other tooling as well) which is quite hard since they have so many different forms. I propose to change all of those to ?Did you mean to enable _?? since that I prefer enable over use here, but I don?t have any strong feelings towards the exact message as long as it?s consistent. So if the majority prefers something else I?m fine with that. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 16:02:53 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 16:02:53 -0000 Subject: [GHC] #11971: Unify error messages that suggest enabling extensions In-Reply-To: <049.c19e54ed1863f55401e3b6a5f863e0dd@haskell.org> References: <049.c19e54ed1863f55401e3b6a5f863e0dd@haskell.org> Message-ID: <064.b6cfb9106b13696870a56bfe8c186f20@haskell.org> #11971: Unify error messages that suggest enabling extensions -------------------------------------+------------------------------------- Reporter: cocreature | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by cocreature: @@ -3,2 +3,2 @@ - Here are just a few examples (I?ll do a longer search if we come to a - consensus) + Here are just a few examples (I?ll do a longer search if there is a + consensus to move forward with this ticket) New description: The error messages that suggest to enable some extension currently have a lot of slightly different forms: Here are just a few examples (I?ll do a longer search if there is a consensus to move forward with this ticket) - Did you mean to enable _? - Did you mean to use _? - Perhaps you meant to use _? - Perhaps you intended to use _? These error messages are parsed by haskell-mode (and maybe other tooling as well) which is quite hard since they have so many different forms. I propose to change all of those to ?Did you mean to enable _?? since that I prefer enable over use here, but I don?t have any strong feelings towards the exact message as long as it?s consistent. So if the majority prefers something else I?m fine with that. -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 16:05:21 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 16:05:21 -0000 Subject: [GHC] #11971: Unify error messages that suggest enabling extensions In-Reply-To: <049.c19e54ed1863f55401e3b6a5f863e0dd@haskell.org> References: <049.c19e54ed1863f55401e3b6a5f863e0dd@haskell.org> Message-ID: <064.43cd17c65fce1601b4ec8f58ca21f527@haskell.org> #11971: Unify error messages that suggest enabling extensions -------------------------------------+------------------------------------- Reporter: cocreature | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): I'm all for it! Let's not just use the same string, but rather put the string into a function and call that. I don't feel strongly about wording -- ask users. My instinct is "Perhaps you meant to use _". Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 16:06:30 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 16:06:30 -0000 Subject: [GHC] #4012: Compilation results are not deterministic In-Reply-To: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> References: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> Message-ID: <058.38a4812a3ff6a7fc393cae965931f49d@haskell.org> #4012: Compilation results are not deterministic -------------------------------------+------------------------------------- Reporter: kili | Owner: niteria Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 6.12.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: 11362 | Blocking: Related Tickets: #10424 | Differential Rev(s): Phab:D910, | Phab:D1073, Phab:D1133, Phab:D1192, | Phab:D1268, Phab:D1360, Phab:D1373, Wiki Page: | Phab:D1396, Phab:D1457, Phab:D1468, DeterministicBuilds | Phab:D1487, Phab:D1504, Phab:D1508 -------------------------------------+------------------------------------- Comment (by Bartosz Nitka ): In [changeset:"0f96686b10fd36d479a54c71a6e1753193e85347/ghc" 0f96686b/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="0f96686b10fd36d479a54c71a6e1753193e85347" Make benign non-determinism in pretty-printing more obvious This change takes us one step closer to being able to remove `varSetElemsWellScoped`. The end goal is to make every source of non-determinism obvious at the source level, so that when we achieve determinism it doesn't get broken accidentally. Test Plan: compile GHC Reviewers: simonmar, goldfire, simonpj, austin, bgamari Reviewed By: simonpj Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2123 GHC Trac Issues: #4012 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 16:12:54 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 16:12:54 -0000 Subject: [GHC] #11971: Unify error messages that suggest enabling extensions In-Reply-To: <049.c19e54ed1863f55401e3b6a5f863e0dd@haskell.org> References: <049.c19e54ed1863f55401e3b6a5f863e0dd@haskell.org> Message-ID: <064.517b6b314902d9abf34c5af55c30ab06@haskell.org> #11971: Unify error messages that suggest enabling extensions -------------------------------------+------------------------------------- Reporter: cocreature | Owner: Type: feature request | Status: new Priority: low | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by cocreature): Replying to [comment:2 simonpj]: > Let's not just use the same string, but rather put the string into a function and call that. That?s what I was planning to do. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 16:33:55 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 16:33:55 -0000 Subject: [GHC] #11948: GHC forgets constraints In-Reply-To: <047.96ae835fe7aab8f5bcec7c36bfd7fc23@haskell.org> References: <047.96ae835fe7aab8f5bcec7c36bfd7fc23@haskell.org> Message-ID: <062.896c6302b78eb2b4c3d2ac9653a6df52@haskell.org> #11948: GHC forgets constraints -------------------------------------+------------------------------------- Reporter: crockeea | Owner: Type: bug | Status: closed Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 7.10.3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | typecheck/should_fail/T11948 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Yes, I guess that's a good point. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 16:35:47 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 16:35:47 -0000 Subject: [GHC] #11970: Simplify Parent for patten synonyms In-Reply-To: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> References: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> Message-ID: <061.100a176bc472b751fe7e941366fec7e1@haskell.org> #11970: Simplify Parent for patten synonyms -------------------------------------+------------------------------------- Reporter: simonpj | Owner: mpickering Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by mpickering): I have looked a bit at this. The problem from last time is that when renaming exports we need to reject data constructors if they are exported with a type constructor which is not their parent. This is how the code was structured before my changes. 1. `tcg_rdr_env` is converted into a `kids_env` which is a map from `NameEnv [GlobalRdrElt]`. The intention of this map that we can lookup a type constructor and find which data constructors are allowed to be bundled with it. 2. `lookupChildren` uses this map to check that all bundled constructors are with the correct type constructor. The problem which I ran into was that as we only have `GlobalRdrElt`s, at this stage I couldn't see a way of telling whether a certain `GlobalRdrElt` arose from a data constructor or a pattern synonym. It seemed to me that the sole purpose of the `Parent` datatype was to indicate when it should be allowed to export an identifier with a certain type constructor (its parent). Because of this, I made the necessary changes to `Parent` to indicate whether a `GRE` arose from a pattern synonyn. Do you see a better way of structuring this? Unless it is possible to distinguish between a pattern synonym and a data constructor at this point then it isn't safe to ignore an entry in the export list as it might be a data constructor which we are not allowed to export with that type constructor. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 16:39:17 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 16:39:17 -0000 Subject: [GHC] #11970: Simplify Parent for patten synonyms In-Reply-To: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> References: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> Message-ID: <061.a0fc8add645f7688d0479dd2988e8df1@haskell.org> #11970: Simplify Parent for patten synonyms -------------------------------------+------------------------------------- Reporter: simonpj | Owner: mpickering Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Replying to [comment:3 mpickering]: > I have looked a bit at this. The problem from last time is that when renaming exports we need to reject data constructors if they are exported with a type constructor which is not their parent. As I mention above, I think this would best be done in `tcExports`, which is where you reject pattern synonyms that are exported with a type constructor that is not their parent. Would that solve it? I think it might make the `rnExport` code quite a bit simpler. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 16:46:50 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 16:46:50 -0000 Subject: [GHC] #4012: Compilation results are not deterministic In-Reply-To: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> References: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> Message-ID: <058.de3ac10daff0a762fa634f724ca5290b@haskell.org> #4012: Compilation results are not deterministic -------------------------------------+------------------------------------- Reporter: kili | Owner: niteria Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 6.12.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: 11362 | Blocking: Related Tickets: #10424 | Differential Rev(s): Phab:D910, | Phab:D1073, Phab:D1133, Phab:D1192, | Phab:D1268, Phab:D1360, Phab:D1373, Wiki Page: | Phab:D1396, Phab:D1457, Phab:D1468, DeterministicBuilds | Phab:D1487, Phab:D1504, Phab:D1508 -------------------------------------+------------------------------------- Comment (by Bartosz Nitka ): In [changeset:"03006f5ef2daedbbb7b0932b2c0e265f097cf2bf/ghc" 03006f5e/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="03006f5ef2daedbbb7b0932b2c0e265f097cf2bf" Get rid of varSetElemsWellScoped in abstractFloats It's possible to get rid of this use site in a local way and it introduces unneccessary nondeterminism. Test Plan: ./validate Reviewers: simonmar, goldfire, austin, bgamari, simonpj Reviewed By: simonpj Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2122 GHC Trac Issues: #4012 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 17:05:24 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 17:05:24 -0000 Subject: [GHC] #11970: Simplify Parent for patten synonyms In-Reply-To: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> References: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> Message-ID: <061.0bb48d10b0546c931adf5ac92d9cf3ab@haskell.org> #11970: Simplify Parent for patten synonyms -------------------------------------+------------------------------------- Reporter: simonpj | Owner: mpickering Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by mpickering): Do you know if `Parent` used for anything apart from this check? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 18:21:31 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 18:21:31 -0000 Subject: [GHC] #8990: Performance tests behave differently depending on presence of .hi file (even with -fforce-recomp) In-Reply-To: <045.abd2027873a2b9d9a2bc9aa2b4b749ea@haskell.org> References: <045.abd2027873a2b9d9a2bc9aa2b4b749ea@haskell.org> Message-ID: <060.87a1589cf972968c989277a444e56f2f@haskell.org> #8990: Performance tests behave differently depending on presence of .hi file (even with -fforce-recomp) -------------------------------------+------------------------------------- Reporter: ezyang | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Test Suite | Version: 7.9 Resolution: | Keywords: newcomer Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by akst): Hi, I was directed here from newcomers page. Just to clarify `ForceRecomp` is a constructor of `GeneralFlag`, and `Frorcerecomp` is actually `Opt_ ForceRecomp` now? Or should that be disregarded as the most recent suggestion on the issue is too "just remove hi files before perf tests"? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 21:01:57 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 21:01:57 -0000 Subject: [GHC] #11972: Weak pointers can cause segfault Message-ID: <050.a3d1412dcea074ef36e21df5ec4eaf36@haskell.org> #11972: Weak pointers can cause segfault -------------------------------------+------------------------------------- Reporter: ryantrinkle | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: x86_64 | Type of failure: Runtime crash (amd64) | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- The attached program segfaults. It appears to be nondeterministic, but on my machine, it occurs at least 95% of the time. Some small changes, such as removing the bang pattern, cause the segfault to become much less likely. {{{ weakPointerSegfault: internal error: ASSERTION FAILED: file rts/sm/GCAux.c, line 44 (GHC version 8.0.0.20160411 for x86_64_unknown_linux) Please report this as a GHC bug: http://www.haskell.org/ghc/reportabug Aborted (core dumped) }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 21:04:50 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 21:04:50 -0000 Subject: [GHC] #11972: Weak pointers can cause segfault In-Reply-To: <050.a3d1412dcea074ef36e21df5ec4eaf36@haskell.org> References: <050.a3d1412dcea074ef36e21df5ec4eaf36@haskell.org> Message-ID: <065.5fc075cbf38f3fe97cb2cc5ca3330f4a@haskell.org> #11972: Weak pointers can cause segfault -------------------------------------+------------------------------------- Reporter: ryantrinkle | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: x86_64 | (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by ryantrinkle): * Attachment "weakPointerSegfault.hs" added. weakPointerSegfault.hs -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 21:14:57 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 21:14:57 -0000 Subject: [GHC] #11972: Weak pointers can cause segfault In-Reply-To: <050.a3d1412dcea074ef36e21df5ec4eaf36@haskell.org> References: <050.a3d1412dcea074ef36e21df5ec4eaf36@haskell.org> Message-ID: <065.60e02d8526737fe6124c153cc9ede367@haskell.org> #11972: Weak pointers can cause segfault -------------------------------------+------------------------------------- Reporter: ryantrinkle | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: x86_64 | (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by niteria): It also reproduces on HEAD. I've run it in gdb with a breakpoint on the address it's complaining about: https://phabricator.haskell.org/P107 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 22 21:51:42 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 22 Apr 2016 21:51:42 -0000 Subject: [GHC] #11970: Simplify Parent for patten synonyms In-Reply-To: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> References: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> Message-ID: <061.e5d568ab24dfa06c5ce086cccc1d257d@haskell.org> #11970: Simplify Parent for patten synonyms -------------------------------------+------------------------------------- Reporter: simonpj | Owner: mpickering Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): So far as I know, that's all the `PatternSynonym` constructor of `Parent` is used for. Just use `NoParent` instead. And kill `IsPatSyn` too. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 01:08:28 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 01:08:28 -0000 Subject: [GHC] #11973: Simplifier ticks exhausted with complex list literal. Message-ID: <047.442725a6249a77f492a5a7558a57567f@haskell.org> #11973: Simplifier ticks exhausted with complex list literal. -------------------------------------+------------------------------------- Reporter: Lokathor | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Windows Architecture: | Type of failure: Compile-time Unknown/Multiple | crash Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- So I had a working version of a module that was too slow: https://github.com/Lokathor/ludolib/blob/6e69f87762c88d7909ca259ffe69141ea4b707c0/src/Util/AutomataGen.hs#L167 and then I tried to rearrange things so that the checking could short- circuit a bit and run faster. I came up with this: https://gist.github.com/Lokathor/d1e4a8cd6268835a2403423fb180a71d#file- automatagencrashesghc-hs-L172 Which loads and runs just fine in GHCi, but then when I go to compile it into a binary for benchmarking I got the following: {{{ ghc.exe: panic! (the 'impossible' happened) (GHC version 7.10.3 for x86_64-unknown-mingw32): Simplifier ticks exhausted When trying UnfoldingDone a_siVC To increase the limit, use -fsimpl-tick-factor=N (default 100) If you need to do this, let GHC HQ know, and what factor you needed To see detailed counts use -ddump-simpl-stats Total ticks: 294802 Please report this as a GHC bug: http://www.haskell.org/ghc/reportabug }}} Setting the factor up to 1k caused it to crash out with the same problem. Setting the factor up to 10k caused GHC to just eat up nearly all of my RAM (11GB) and then stall out until I killed it a few minutes later. I tried not using -O2 during compilation, but it had the same problem anyway. With some IRC help, it was suggested to add the `-fsimple-list- literals` flag, which makes things compile and run just fine (and with the speed gain that I'd hoped for). So things work now, for some definition of "work", though I was advised to report this bad behavior anyway. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 01:40:02 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 01:40:02 -0000 Subject: [GHC] #11969: Version number of the binary package in 8.0.1-rc3 In-Reply-To: <042.ace849fafa686e5779cad0a0ffea9362@haskell.org> References: <042.ace849fafa686e5779cad0a0ffea9362@haskell.org> Message-ID: <057.e782b219aa85f0ed8832323705687473@haskell.org> #11969: Version number of the binary package in 8.0.1-rc3 -------------------------------------+------------------------------------- Reporter: asr | Owner: Type: bug | Status: closed Priority: highest | Milestone: Component: Core Libraries | Version: 8.0.1-rc3 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by asr): * status: new => closed * resolution: => fixed Comment: The issue was fixed in 8.0.1-rc4. Thanks! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 02:28:29 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 02:28:29 -0000 Subject: [GHC] #11974: `default` declaration doesn't allow higher-kinded types Message-ID: <047.2c4be3a4c34290389efa6f45ff0342fe@haskell.org> #11974: `default` declaration doesn't allow higher-kinded types -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Since we now have #10971, I would expect the following to work: {{{ {-# LANGUAGE ExtendedDefaultRules #-} module Bug where default (Maybe, []) }}} But it doesn't. Sadly, the default default list contains `[]`, but the user can never set this. Fix on the way. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 02:32:54 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 02:32:54 -0000 Subject: [GHC] #10963: Beginner-targeted language extension In-Reply-To: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> References: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> Message-ID: <060.c826e1510af674df90a0b86a2f1d287f@haskell.org> #10963: Beginner-targeted language extension -------------------------------------+------------------------------------- Reporter: kanetw | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): In a fit of frustration at the thought of teaching Haskell in a year's time without this feature, I've implemented it. Phab patch to be posted shortly. Here's the user's guide description. Bikeshedding and design improvements welcome. {{{ .. ghci-cmd:: :type-def; (expression) .. ghci-cmd:: :td; (expression) Infers and prints the type of (expression), defaulting type variables if possible. In this mode, if the inferred type is constrained by any interactive class (``Num``, ``Show``, ``Eq``, ``Ord``, ``Foldable``, or ``Traversable``), the constrained type variable(s) are defaulted according to the rules described under :ghc- flag:`-XExtendedDefaultRules`. This mode is quite useful when the inferred type is quite general (such as for ``foldr``) and it may be helpful to see a more concrete instantiation. }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 02:35:42 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 02:35:42 -0000 Subject: [GHC] #11975: New GHCi command to print out the type of an expression without instantiating Message-ID: <047.e04c32cf521defebb6ebe9369a8011c1@haskell.org> #11975: New GHCi command to print out the type of an expression without instantiating -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: GHCi | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- #11376 changed the meaning of `:type` to deeply instantiate a type before printing. This means that we can't see which variables were specified and which were inferred. I propose `:type-spec` (please suggest a better name) that does not instantiate first. Phab patch to be posted shortly. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 02:50:14 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 02:50:14 -0000 Subject: [GHC] #11974: `default` declaration doesn't allow higher-kinded types In-Reply-To: <047.2c4be3a4c34290389efa6f45ff0342fe@haskell.org> References: <047.2c4be3a4c34290389efa6f45ff0342fe@haskell.org> Message-ID: <062.f6093f99ff014400d56b8038e3e55ca7@haskell.org> #11974: `default` declaration doesn't allow higher-kinded types -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * status: new => patch * differential: => Phab:D2136 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 02:50:30 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 02:50:30 -0000 Subject: [GHC] #11975: New GHCi command to print out the type of an expression without instantiating In-Reply-To: <047.e04c32cf521defebb6ebe9369a8011c1@haskell.org> References: <047.e04c32cf521defebb6ebe9369a8011c1@haskell.org> Message-ID: <062.9a0016391b69612d47b4c026f6e2e933@haskell.org> #11975: New GHCi command to print out the type of an expression without instantiating -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: GHCi | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * status: new => patch * differential: => Phab:D2136 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 02:50:49 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 02:50:49 -0000 Subject: [GHC] #10963: Beginner-targeted language extension In-Reply-To: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> References: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> Message-ID: <060.bebc03da73285da3c2779e1a79f255e5@haskell.org> #10963: Beginner-targeted language extension -------------------------------------+------------------------------------- Reporter: kanetw | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * status: new => patch * differential: => Phab:D2136 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 09:47:00 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 09:47:00 -0000 Subject: [GHC] #4114: Add a flag to remove/delete intermediate files generated by GHC In-Reply-To: <044.5bde4abfdaa56d5ae586d71d6ff93b9d@haskell.org> References: <044.5bde4abfdaa56d5ae586d71d6ff93b9d@haskell.org> Message-ID: <059.8c822ab1ef562131d60d0c292a2ce47a@haskell.org> #4114: Add a flag to remove/delete intermediate files generated by GHC -------------------------------------+------------------------------------- Reporter: guest | Owner: kaiha Type: feature request | Status: patch Priority: normal | Milestone: 8.2.1 Component: Compiler | Version: 6.10.4 Resolution: | Keywords: newcomer Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: | driver/T4114a,b,c,d Blocked By: | Blocking: Related Tickets: #2258 | Differential Rev(s): Phab:D2021 Wiki Page: | Phab:D2050 -------------------------------------+------------------------------------- Changes (by thomie): * testcase: => driver/T4114a,b,c,d * milestone: => 8.2.1 Comment: I think this is done, it will be in ghc 8.2. Thanks kaiha! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 09:58:35 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 09:58:35 -0000 Subject: [GHC] #2258: ghc --cleanup In-Reply-To: <044.6a7e7db2214398b58538f207783c755e@haskell.org> References: <044.6a7e7db2214398b58538f207783c755e@haskell.org> Message-ID: <059.8531baa78bf9dddd518705d7b47e95cd@haskell.org> #2258: ghc --cleanup -------------------------------------+------------------------------------- Reporter: claus | Owner: Type: feature request | Status: new Priority: lowest | Milestone: Component: Compiler | Version: 6.8.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4114 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by thomie): * keywords: newcomer => Comment: With #4114 done (though not mentioned in the release notes), you can now say {{{ $ ghc Test.hs -no-keep-hi-files -no-keep-o-files }}} ... and the `.hi` and `.o` files won't be kept. If you had forgotton to use those flags at first: {{{ $ ghc Test.hs $ ls *.hi *.o Test.hi Test.o }}} ... you can combine the mentioned flags with `-fforce-recomp` to delete the `.o` and `.hi` files: {{{ $ ghc Test.hs -no-keep-hi-files -no-keep-o-files -fforce-recomp $ ls *.hi *.o }}} Do we still need a separate `--cleanup` flag? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 10:04:55 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 10:04:55 -0000 Subject: [GHC] #8990: Performance tests behave differently depending on presence of .hi file (even with -fforce-recomp) In-Reply-To: <045.abd2027873a2b9d9a2bc9aa2b4b749ea@haskell.org> References: <045.abd2027873a2b9d9a2bc9aa2b4b749ea@haskell.org> Message-ID: <060.5343a65337f4842e234d9ea55e5fca2b@haskell.org> #8990: Performance tests behave differently depending on presence of .hi file (even with -fforce-recomp) -------------------------------------+------------------------------------- Reporter: ezyang | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Test Suite | Version: 7.9 Resolution: | Keywords: newcomer Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by thomie): You can ignore the hint about `Opt_ ForceRecomp`. One possible solution: * Add `-no-keep-hi-files` (see #4114) for performance tests to the function `get_compiler_flags` in the file `testsuite/driver/testlib.py`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 11:02:02 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 11:02:02 -0000 Subject: [GHC] #11976: Error message mentions impredicative polymorphism Message-ID: <051.4851271d9a01683dfc42210ca66e777c@haskell.org> #11976: Error message mentions impredicative polymorphism -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- When we apply `Lens` to too many arguments in the `:kind` command we get a sensible error message {{{ ghci> type Lens s a = forall f. Functor f => (a -> f a) -> (s -> f s) ghci> :kind Lens _ _ Lens _ _ :: * ghci> :kind Lens _ _ _ :1:1: error: ? Expecting one fewer argument to ?Lens t0 t1? Expected kind ?k0 -> k1?, but ?Lens t0 t1? has kind ?*? ? In the type ?Lens _ _ _? }}} but use the same in a type signature or annotation and it complains about impredicative polymorphism {{{ ghci> :t undefined :: Lens _ _ _ :1:1: error: ? Illegal polymorphic type: Lens _ _1 GHC doesn't yet support impredicative polymorphism ? In the expression: undefined :: Lens _ _ _ ghci> a :: Lens _ _ _; a = undefined :6:1: error: Illegal polymorphic type: Lens _ _1 GHC doesn't yet support impredicative polymorphism }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 13:12:41 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 13:12:41 -0000 Subject: [GHC] #11977: ghc doesn't agree with its own inferred pattern type Message-ID: <051.890e2a0ef534fc631508076f831baaf7@haskell.org> #11977: ghc doesn't agree with its own inferred pattern type -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- GHCi, version 8.1.20160419: {{{ pattern F a <- (($ 'a') -> a) }}} {{{ >>> :i F pattern F :: b -> Char -> b -- Defined at /tmp/tTaa.hs:24:1 }}} Putting them together: {{{ -- tTaa.hs:25:9: error: ? -- ? Pattern synonym ?F? has one argument -- but its type signature has two -- ? In the declaration for pattern synonym ?F? Compilation failed. pattern F :: b -> Char -> b pattern F a <- (($ 'a') -> a) }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 14:31:00 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 14:31:00 -0000 Subject: [GHC] #11963: GHC introduces kind equality without TypeInType In-Reply-To: <045.559d5b56cb415a48409d0ecee32c5ab8@haskell.org> References: <045.559d5b56cb415a48409d0ecee32c5ab8@haskell.org> Message-ID: <060.a2209c32ea38735622672c5085659610@haskell.org> #11963: GHC introduces kind equality without TypeInType -------------------------------------+------------------------------------- Reporter: ezyang | Owner: goldfire Type: bug | Status: new Priority: normal | Milestone: Component: Compiler (Type | Version: 8.0.1-rc2 checker) | Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * cc: RyanGlScott (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 15:46:00 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 15:46:00 -0000 Subject: [GHC] #11972: Weak pointers can cause segfault In-Reply-To: <050.a3d1412dcea074ef36e21df5ec4eaf36@haskell.org> References: <050.a3d1412dcea074ef36e21df5ec4eaf36@haskell.org> Message-ID: <065.733225e07b78b07765a33a385ec142bc@haskell.org> #11972: Weak pointers can cause segfault -------------------------------------+------------------------------------- Reporter: ryantrinkle | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: x86_64 | (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: #11108 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by jme): * related: => #11108 Comment: This appears to be the same issue as #11108. If you need a workaround, try running with `+RTS -G1 -RTS`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 15:47:32 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 15:47:32 -0000 Subject: [GHC] #11108: Weak references related crash In-Reply-To: <046.1b25661a2ebf5aa23d3a93aae541239e@haskell.org> References: <046.1b25661a2ebf5aa23d3a93aae541239e@haskell.org> Message-ID: <061.b9095666d4fbd0fb0ae1f5f354fc80dc@haskell.org> #11108: Weak references related crash -------------------------------------+------------------------------------- Reporter: Saulzar | Owner: jme Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Runtime System | Version: 7.10.2 Resolution: | Keywords: Operating System: Linux | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: #11746,#11972 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by jme): * related: #11746 => #11746,#11972 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 15:53:33 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 15:53:33 -0000 Subject: [GHC] #11972: Weak pointers can cause segfault In-Reply-To: <050.a3d1412dcea074ef36e21df5ec4eaf36@haskell.org> References: <050.a3d1412dcea074ef36e21df5ec4eaf36@haskell.org> Message-ID: <065.5c4b2f1dbbd654d1d7232d7660419383@haskell.org> #11972: Weak pointers can cause segfault -------------------------------------+------------------------------------- Reporter: ryantrinkle | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 8.0.1-rc3 Resolution: duplicate | Keywords: Operating System: Unknown/Multiple | Architecture: x86_64 | (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: #11108 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by niteria): * status: new => closed * resolution: => duplicate Comment: You're right, this is exactly the same as #11108, I poked around yesterday and reached the same conclusion as you here: https://ghc.haskell.org/trac/ghc/ticket/11108#comment:7 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 19:28:38 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 19:28:38 -0000 Subject: [GHC] #11108: Weak references related crash In-Reply-To: <046.1b25661a2ebf5aa23d3a93aae541239e@haskell.org> References: <046.1b25661a2ebf5aa23d3a93aae541239e@haskell.org> Message-ID: <061.a1a6ae6c8b4ae066a7bbcc1a8f60610e@haskell.org> #11108: Weak references related crash -------------------------------------+------------------------------------- Reporter: Saulzar | Owner: jme Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Runtime System | Version: 7.10.2 Resolution: | Keywords: Operating System: Linux | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: #11746,#11972 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by ryantrinkle): Hi jme/akio, Is there any way I can help get this resolved? It's a pretty serious issue for code that uses Weak pointers heavily, and -G1 seems like it may create a performance issue in production applications. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 19:38:25 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 19:38:25 -0000 Subject: [GHC] #11108: Weak references related crash In-Reply-To: <046.1b25661a2ebf5aa23d3a93aae541239e@haskell.org> References: <046.1b25661a2ebf5aa23d3a93aae541239e@haskell.org> Message-ID: <061.c4bb38dd5e18fa395ebfda53c95ee3e3@haskell.org> #11108: Weak references related crash -------------------------------------+------------------------------------- Reporter: Saulzar | Owner: jme Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Runtime System | Version: 7.10.2 Resolution: | Keywords: Operating System: Linux | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: #11746,#11972 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by ezyang): If it's a regression from per-generation weak pointer lists, we can just revert that commit, right? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 23 22:12:49 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 23 Apr 2016 22:12:49 -0000 Subject: [GHC] #11108: Weak references related crash In-Reply-To: <046.1b25661a2ebf5aa23d3a93aae541239e@haskell.org> References: <046.1b25661a2ebf5aa23d3a93aae541239e@haskell.org> Message-ID: <061.5872db3dd401704e433556a8e2f8b69f@haskell.org> #11108: Weak references related crash -------------------------------------+------------------------------------- Reporter: Saulzar | Owner: Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Runtime System | Version: 7.10.2 Resolution: | Keywords: Operating System: Linux | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: #11746,#11972 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by jme): * owner: jme => Comment: Replying to [comment:14 ezyang]: > If it's a regression from per-generation weak pointer lists, we can just revert that commit, right? Yes, that should be fine. I'm swamped at the moment, so if someone could take care of this, that would be great. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 24 02:56:43 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 24 Apr 2016 02:56:43 -0000 Subject: [GHC] #4820: "Invalid object in isRetainer" when doing retainer profiling in GHC 7 branch In-Reply-To: <049.7962690c1cad7c1dc6772c5aaee21bae@haskell.org> References: <049.7962690c1cad7c1dc6772c5aaee21bae@haskell.org> Message-ID: <064.d74edc6a161df44d87bed0a07ea2f0b1@haskell.org> #4820: "Invalid object in isRetainer" when doing retainer profiling in GHC 7 branch ----------------------------------+-------------------------------------- Reporter: dleuschner | Owner: Type: bug | Status: new Priority: high | Milestone: 7.0.2 Component: Profiling | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | ----------------------------------+-------------------------------------- Changes (by carter): * status: closed => new * resolution: invalid => * version: 7.0.1 => 7.10.3 * os: Linux => MacOS X Comment: On a highly concurrent application at work, we've seen this exact same sort of crash when doing retainer profiling. Don't have a repro yes, but this is a real crash. Not sure if I can replicate it on 8.0rc but I'll try to poke at it -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 24 02:57:58 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 24 Apr 2016 02:57:58 -0000 Subject: [GHC] #4820: "Invalid object in isRetainer" when doing retainer profiling in GHC 7 branch In-Reply-To: <049.7962690c1cad7c1dc6772c5aaee21bae@haskell.org> References: <049.7962690c1cad7c1dc6772c5aaee21bae@haskell.org> Message-ID: <064.442eb09f722ada2bd2dda1fc6622007a@haskell.org> #4820: "Invalid object in isRetainer" when doing retainer profiling in GHC 7 branch ----------------------------------+-------------------------------------- Reporter: dleuschner | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.2 Component: Profiling | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | ----------------------------------+-------------------------------------- Changes (by carter): * milestone: 7.0.2 => 8.0.2 Comment: Marking the milestone as 8.0.2 because it shouldn't be a release blocker , but is a real crash. And profiling shouldn't ;) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 24 02:59:16 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 24 Apr 2016 02:59:16 -0000 Subject: [GHC] #4820: "Invalid object in isRetainer" when doing retainer profiling in GHC 7 branch In-Reply-To: <049.7962690c1cad7c1dc6772c5aaee21bae@haskell.org> References: <049.7962690c1cad7c1dc6772c5aaee21bae@haskell.org> Message-ID: <064.af98d6703b016cac11821590016454c3@haskell.org> #4820: "Invalid object in isRetainer" when doing retainer profiling in GHC 7 branch ----------------------------------+-------------------------------------- Reporter: dleuschner | Owner: Type: bug | Status: new Priority: high | Milestone: 8.0.2 Component: Profiling | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | ----------------------------------+-------------------------------------- Comment (by carter): The code at work that trips this is open source, but I'm not sure how reproducible the crash is atm -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 24 16:03:51 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 24 Apr 2016 16:03:51 -0000 Subject: [GHC] #9253: "internal error: evacuate(static): strange closure type 0" when running in QEMU In-Reply-To: <047.4e8e56fbd7ab758cd0cf0b782b39823c@haskell.org> References: <047.4e8e56fbd7ab758cd0cf0b782b39823c@haskell.org> Message-ID: <062.51a3679089ee018c9fedce9fa556f4ca@haskell.org> #9253: "internal error: evacuate(static): strange closure type 0" when running in QEMU -------------------------------------+------------------------------------- Reporter: ocharles | Owner: simonmar Type: bug | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 7.8.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by ocharles): I am no longer working at the same job where we were seeing this error. Perhaps this ticket should be closed and re-opened if it happens again (either by me or someone else), as I'll be unable to provide any extra information. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 24 19:41:05 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 24 Apr 2016 19:41:05 -0000 Subject: [GHC] #9370: unfolding info as seen when building a module depends on flags in a previously-compiled module In-Reply-To: <045.e2e9bbeb8a2151371c0306e4a7b88a0a@haskell.org> References: <045.e2e9bbeb8a2151371c0306e4a7b88a0a@haskell.org> Message-ID: <060.2dfd8743399cfc01478ab87d8699ca93@haskell.org> #9370: unfolding info as seen when building a module depends on flags in a previously-compiled module -------------------------------------+------------------------------------- Reporter: carter | Owner: richardfung Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 7.8.3 Resolution: | Keywords: newcomers Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: #8635 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by richardfung): * owner: => richardfung -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 24 19:42:21 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 24 Apr 2016 19:42:21 -0000 Subject: [GHC] #9253: "internal error: evacuate(static): strange closure type 0" when running in QEMU In-Reply-To: <047.4e8e56fbd7ab758cd0cf0b782b39823c@haskell.org> References: <047.4e8e56fbd7ab758cd0cf0b782b39823c@haskell.org> Message-ID: <062.7c5eda94142b70a4da8490791d635e6c@haskell.org> #9253: "internal error: evacuate(static): strange closure type 0" when running in QEMU -------------------------------------+------------------------------------- Reporter: ocharles | Owner: simonmar Type: bug | Status: closed Priority: normal | Milestone: Component: Runtime System | Version: 7.8.2 Resolution: worksforme | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonmar): * status: new => closed * resolution: => worksforme Comment: Thanks @ocharles, feel free to re-open if it happens again. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 24 21:27:49 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 24 Apr 2016 21:27:49 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEV Message-ID: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEV ----------------------------------------+--------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Keywords: | Operating System: MacOS X Architecture: Unknown/Multiple | Type of failure: None/Unknown Test Case: | Blocked By: Blocking: | Related Tickets: 4820 Differential Rev(s): | Wiki Page: ----------------------------------------+--------------------------------- on my 4 core macbook pro i can reliably get a sigsev when running the shake test suite with profiling enabled and the RTS flags +RTS -hb -N10 steps to reproduce (with either ghc 7.10.3 or an 8.0 RC4 build) {{{ cabal get --source shake cd shake # shake master was commit f0c0ce8d4c2c017b9a26b5d4258e07d881f4cde1 as of time of testing # but problem should happen with eg 0.15.6 too cabal install # this is so that the shake test suite can fine the right template file cabal install --only-dep --enable-tests --enable-profiling ./dist/build/shake-test/shake-test +RTS -hb -N10 }}} this last command yields the error {{{ ****************************************************************** ** Running shake test suite, run with '--help' to see arguments ** ****************************************************************** fish: './dist/build/shake-test/shake-t?' terminated by signal SIGSEGV (Address boundary error) }}} i can also trigger the bug reported in #4820 by running the test suite with the -hr flag rather than -hb I'm marking this as HIGHEST so it can be discussed, because the profiiling build of the shake test suite only seems to crash *if* the test suite is run with -hb or -hr flags, which seems like a pretty nasty bug (which colleagues have it in other code) nb: `./dist/build/shake-test/shake-test +RTS -N10 ` runs into a not enough stack space error before the shake test suite completes, but `./dist/build/shake-test/shake-test +RTS -K1G -N10 ` seems to work fine, though the crashes happen super early in the gargantuan test suite the analogous output for reproducing #4820 is : {{{ ./dist/build/shake-test/shake-test +RTS -hr -N10 ****************************************************************** ** Running shake test suite, run with '--help' to see arguments ** ****************************************************************** Longest file modification time lag was 1005ms ## BUILD tar test ## TESTING tar ## BUILD tar --abbrev=output=$OUT -j3 Writing report to $OUT/tar/report.html Build completed in 0:01m ## BUILD tar --no-build --report=- Warning: No want/action statements, nothing to do Writing report to output/tar/report.html Writing report to - * This database has tracked 1 runs. * There are 4 rules (4 rebuilt in the last run). * Building required 1 traced commands (1 in the last run). * The total (unparallelised) time is 0.01s of which 0.01s is traced commands. * The longest rule takes 0.01s (output/tar/result.tar), and the longest traced command takes 0.01s (tar). * Last run gave an average parallelism of 0.44 times over 0.01s. Build completed in 0:01m ## BUILD tar Writing report to output/tar/report.html Build completed in 0:01m ## FINISHED TESTING tar ## BUILD self test ## TESTING self ## BUILD self --abbrev=output=$OUT -j3 Writing report to $OUT/self/report.html Build completed in 0:01m ## BUILD self --no-build --report=- Warning: No want/action statements, nothing to do Writing report to output/self/report.html Writing report to - * This database has tracked 2 runs. * There are 460 rules (2 rebuilt in the last run). * Building required 56 traced commands (1 in the last run). * The total (unparallelised) time is 22.73s of which 22.33s is traced commands. * The longest rule takes 1.11s (output/self/Development/Shake/Types.o output/self/Development/Shake/Types.hi), and the longest traced command takes 1.11s (ghc). * Last run gave an average parallelism of 0.78 times over 0.05s. Build completed in 0:01m ## BUILD self shake-test: internal error: Invalid object in isRetainer(): 39 (GHC version 8.0.0.20160421 for x86_64_apple_darwin) Please report this as a GHC bug: http://www.haskell.org/ghc/reportabug }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 24 21:28:14 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 24 Apr 2016 21:28:14 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEV In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.e1dd9e0d197607a6776ba90f0cbeaffd@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Changes (by carter): * related: 4820 => #4820 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 24 21:29:39 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 24 Apr 2016 21:29:39 -0000 Subject: [GHC] #4820: "Invalid object in isRetainer" when doing retainer profiling in GHC 7 branch In-Reply-To: <049.7962690c1cad7c1dc6772c5aaee21bae@haskell.org> References: <049.7962690c1cad7c1dc6772c5aaee21bae@haskell.org> Message-ID: <064.d300ae6675adb537445f77801dc0348f@haskell.org> #4820: "Invalid object in isRetainer" when doing retainer profiling in GHC 7 branch ----------------------------------+-------------------------------------- Reporter: dleuschner | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.2 Component: Profiling | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: #11978 | Differential Rev(s): Wiki Page: | ----------------------------------+-------------------------------------- Changes (by carter): * priority: high => highest * version: 7.10.3 => 8.0.1 * related: => #11978 Comment: In working out how to reproduce this bug, I also found another bug, steps for reproducing can be found in #11978 marking as highest because its a reproducible crash -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 24 21:51:21 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 24 Apr 2016 21:51:21 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV (was: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEV) In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.396382413d37db2613465f42e72f1fd5@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Description changed by carter: @@ -1,1 +1,1 @@ - on my 4 core macbook pro i can reliably get a sigsev when running the + on my 4 core macbook pro i can reliably get a sigsegv when running the New description: on my 4 core macbook pro i can reliably get a sigsegv when running the shake test suite with profiling enabled and the RTS flags +RTS -hb -N10 steps to reproduce (with either ghc 7.10.3 or an 8.0 RC4 build) {{{ cabal get --source shake cd shake # shake master was commit f0c0ce8d4c2c017b9a26b5d4258e07d881f4cde1 as of time of testing # but problem should happen with eg 0.15.6 too cabal install # this is so that the shake test suite can fine the right template file cabal install --only-dep --enable-tests --enable-profiling ./dist/build/shake-test/shake-test +RTS -hb -N10 }}} this last command yields the error {{{ ****************************************************************** ** Running shake test suite, run with '--help' to see arguments ** ****************************************************************** fish: './dist/build/shake-test/shake-t?' terminated by signal SIGSEGV (Address boundary error) }}} i can also trigger the bug reported in #4820 by running the test suite with the -hr flag rather than -hb I'm marking this as HIGHEST so it can be discussed, because the profiiling build of the shake test suite only seems to crash *if* the test suite is run with -hb or -hr flags, which seems like a pretty nasty bug (which colleagues have it in other code) nb: `./dist/build/shake-test/shake-test +RTS -N10 ` runs into a not enough stack space error before the shake test suite completes, but `./dist/build/shake-test/shake-test +RTS -K1G -N10 ` seems to work fine, though the crashes happen super early in the gargantuan test suite the analogous output for reproducing #4820 is : {{{ ./dist/build/shake-test/shake-test +RTS -hr -N10 ****************************************************************** ** Running shake test suite, run with '--help' to see arguments ** ****************************************************************** Longest file modification time lag was 1005ms ## BUILD tar test ## TESTING tar ## BUILD tar --abbrev=output=$OUT -j3 Writing report to $OUT/tar/report.html Build completed in 0:01m ## BUILD tar --no-build --report=- Warning: No want/action statements, nothing to do Writing report to output/tar/report.html Writing report to - * This database has tracked 1 runs. * There are 4 rules (4 rebuilt in the last run). * Building required 1 traced commands (1 in the last run). * The total (unparallelised) time is 0.01s of which 0.01s is traced commands. * The longest rule takes 0.01s (output/tar/result.tar), and the longest traced command takes 0.01s (tar). * Last run gave an average parallelism of 0.44 times over 0.01s. Build completed in 0:01m ## BUILD tar Writing report to output/tar/report.html Build completed in 0:01m ## FINISHED TESTING tar ## BUILD self test ## TESTING self ## BUILD self --abbrev=output=$OUT -j3 Writing report to $OUT/self/report.html Build completed in 0:01m ## BUILD self --no-build --report=- Warning: No want/action statements, nothing to do Writing report to output/self/report.html Writing report to - * This database has tracked 2 runs. * There are 460 rules (2 rebuilt in the last run). * Building required 56 traced commands (1 in the last run). * The total (unparallelised) time is 22.73s of which 22.33s is traced commands. * The longest rule takes 1.11s (output/self/Development/Shake/Types.o output/self/Development/Shake/Types.hi), and the longest traced command takes 1.11s (ghc). * Last run gave an average parallelism of 0.78 times over 0.05s. Build completed in 0:01m ## BUILD self shake-test: internal error: Invalid object in isRetainer(): 39 (GHC version 8.0.0.20160421 for x86_64_apple_darwin) Please report this as a GHC bug: http://www.haskell.org/ghc/reportabug }}} -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 24 21:55:44 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 24 Apr 2016 21:55:44 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.c02744a6085b89f1737d0183ecc5f9ec@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Comment (by carter): found a simple reproducer for the sigsevg {{{ echo "main = putStrLn \"hii\"" > main.hs ghc -prof -rtsopts -threaded main.hs ./main +RTS -hb -N10 hii fish: './main +RTS -hb -N10' terminated by signal SIGSEGV (Address boundary error) }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sun Apr 24 21:57:12 2016 From: ghc-devs at haskell.org (GHC) Date: Sun, 24 Apr 2016 21:57:12 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.035ae10f9b46f72c6a1f308f45018eb8@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Comment (by carter): without setting -N to any value, the hello world program doesnt crash, but for any f>1 `-Nf`` seems to trigger the crash. at least with 7.10.3 as the compiler -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 01:28:11 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 01:28:11 -0000 Subject: [GHC] #11979: ghc: panic! (the 'impossible' happened) Message-ID: <049.711c423e73df29e2ed91fe44485c095f@haskell.org> #11979: ghc: panic! (the 'impossible' happened) -------------------------------------+------------------------------------- Reporter: javierlopm | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.6.3 Keywords: panic | Operating System: Linux Architecture: | Type of failure: Documentation Unknown/Multiple | bug Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Error when compiling, maybe parser wasn't able to detect error at "type TokContent = { position :: Pos, content::String }" ghc: panic! (the 'impossible' happened) (GHC version 7.6.3 for x86_64-unknown-linux): tc_hs_type: record {{{#!hs {-# LANGUAGE DeriveDataTypeable #-} module Tokens( Token (..), Pos ) where import Data.Data(toConstr,Data,Typeable) type Pos = (Int,Int) type TokContent = { position :: Pos, content::String } data Token = TkString { position :: Pos, content::String } | TkLB { position :: Pos, content::String } | TkRB { position :: Pos, content::String } | TkLCurly { position :: Pos, content::String } | TkRCurly { position :: Pos, content::String } | TkLP { position :: Pos, content::String } | TkRP { position :: Pos, content::String } | TkDColon { position :: Pos, content::String } | TkColon { position :: Pos, content::String } | TkSColon { position :: Pos, content::String } | TkTEQ { position :: Pos, content::String } | TkPEQ { position :: Pos, content::String } | TkDot { position :: Pos, content::String } | TkExcMark { position :: Pos, content::String } | TkNEQ { position :: Pos, content::String } | TkDAmp { position :: Pos, content::String } | TkAnd { position :: Pos, content::String } | TkPOr { position :: Pos, content::String } | TkOr { position :: Pos, content::String } | TkDEQ { position :: Pos, content::String } | TkGE { position :: Pos, content::String } | TkLE { position :: Pos, content::String } | TkGT { position :: Pos, content::String } | TkLT { position :: Pos, content::String } | TkIDiv { position :: Pos, content::String } | TkDiv { position :: Pos, content::String } | TkSum { position :: Pos, content::String } | TkMin { position :: Pos, content::String } | TkPower { position :: Pos, content::String } | TkTimes { position :: Pos, content::String } | TkMod { position :: Pos, content::String } | TkEq { position :: Pos, content::String } | TkAssign { position :: Pos, content::String } | TkInt { position :: Pos, content::String } | TkBool { position :: Pos, content::String } | TkChar { position :: Pos, content::String } | TkVoid { position :: Pos, content::String } | TkFloat { position :: Pos, content::String } | TkStruct { position :: Pos, content::String } | TkUnion { position :: Pos, content::String } | TkEnum { position :: Pos, content::String } | TkEnumCons { position :: Pos, content::String } | TkNull { position :: Pos, content::String } | TKGlobal { position :: Pos, content::String } | TkFunc { position :: Pos, content::String } | TkIf { position :: Pos, content::String } | TkElif { position :: Pos, content::String } | TkElse { position :: Pos, content::String } | TkEnd { position :: Pos, content::String } | TkWhile { position :: Pos, content::String } | TkFor { position :: Pos, content::String } | TkBegin { position :: Pos, content::String } | TkBreak { position :: Pos, content::String } | TkContinue { position :: Pos, content::String } | TkReturn { position :: Pos, content::String } | TkExit { position :: Pos, content::String } | TkRead { position :: Pos, content::String } | TkWrite { position :: Pos, content::String } | TkPrint { position :: Pos, content::String } | TkAlloc { position :: Pos, content::String } | TkFree { position :: Pos, content::String } | TkSizeOf { position :: Pos, content::String } | TkGet { position :: Pos, content::String } | TkTruFal { position :: Pos, content::String } | TkNum { position :: Pos, content::Int } | TkDId { position :: Pos, content::String } | TkId { position :: Pos, content::String } | TkError { position :: Pos, content::String } deriving(Data,Typeable) instance Show Token where show generic = show (toConstr generic )++ "\n" ++ " line: " ++ show l ++ "\n" ++ " column: " ++ show c ++ "\n" where (l,c) = position generic }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 02:06:39 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 02:06:39 -0000 Subject: [GHC] #11958: Improved testing of cross-compiler In-Reply-To: <044.199977cda1889326e5e53eb484e40895@haskell.org> References: <044.199977cda1889326e5e53eb484e40895@haskell.org> Message-ID: <059.0c596d3dbecf777d7b61530d04b8db34@haskell.org> #11958: Improved testing of cross-compiler -------------------------------------+------------------------------------- Reporter: erikd | Owner: Type: task | Status: new Priority: low | Milestone: 8.2.1 Component: Test Suite | Version: 7.10.3 Resolution: | Keywords: cross-compile Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by erikd): @thomie suggested running `make test stage=1`. That failed because for some reason `hp2ps` doesn't get build during cross-compilation. If I remove the test for that program: {{{ diff --git a/testsuite/mk/boilerplate.mk b/testsuite/mk/boilerplate.mk index 077d503..64a7408 100644 --- a/testsuite/mk/boilerplate.mk +++ b/testsuite/mk/boilerplate.mk @@ -198,10 +198,10 @@ ifeq "$(shell test -x '$(HSC2HS)' && echo exists)" "" $(error Cannot find hsc2hs: $(HSC2HS)) endif -$(eval $(call canonicaliseExecutable,HP2PS_ABS)) -ifeq "$(shell test -x '$(HP2PS_ABS)' && echo exists)" "" -$(error Cannot find hp2ps: $(HP2PS_ABS)) -endif $(eval $(call canonicaliseExecutable,HPC)) ifeq "$(shell test -x '$(HPC)' && echo exists)" "" }}} then the tests do actually run (x86_64/linux cross compiling to armhf/linux): {{{ OVERALL SUMMARY for test run started at Sun Apr 24 20:40:22 2016 AEST 0:28:29 spent to go through 5128 total tests, which gave rise to 12346 test cases, of which 7884 were skipped 66 had missing libraries 4096 expected passes 157 expected failures 13 caused framework failures 9 unexpected passes 134 unexpected failures 0 unexpected stat failures }}} It seems some of these tests failed because the 64 bit `Word` results were expected instead of using the 32 bit `Word` expected results. This idea does seem promising. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 02:15:41 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 02:15:41 -0000 Subject: [GHC] #11977: ghc doesn't agree with its own inferred pattern type In-Reply-To: <051.890e2a0ef534fc631508076f831baaf7@haskell.org> References: <051.890e2a0ef534fc631508076f831baaf7@haskell.org> Message-ID: <066.d7bd653bcc5e585e3a815c1ce598d87e@haskell.org> #11977: ghc doesn't agree with its own inferred pattern type -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * cc: mpickering, cactus (added) Comment: Very interesting test case! You've discovered that, once again, we've misunderstood pattern types. If you assign a pattern the type `a -> b -> c` (where `a`, `b`, and `c` are arbitrary types, not necessarily variables; that is, they are metavariables), we've been saying that `a` and `b` are arguments to the pattern and `c` is the result type. But in your case, the type is `a -> Char -> a`, and `Char -> a` is the result type. Yet there is no way to indicate this in a type signature. I even tried `a -> (Char -> a)` to no avail. I have no suggestions (other than parentheses, which would be awkward) for how to fix this. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 02:19:47 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 02:19:47 -0000 Subject: [GHC] #11977: ghc doesn't agree with its own inferred pattern type In-Reply-To: <051.890e2a0ef534fc631508076f831baaf7@haskell.org> References: <051.890e2a0ef534fc631508076f831baaf7@haskell.org> Message-ID: <066.dcb408e48efc40ff221576966ea4a1fc@haskell.org> #11977: ghc doesn't agree with its own inferred pattern type -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by cactus): * keywords: => PatternSynonyms -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 02:21:02 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 02:21:02 -0000 Subject: [GHC] #11960: GHC parallel build failure during "make" In-Reply-To: <047.ec2cf2a2fa93a6c771ea2f164f8f5768@haskell.org> References: <047.ec2cf2a2fa93a6c771ea2f164f8f5768@haskell.org> Message-ID: <062.e5d0f86adf2ea6be9984132b3f8a5726@haskell.org> #11960: GHC parallel build failure during "make" -------------------------------------+------------------------------------- Reporter: ilovezfs | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Build System | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Building GHC | Unknown/Multiple failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by ilovezfs): This is still happening repeatably with 8.0.1-rc4/ghc-8.0.0.20160421-src.tar.xz My current workaround is inreplace "libffi/ghc.mk", "$(MAKE) -C libffi/build MAKEFLAGS=", "sync; $(MAKE) -C libffi/build MAKEFLAGS=" which seems to fix the problem reliably. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 02:26:31 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 02:26:31 -0000 Subject: [GHC] #11977: ghc doesn't agree with its own inferred pattern type In-Reply-To: <051.890e2a0ef534fc631508076f831baaf7@haskell.org> References: <051.890e2a0ef534fc631508076f831baaf7@haskell.org> Message-ID: <066.b48bba7b849bd5468aee51641def368e@haskell.org> #11977: ghc doesn't agree with its own inferred pattern type -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by cactus): Ewww. In the representation of `PatSyn`s, the types of arguments and the type of the scrutinee are stored separately, so that shouldn't be an issue. However, I have no idea what the surface syntax should be for presenting such a type. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 08:00:07 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 08:00:07 -0000 Subject: [GHC] #11973: Simplifier ticks exhausted with complex list literal. In-Reply-To: <047.442725a6249a77f492a5a7558a57567f@haskell.org> References: <047.442725a6249a77f492a5a7558a57567f@haskell.org> Message-ID: <062.a9ec42a410b3b375579ee952c1a8e481@haskell.org> #11973: Simplifier ticks exhausted with complex list literal. -------------------------------------+------------------------------------- Reporter: Lokathor | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Windows | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): There's a fix in #11710 that may help. You don't give instructions to reproduce, so it's hard to tell. The fix is in the GHC 8.0 release candidate so you could give it a try. Thanks Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 08:24:24 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 08:24:24 -0000 Subject: [GHC] #10963: Beginner-targeted language extension In-Reply-To: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> References: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> Message-ID: <060.e0210a8e85b66a9536add506b47a80ae@haskell.org> #10963: Beginner-targeted language extension -------------------------------------+------------------------------------- Reporter: kanetw | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): I'm anxious about having ''three'' forms of `:type`. That seems jolly confusing to me. It's bad enough having `:info` as well as `:type`, but there are good reasons for that. But I'd rather not make matters worse. Suggestion: * Always do defaulting with `:type`. That means the `:type e` lines up with evaluating `e`. (In other words, adopt your proposed behaviour for `:type`.) * You can always use `:info` if you want the most general type of an identifier. * I am very doubtful about the usefulness of `:type-spec`. Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 08:25:44 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 08:25:44 -0000 Subject: [GHC] #11975: New GHCi command to print out the type of an expression without instantiating In-Reply-To: <047.e04c32cf521defebb6ebe9369a8011c1@haskell.org> References: <047.e04c32cf521defebb6ebe9369a8011c1@haskell.org> Message-ID: <062.b8434f7d2d7247ebea04b471b7a509f4@haskell.org> #11975: New GHCi command to print out the type of an expression without instantiating -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: GHCi | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): I'm not keen on adding `:type-spec`; see my comment on #10963 (comment:5) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 09:22:33 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 09:22:33 -0000 Subject: [GHC] #11977: ghc doesn't agree with its own inferred pattern type In-Reply-To: <051.890e2a0ef534fc631508076f831baaf7@haskell.org> References: <051.890e2a0ef534fc631508076f831baaf7@haskell.org> Message-ID: <066.d28f8943c82c4aef733a9d3867de9654@haskell.org> #11977: ghc doesn't agree with its own inferred pattern type -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): I had always taken it for granted that a pattern synonym described a data type, not a function. It's hard to pattern match in an interesting way on a function, short of calling it I suppose. Lacking compelling examples, I'm inclined to add the requirement that the result type of a pattern synonym is a data type. Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 09:40:49 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 09:40:49 -0000 Subject: [GHC] #11108: Weak references related crash In-Reply-To: <046.1b25661a2ebf5aa23d3a93aae541239e@haskell.org> References: <046.1b25661a2ebf5aa23d3a93aae541239e@haskell.org> Message-ID: <061.3ac193ca93a257fca591c7b2c29858ae@haskell.org> #11108: Weak references related crash -------------------------------------+------------------------------------- Reporter: Saulzar | Owner: Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Runtime System | Version: 7.10.2 Resolution: | Keywords: Operating System: Linux | Architecture: | Unknown/Multiple Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: #11746,#11972 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by niteria): * cc: niteria (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 10:17:55 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 10:17:55 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.4d670bd00bfb874ed661816f05f8bc5c@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Comment (by erikd): Replying to [comment:3 carter]: > found a simple reproducer for the sigsevg > {{{ > echo "main = putStrLn \"hii\"" > main.hs > ghc -prof -rtsopts -threaded main.hs > ./main +RTS -hb -N10 > hii > fish: './main +RTS -hb -N10' terminated by signal SIGSEGV > > }}} Can confirm that with the the same thing happens on linux with `ghc-7.10.3` and `ghc-8.0.0.20160421`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 10:51:26 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 10:51:26 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.ac192016217c09f53b5cfb47b1fbf85e@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Comment (by erikd): Running under `gdb` I actually get a sensible backtrace, so it seems this crashed was in C code: {{{ Program received signal SIGSEGV, Segmentation fault. 0x00000000004c8130 in LdvCensusForDead.part.0 () (gdb) bt #0 0x00000000004c8130 in LdvCensusForDead.part.0 () #1 0x00000000004d27ad in GarbageCollect () #2 0x00000000004c9cc5 in scheduleDoGC () #3 0x00000000004cba8b in exitScheduler () #4 0x00000000004bc890 in hs_exit_ () #5 0x00000000004bce1f in shutdownHaskellAndExit () #6 0x00000000004ce13d in hs_main () #7 0x000000000040a61d in main () }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 11:38:37 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 11:38:37 -0000 Subject: [GHC] #11263: "Simplifier ticks exhausted" that resolves with fsimpl-tick-factor=200 In-Reply-To: <048.40c26b7b4284fbfbecf1a612dcab9f75@haskell.org> References: <048.40c26b7b4284fbfbecf1a612dcab9f75@haskell.org> Message-ID: <063.094ff5b55639df0995482462b451faf1@haskell.org> #11263: "Simplifier ticks exhausted" that resolves with fsimpl-tick-factor=200 -------------------------------------+------------------------------------- Reporter: jberryman | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: #10527 #5539 | Differential Rev(s): #8319 | Wiki Page: | -------------------------------------+------------------------------------- Comment (by stusmith): Also in `cabal install diagrams`: {{{ [2 of 5] Compiling Graphics.Svg.Core ( src/Graphics/Svg/Core.hs, dist/build/Graphics/Svg/Core.o ) ghc: panic! (the 'impossible' happened) (GHC version 7.8.4 for x86_64-unknown-linux): Simplifier ticks exhausted When trying UnfoldingDone base:Foreign.Storable.$fStorableWord8_$cpokeByteOff{v r2gn} [gid] To increase the limit, use -fsimpl-tick-factor=N (default 100) If you need to do this, let GHC HQ know, and what factor you needed To see detailed counts use -ddump-simpl-stats Total ticks: 34200 }}} (On Ubuntu server 15.10). Output from `-ddump-simpl-stats` is attached as `diagrams-dump-simpl- stats.txt`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 11:39:04 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 11:39:04 -0000 Subject: [GHC] #11263: "Simplifier ticks exhausted" that resolves with fsimpl-tick-factor=200 In-Reply-To: <048.40c26b7b4284fbfbecf1a612dcab9f75@haskell.org> References: <048.40c26b7b4284fbfbecf1a612dcab9f75@haskell.org> Message-ID: <063.73a3b49f32614df5e84046851dfb7339@haskell.org> #11263: "Simplifier ticks exhausted" that resolves with fsimpl-tick-factor=200 -------------------------------------+------------------------------------- Reporter: jberryman | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: #10527 #5539 | Differential Rev(s): #8319 | Wiki Page: | -------------------------------------+------------------------------------- Changes (by stusmith): * Attachment "diagrams-dump-simpl-stats.txt" added. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 12:13:42 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 12:13:42 -0000 Subject: [GHC] #10963: Beginner-targeted language extension In-Reply-To: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> References: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> Message-ID: <060.683f072b36ed40b980e8491bfa2a536a@haskell.org> #10963: Beginner-targeted language extension -------------------------------------+------------------------------------- Reporter: kanetw | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): I'm afraid I strongly disagree with the proposal in comment:5. * As we've discovered when looking at #11376 (specifically, see comment:31:ticket:11376), `:info` does not always give the type of a term (e.g. for data constructors, class methods, record selectors, pattern synonyms, and maybe more). It is not a good replacement for `:type`. * If we always default with `:type`, then, e.g., `:type foldr (:)` will report `[a] -> [a] -> [a]`. But it's actually much more useful than that, working over any `Foldable`. There would be no way to see that `foldr (:)` specializes the result container to be a list while not constraining the input container. * `:type-spec` is the answer to the issues in #11376. It's a generalization of comment:34:ticket:11376. You might argue that we shouldn't generalize here; your proposal on that ticket was to do `:type- spec` whenever the user asks for `:type` of a bare identifier. While I can't argue strongly against that proposal, I find the behavior unintuitive and frustratingly non-compositional. I do agree that three forms of `:type` is unfortunate. My original design was to have two forms, `:type` and `:type-info`, where `:type-info` printed out both the output of my current `:type-spec` and `:type-def`. (It actually originally printed out `:type` too, for good measure.) But I realized that a user rarely wants both of these outputs, so they should just be able to ask for what they want. It's very easy to go back to that other design, and I'm quite happy for new designs to be proposed. In particular, I don't think my current design is all that great. It's just better than Simon's, in my opinion. :) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 12:20:44 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 12:20:44 -0000 Subject: [GHC] #11977: ghc doesn't agree with its own inferred pattern type In-Reply-To: <051.890e2a0ef534fc631508076f831baaf7@haskell.org> References: <051.890e2a0ef534fc631508076f831baaf7@haskell.org> Message-ID: <066.a30622955667e4e909c74cf7f2a67537@haskell.org> #11977: ghc doesn't agree with its own inferred pattern type -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): But it currently can be a type variable (when constrained by a class). If we don't allow functions to be matched against in this way, we lose substitution. This isn't a killer (it's all surface Haskell and in no way is a type safety issue), just a bit suboptimal to me. I actually think the original example looks potentially useful. I could see waiting until someone presents an actual use case they wish to use in real code, though. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 13:00:38 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 13:00:38 -0000 Subject: [GHC] #10963: Beginner-targeted language extension In-Reply-To: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> References: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> Message-ID: <060.7e14da92ceb19539c2db2b9971320db4@haskell.org> #10963: Beginner-targeted language extension -------------------------------------+------------------------------------- Reporter: kanetw | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | -------------------------------------+------------------------------------- Comment (by takenobu): Hi, Is Alexander Kjeldaas's representation idea useful? [1] [1] https://mail.haskell.org/pipermail/ghc-devs/2016-February/011398.html {{{ Prelude> :t foldr foldr :: Foldable t => (a -> b -> b) -> b -> t a -> b For example: foldr :: (a -> b -> b) -> b -> [a] -> b foldr :: (a -> b -> b) -> b -> Maybe a -> b foldr :: (a -> b -> b) -> b -> Identity a -> b foldr :: (a -> b -> b) -> b -> (c, a) -> b and more }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 13:14:14 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 13:14:14 -0000 Subject: [GHC] #10963: Beginner-targeted language extension In-Reply-To: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> References: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> Message-ID: <060.a58a80b3df01f5de41d62fa5e3e8a26c@haskell.org> #10963: Beginner-targeted language extension -------------------------------------+------------------------------------- Reporter: kanetw | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): I think we need feedback from a decent number of users before we can converge on a design. And to get that feedback we need some clearly- articulated choices. Which means we need a wiki-page to describe the choices, with pros and cons. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 13:22:16 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 13:22:16 -0000 Subject: [GHC] #10963: Beginner-targeted language extension In-Reply-To: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> References: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> Message-ID: <060.f8353bdf0e36f9e14f3ee85b45646f08@haskell.org> #10963: Beginner-targeted language extension -------------------------------------+------------------------------------- Reporter: kanetw | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): Thanks for linking to that. There may be two questions here: 1. Do we want 1 specialization or many? I have to say I really like using the `default` list to prescribe the specializations, but perhaps another criterion (like load order, as originally proposed in the linked-to email) can be used. 2. Do we want the output to come straight from `:type`, which would make every use of that very common command much longer? Re (1): I chose to produce 1 specialization for two reasons: A. Suppose we have a type constrained by `(Foldable f, Num a) => ...`. If we start printing out multiple specializations, we get a combinatorial number of them. Where do we cut this off? How are they ordered? B. Doing just 1 specialization could use the built-in defaulting mechanism very, very easily. Anything else would be quite a bit more challenging, I think. This isn't a reason to avoid other designs, exactly, but a point I wanted to make here. And, yes, I agree with comment:8 (written concurrently with this one) that we should seek more input. I'll put together that wiki page and post more broadly later today. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 14:52:05 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 14:52:05 -0000 Subject: [GHC] #10963: Beginner-targeted language extension In-Reply-To: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> References: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> Message-ID: <060.ee51cb45c39ecc38c650c30d26b6556b@haskell.org> #10963: Beginner-targeted language extension -------------------------------------+------------------------------------- Reporter: kanetw | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | -------------------------------------+------------------------------------- Comment (by kanetw): Replying to [comment:7 takenobu]: > Hi, > > Is Alexander Kjeldaas's representation idea useful? [1] > > [1] https://mail.haskell.org/pipermail/ghc- devs/2016-February/011398.html > > > {{{ > Prelude> :t foldr > foldr :: Foldable t => (a -> b -> b) -> b -> t a -> b > For example: > foldr :: (a -> b -> b) -> b -> [a] -> b > foldr :: (a -> b -> b) -> b -> Maybe a -> b > foldr :: (a -> b -> b) -> b -> Identity a -> b > foldr :: (a -> b -> b) -> b -> (c, a) -> b > and more > }}} I like this, but this is also kinda difficult. When I was planning on implementing this I ran into the problem that we have a very rapidly growing number of example specializations, and it's hard to decide which ones should be shown and which ones shouldn't. See also some of the discussion [https://ghc.haskell.org/trac/ghc/ticket/10972 here] and [https://mail.haskell.org/pipermail/haskell-cafe/2015-October/121835.html here]. I'm not sure whether I'd prefer this to be under :t, :i, or separate. :t right now is nicely copy-pastable and adding more info would impact that. :i can't evaluate expressions so it'd have to be overloaded. Having it separate makes it less obvious for beginners who might be using old course material that doesn't know of :. I think having it in :t would be the least worst option assuming people who write stuff that uses GHCi programatically agree. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 16:50:41 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 16:50:41 -0000 Subject: [GHC] #10963: Beginner-targeted language extension In-Reply-To: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> References: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> Message-ID: <060.d8e0f7a2d6fcd59e5dd22708297dce45@haskell.org> #10963: Beginner-targeted language extension -------------------------------------+------------------------------------- Reporter: kanetw | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): Wiki page created: [wiki:Design/GHCi/Type]. Comment away. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 21:46:17 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 21:46:17 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.65fd16029f27cd7b1d8ecb905a9b67ea@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Changes (by erikd): * Attachment "0001-rts-LdvProfile.c-Fix-NULL-dereference-on- shutdown.patch" added. Propsed fix -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 21:47:28 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 21:47:28 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.052071ee038cf59ec12cbd7da569f4c5@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Comment (by erikd): @carter Please test the attached patch to see it if fixes your initial problem. It does fix the hello world version of the problem. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 22:36:09 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 22:36:09 -0000 Subject: [GHC] #10746: No non-exhaustive pattern match warning given for empty case analysis In-Reply-To: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> References: <046.7124d47aa8c745a5f8757fe53c21a64c@haskell.org> Message-ID: <061.a8943d248ba0df60c98ea387d5ee35f6@haskell.org> #10746: No non-exhaustive pattern match warning given for empty case analysis -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: Type of failure: Incorrect | Unknown/Multiple warning at compile-time | Test Case: Blocked By: | Blocking: Related Tickets: #7669, #11806 | Differential Rev(s): Phab:D2105 Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): This all seems a bit more complicated than it need be. My guiding light is that it should all be very similar to `case x of { C y -> blah }`. For this we enumerate all the data constructors other than `C y` as non- matching (modulo inaccessible GADT constructors). We can do the same here. The only real difference is that we don't have a data constructor `C` to start from. Instead we start from the type of `x :: tyx`. So it looks simple: * Normalise `x`'s type, to get it to the form `T ty1 .. tyn`. (I don't understand the "bounded" bit.) For this, we must reduce type families, but NOT newtypes. For pattern matching purposes, newtypes behave just like data types. So use `FamInstEnv.normaliseType`. * If `T` has no data constructors, we are done. For example, empty data types, which don't produce an error message here. * If none of `T`'s data constructors are GADTs, then just produce an error of form {{{ Blah.hs:4:1: warning: [-Wincomplete-patterns] Pattern match(es) are non-exhaustive In a case alternative: Patterns not matched: _ :: Bool }}} Here I've added the "`:: Bool`" part so the reader understands the type of the pattern. No need to enumerate `True` and `False`. * If some of `T`'s data constructor are GADTs, then enumerate them all and recurse. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 23:20:39 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 23:20:39 -0000 Subject: [GHC] #11973: Simplifier ticks exhausted with complex list literal. In-Reply-To: <047.442725a6249a77f492a5a7558a57567f@haskell.org> References: <047.442725a6249a77f492a5a7558a57567f@haskell.org> Message-ID: <062.0c386d2e172a9d8e50ee7bb6af949dc2@haskell.org> #11973: Simplifier ticks exhausted with complex list literal. -------------------------------------+------------------------------------- Reporter: Lokathor | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Windows | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by erikd): Just tested this on Linux. This project (at git commit f1f770241cb548) fails as reported with ghc-7.10.3 and builds successfully with ghc-8.0.0rc4. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 23:21:42 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 23:21:42 -0000 Subject: [GHC] #11973: Simplifier ticks exhausted with complex list literal. In-Reply-To: <047.442725a6249a77f492a5a7558a57567f@haskell.org> References: <047.442725a6249a77f492a5a7558a57567f@haskell.org> Message-ID: <062.3110e61d5ada0aa22cd86413809dd073@haskell.org> #11973: Simplifier ticks exhausted with complex list literal. -------------------------------------+------------------------------------- Reporter: Lokathor | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Windows | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Lokathor): Wonderful. For historical purposes, here are the specific steps to get in position to reproduce the bug: {{{ git clone https://github.com/Lokathor/ludolib.git cd ludolib git checkout f1f7702 }}} And then build with "stack build" or make a cabal sandbox and use cabal or however you like. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Mon Apr 25 23:22:09 2016 From: ghc-devs at haskell.org (GHC) Date: Mon, 25 Apr 2016 23:22:09 -0000 Subject: [GHC] #11973: Simplifier ticks exhausted with complex list literal. In-Reply-To: <047.442725a6249a77f492a5a7558a57567f@haskell.org> References: <047.442725a6249a77f492a5a7558a57567f@haskell.org> Message-ID: <062.a6b6e19acc860acd577dfaf041a0486d@haskell.org> #11973: Simplifier ticks exhausted with complex list literal. -------------------------------------+------------------------------------- Reporter: Lokathor | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: fixed | Keywords: Operating System: Windows | Architecture: Type of failure: Compile-time | Unknown/Multiple crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Lokathor): * status: new => closed * resolution: => fixed -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 01:35:52 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 01:35:52 -0000 Subject: [GHC] #4820: "Invalid object in isRetainer" when doing retainer profiling in GHC 7 branch In-Reply-To: <049.7962690c1cad7c1dc6772c5aaee21bae@haskell.org> References: <049.7962690c1cad7c1dc6772c5aaee21bae@haskell.org> Message-ID: <064.02b084ab4ec36ee2b55db8620038b065@haskell.org> #4820: "Invalid object in isRetainer" when doing retainer profiling in GHC 7 branch ----------------------------------+-------------------------------------- Reporter: dleuschner | Owner: Type: bug | Status: new Priority: highest | Milestone: 8.0.2 Component: Profiling | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 (amd64) Type of failure: Runtime crash | Test Case: Blocked By: | Blocking: Related Tickets: #11978 | Differential Rev(s): Wiki Page: | ----------------------------------+-------------------------------------- Comment (by carter): if i change the RTS options to set a larger retainer size, eg -R50 or even -R500, the shake test suite makes more progress before crashing. (in the context of the reproducing steps i describe in #11978) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 05:16:11 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 05:16:11 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.7246ff89c62668cb0b295d2e2a36e61c@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Comment (by erikd): Recreated @carter's original test running `shake`'s test suite. With my proposed fix applied, I still get a segfault. Running under `gdb` provides the following backtrace: {{{ Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0x7fffbb7fe700 (LWP 9743)] overwritingClosure (p=0x20010d8e0) at includes/rts/storage/ClosureMacros.h:535 535 ((StgThunk *)(p))->payload[i] = 0; (gdb) bt #0 overwritingClosure (p=0x20010d8e0) at includes/rts/storage/ClosureMacros.h:535 #1 doneWithMsgThrowTo (m=0x20010d8e0) at rts/Messages.h:25 #2 executeMessage (cap=cap at entry=0x1496740, m=0x20010d8e0) at rts/Messages.c:104 #3 0x0000000000f47834 in scheduleProcessInbox (pcap=) at rts/Schedule.c:1005 #4 scheduleFindWork (pcap=) at rts/Schedule.c:616 #5 schedule (initialCapability=, task=task at entry=0x7fff88000910) at rts/Schedule.c:274 #6 0x0000000000f490dc in scheduleWorker (cap=, task=0x7fff88000910) at rts/Schedule.c:2382 #7 0x00007ffff75b6454 in start_thread (arg=0x7fffbb7fe700) at pthread_create.c:334 #8 0x00007ffff6d72eed in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109 (gdb) print i $1 = 910560 (gdb) print p $2 = (StgClosure *) 0x20010d8e0 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 08:43:30 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 08:43:30 -0000 Subject: [GHC] #11980: Testsuite: run each test in its own /tmp directory, after copying required files Message-ID: <045.666c00e2d5978d6e6851add98af62b04@haskell.org> #11980: Testsuite: run each test in its own /tmp directory, after copying required files -------------------------------------+------------------------------------- Reporter: thomie | Owner: thomie Type: task | Status: new Priority: normal | Milestone: 8.2.1 Component: Test Suite | Version: 8.0.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- == Plan == For each TEST: * create a directory `` inside `/tmp` * link/copy all source files that the test needs into `` * run the test inside `` * delete `` == Benefits == * running tests in parallel always works, even when two tests write to the same file (for example .hi/.o files, from sharing a .hs file). This should reduce the number of unsuspected and annoying validate failures. There is no longer any need to specify `-outputdir` explicitly. * there is no longer any need to add entries to the perpetually out-of- date `testsuite/.gitignore`. * there is no longer any need to specify `extra_clean` or `clean_cmd` setup functions for tests. Sometimes you //will// have to specify which extra files a test needs, using the (new) `extra_files` setup function, but it will be immediately clear when to do so (i.e. the test won't run if you don't). By default only files with the name `*` are copied to ``. * it could become possible to run //ways// for a single test in parallel (i.e. `make TEST= slow` would become faster) * `clean`ing the testsuite won't be necessary (except for a few files in `testsuite/mk` perhaps) Currently the only way to clean the testsuite is via `make CLEANUP=1 CLEAN_ONLY=1`, which requires a call to the testsuite, which requires building mk/ghc-config first. There are 2 problems with this: * you don't expect a call to `make clean` to start building stuff. Even less so in a pristine source distribution. * most of the time it doesn't clean all files, because lots of tests are missing are have incomplete `extra_clean`s. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 08:53:55 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 08:53:55 -0000 Subject: [GHC] #11981: unknown symbol `__udivti3' when BuildFlavour = perf-llvm Message-ID: <044.ad3f32463aae7c699d4d4bd8ae6b6c27@haskell.org> #11981: unknown symbol `__udivti3' when BuildFlavour = perf-llvm -------------------------------------+------------------------------------- Reporter: erikd | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: Other Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Building git HEAD with `BuildFlavour = perf-llvm` and then running the tests results in 500+ tests failing, all with the same error: {{{ ghc-stage2: /xxx/libraries/ghc-prim/dist-install/build/HSghc- prim-0.5.0.0.o: unknown symbol `__udivti3' ghc-stage2: unable to load package `ghc-prim-0.5.0.0' }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 09:50:06 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 09:50:06 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.a8949cb20a59d98897a09ef342b13f8b@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Changes (by lelf): * cc: lelf (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 09:52:44 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 09:52:44 -0000 Subject: [GHC] #9543: Testsuite driver: replace "extra_clean" by "git clean -X" In-Reply-To: <045.2f69795abaf71b802d453cc5970d5177@haskell.org> References: <045.2f69795abaf71b802d453cc5970d5177@haskell.org> Message-ID: <060.6d5ae8798907d317a9101965bd7e397e@haskell.org> #9543: Testsuite driver: replace "extra_clean" by "git clean -X" -------------------------------------+------------------------------------- Reporter: thomie | Owner: thomie Type: task | Status: closed Priority: normal | Milestone: Component: Test Suite | Version: Resolution: wontfix | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by thomie): * status: new => closed * resolution: => wontfix Comment: Superseded by #11980. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 10:13:37 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 10:13:37 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.b22e3740eea74c3a75948bace337a9c0@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Comment (by erikd): A bit of printf debugging showed the problem was in `includes/rts/storage/ClosureMacros.h` in the function `overwritingClosure` in the code: {{{ for (i = 0; i < size - sizeofW(StgThunkHeader); i++) { ((StgThunk *)(p))->payload[i] = 0; } }}} The problem was that `size` was less than `sizeofW(StgThunkHeader)` resulting an unsigned integer overflow, cause the code to write past where it should. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 10:41:02 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 10:41:02 -0000 Subject: [GHC] #11970: Simplify Parent for patten synonyms In-Reply-To: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> References: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> Message-ID: <061.0065583ddf9291d1106b1f79ee5fa1d2@haskell.org> #11970: Simplify Parent for patten synonyms -------------------------------------+------------------------------------- Reporter: simonpj | Owner: mpickering Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by mpickering): I had an evening looking at this last week but got stuck trying to work out how to check exported children were in scope. It wasn't clear to me which of the `lookupOccRn` functions is needed to find the children. Especially after export renaming already comes after renaming all other top level decls I expected using one of them to just work but I need to do some further exploration to find out why it isn't the case. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 12:04:54 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 12:04:54 -0000 Subject: [GHC] #11982: Typechecking fails for parallel monad comprehensions with polymorphic let Message-ID: <046.cb35ad4ec343f26e487f6feef0b37095@haskell.org> #11982: Typechecking fails for parallel monad comprehensions with polymorphic let -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- {{{ {-# LANGUAGE MonadComprehensions, ParallelListComp #-} module Foo where foo xs ys = [ (f y True, f x 'c') | let f _ z = z, x <- xs | y <- ys ] }}} This fails with {{{ Foo.hs:5:52: error: * Cannot instantiate unification variable `t0' with a type involving foralls: forall t2 t3. t3 -> t2 -> t2 GHC doesn't yet support impredicative polymorphism * In a stmt of a monad comprehension: let f _ z = z, x <- xs | y <- ys In the expression: [(f y True, f x 'c') | let f _ z = z, x <- xs | y <- ys] In an equation for `foo': foo xs ys = [(f y True, f x 'c') | let f _ z = z, x <- xs | y <- ys] }}} NB: `ApplicativeDo` has a related problem: the implementation is quite different and has the effect of monomorphising the let-bound variable. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 12:14:30 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 12:14:30 -0000 Subject: [GHC] #11982: Typechecking fails for parallel monad comprehensions with polymorphic let In-Reply-To: <046.cb35ad4ec343f26e487f6feef0b37095@haskell.org> References: <046.cb35ad4ec343f26e487f6feef0b37095@haskell.org> Message-ID: <061.ea680d0d58bbb0e20b57d9e77b2794aa@haskell.org> #11982: Typechecking fails for parallel monad comprehensions with polymorphic let -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): That error looks correct to me, for a rather narrow definition of correct. Both parallel list comprehension and `ApplicativeDo` end up desugaring to manipulations on tuples, right? The tuples hold the bound variables. So your example requires building a tuple with a polymorphic element, hence impredicativity. I'm unaware of a specification of these features beyond implementation in terms of tuples, which is why failing here may be the correct behavior. That said, I'm sure you want this to be accepted. Perhaps it wouldn't be too hard to enable impredicativity in just the right spot... -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 12:55:09 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 12:55:09 -0000 Subject: [GHC] #10963: Beginner-targeted language extension In-Reply-To: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> References: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> Message-ID: <060.3aabbd1d48586aaa7046d08e5f9607f6@haskell.org> #10963: Beginner-targeted language extension -------------------------------------+------------------------------------- Reporter: kanetw | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | -------------------------------------+------------------------------------- Comment (by takenobu): Replying to goldfire and kanetw in comment:9 and comment:10: Thank you for explaining by comments and wiki page. I recognized that multiple specialization will confuse beginners. So I like (1D, 2B, 3D) in Richard's wiki page. * 1D, 2B : I think it's better that `:type` is simply keep for beginners. * 3D : For instance, we adopt `:type-verbose` or `:tv` command. The command intuitively represents the relation between instantiation and generalization. It's good for middle users. {{{ ghci> :tv length length :: forall {t :: * -> *} {a}. Foldable t => t a -> Int Specialized: length :: [a] -> Int -- with default (2B) length :: Maybe a -> Int -- with one of any order }}} [[BR]] My decision criteria: * Basic command (:t) is priority for beginners. * Additional command (:tv) intuitively provide the relation between instantiation and generalization for middle users. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 13:03:50 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 13:03:50 -0000 Subject: [GHC] #10963: Beginner-targeted language extension In-Reply-To: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> References: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> Message-ID: <060.92b69b696d1b0d3f5bb920e98b5aac44@haskell.org> #10963: Beginner-targeted language extension -------------------------------------+------------------------------------- Reporter: kanetw | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | [wiki:Design/GHCi/Type] | -------------------------------------+------------------------------------- Changes (by goldfire): * wikipage: => [wiki:Design/GHCi/Type] -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 13:17:06 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 13:17:06 -0000 Subject: [GHC] #11981: unknown symbol `__udivti3' when BuildFlavour = perf-llvm In-Reply-To: <044.ad3f32463aae7c699d4d4bd8ae6b6c27@haskell.org> References: <044.ad3f32463aae7c699d4d4bd8ae6b6c27@haskell.org> Message-ID: <059.3b585d4d0de46743db734ed0746b2d53@haskell.org> #11981: unknown symbol `__udivti3' when BuildFlavour = perf-llvm -------------------------------------+------------------------------------- Reporter: erikd | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by carter): @erik what does the ldd / Otool output say ithr ghc-prim dylib/so depends on? That sounds like one of the Symbols eg gcc puts into its libgcc library. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 13:30:37 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 13:30:37 -0000 Subject: [GHC] #11982: Typechecking fails for parallel monad comprehensions with polymorphic let In-Reply-To: <046.cb35ad4ec343f26e487f6feef0b37095@haskell.org> References: <046.cb35ad4ec343f26e487f6feef0b37095@haskell.org> Message-ID: <061.b3e7228288d0a5858635a5d6fe91979a@haskell.org> #11982: Typechecking fails for parallel monad comprehensions with polymorphic let -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonmar): * cc: simonmar, niteria (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 13:37:38 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 13:37:38 -0000 Subject: [GHC] #4012: Compilation results are not deterministic In-Reply-To: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> References: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> Message-ID: <058.923120207e518fbfc41b82255077c801@haskell.org> #4012: Compilation results are not deterministic -------------------------------------+------------------------------------- Reporter: kili | Owner: niteria Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 6.12.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: 11362 | Blocking: Related Tickets: #10424 | Differential Rev(s): Phab:D910, | Phab:D1073, Phab:D1133, Phab:D1192, | Phab:D1268, Phab:D1360, Phab:D1373, Wiki Page: | Phab:D1396, Phab:D1457, Phab:D1468, DeterministicBuilds | Phab:D1487, Phab:D1504, Phab:D1508 -------------------------------------+------------------------------------- Comment (by Bartosz Nitka ): In [changeset:"c9bcaf3165586ac214fa694e61c55eb45eb131ab/ghc" c9bcaf31/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="c9bcaf3165586ac214fa694e61c55eb45eb131ab" Kill varSetElemsWellScoped in quantifyTyVars varSetElemsWellScoped introduces unnecessary non-determinism in inferred type signatures. Removing this instance required changing the representation of TcDepVars to use deterministic sets. This is the last occurence of varSetElemsWellScoped, allowing me to finally remove it. Test Plan: ./validate I will update the expected outputs when commiting, some reordering of type variables in types is expected. Reviewers: goldfire, simonpj, austin, bgamari Reviewed By: simonpj Subscribers: thomie, simonmar Differential Revision: https://phabricator.haskell.org/D2135 GHC Trac Issues: #4012 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 13:43:30 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 13:43:30 -0000 Subject: [GHC] #11983: Can't use IntPtr or WordPtr in a foreign import Message-ID: <050.a377de086d55ae1ca346bd4cd7fa231a@haskell.org> #11983: Can't use IntPtr or WordPtr in a foreign import -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: RyanGlScott Type: bug | Status: new Priority: normal | Milestone: 8.2.1 Component: Compiler | Version: 8.0.1 (FFI) | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: GHC rejects Unknown/Multiple | valid program Test Case: | Blocked By: Blocking: | Related Tickets: #3008, #5529 Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Despite the [http://hackage.haskell.org/package/base-4.8.2.0/docs/Foreign- Ptr.html#t:IntPtr docs claiming] that you can use `IntPtr` and `WordPtr` to convert to and from `intptr_t` and `uintptr_t`, you can't actually do so in a `foreign import` as of GHC 7.6. Here's a minimal example: {{{#!hs -- Example.hs {-# LANGUAGE ForeignFunctionInterface #-} module Example where {-# INCLUDE example.h #-} import Foreign.Ptr foreign import ccall "intptr_example" intPtrExample :: IntPtr -> IO () foreign import ccall "uintptr_example" wordPtrExample :: WordPtr -> IO () }}} {{{#!c // example.h #ifndef EXAMPLE_H #define EXAMPLE_H #include void intptr_example(intptr_t); void uintptr_example(uintptr_t); #endif // EXAMPLE_H }}} {{{#!c // example.c #include #include "example.h" void intptr_example(intptr_t i) {} void uintptr_example(uintptr_t u) {} }}} This appears to be a consequence of #3008, which prevents `newtype`s from being used as FFI types unless their constructors are exported. #5529 fixed this problem for the datatypes in `Foreign.C.Types` and `System.Posix.Types` by simply exporting their constructors, so I think all that's needed to fix this particular example is to export the constructors for `IntPtr` and `WordPtr`. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 14:14:55 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 14:14:55 -0000 Subject: [GHC] #11983: Can't use IntPtr or WordPtr in a foreign import In-Reply-To: <050.a377de086d55ae1ca346bd4cd7fa231a@haskell.org> References: <050.a377de086d55ae1ca346bd4cd7fa231a@haskell.org> Message-ID: <065.0ff8e35f22d9ad016f192b58d7660724@haskell.org> #11983: Can't use IntPtr or WordPtr in a foreign import -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: RyanGlScott Type: bug | Status: patch Priority: normal | Milestone: 8.2.1 Component: Compiler (FFI) | Version: 8.0.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: #3008, #5529 | Differential Rev(s): Phab:D2142 Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * status: new => patch * differential: => Phab:D2142 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 14:40:41 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 14:40:41 -0000 Subject: [GHC] #11821: Internal error: not in scope during type checking, but it passed the renamer In-Reply-To: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> References: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> Message-ID: <061.de8160e9ceee598d516e9a35615b1a24@haskell.org> #11821: Internal error: not in scope during type checking, but it passed the renamer -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): Harrumph. I successfully removed `splitTelescopeTvs` (patch on the way), but this problem persists. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 15:14:36 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 15:14:36 -0000 Subject: [GHC] #10963: Beginner-targeted language extension In-Reply-To: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> References: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> Message-ID: <060.bdafd119d7d0bd2c165b0f5283005420@haskell.org> #10963: Beginner-targeted language extension -------------------------------------+------------------------------------- Reporter: kanetw | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | [wiki:Design/GHCi/Type] | -------------------------------------+------------------------------------- Comment (by niteria): I like the idea in comment:10, but combinatorial explosion makes it hard to implement. I think providing some ability for library writers to annotate the function with common specializations would go a long way. That's what already happens in the `lens` library, GHC just isn't aware of it. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 15:45:26 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 15:45:26 -0000 Subject: [GHC] #4012: Compilation results are not deterministic In-Reply-To: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> References: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> Message-ID: <058.3239cc01237bcaab94a3db3cce0a466e@haskell.org> #4012: Compilation results are not deterministic -------------------------------------+------------------------------------- Reporter: kili | Owner: niteria Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 6.12.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: 11362 | Blocking: Related Tickets: #10424 | Differential Rev(s): Phab:D910, | Phab:D1073, Phab:D1133, Phab:D1192, | Phab:D1268, Phab:D1360, Phab:D1373, Wiki Page: | Phab:D1396, Phab:D1457, Phab:D1468, DeterministicBuilds | Phab:D1487, Phab:D1504, Phab:D1508 -------------------------------------+------------------------------------- Comment (by Bartosz Nitka ): In [changeset:"2dc5b92e070132114ea1a37f5bd82ab905ff7889/ghc" 2dc5b92/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="2dc5b92e070132114ea1a37f5bd82ab905ff7889" Kill varSetElems in TcErrors The uses of varSetElems in these places are unnecessary and while it doesn't intruduce non-determinism in the ABI the plan is to get rid of all varSetElems to get some compile time guarantees. Test Plan: ./validate Reviewers: austin, simonmar, bgamari, goldfire, simonpj Reviewed By: simonpj Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2141 GHC Trac Issues: #4012 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 16:06:52 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 16:06:52 -0000 Subject: [GHC] #11821: Internal error: not in scope during type checking, but it passed the renamer In-Reply-To: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> References: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> Message-ID: <061.70c92530a0e9e6c71e5abd683acef58b@haskell.org> #11821: Internal error: not in scope during type checking, but it passed the renamer -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Aha. Well removing that function is a Massive Step Forward none the less. I'm looking forward to it. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 16:08:15 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 16:08:15 -0000 Subject: [GHC] #11821: Internal error: not in scope during type checking, but it passed the renamer In-Reply-To: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> References: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> Message-ID: <061.4e49aae9bd730277ce1abe7e5837f7f5@haskell.org> #11821: Internal error: not in scope during type checking, but it passed the renamer -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): Indeed. And now I've fixed this bug, made dead simple by getting `splitTelescopeTvs` out of the way. You can see the fix on branch `wip/no- telescope-tvs`, but there's a small validation issue still outstanding. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 16:30:07 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 16:30:07 -0000 Subject: [GHC] #11982: Typechecking fails for parallel monad comprehensions with polymorphic let In-Reply-To: <046.cb35ad4ec343f26e487f6feef0b37095@haskell.org> References: <046.cb35ad4ec343f26e487f6feef0b37095@haskell.org> Message-ID: <061.07a51c2063f1969d846eea1b2fb073d4@haskell.org> #11982: Typechecking fails for parallel monad comprehensions with polymorphic let -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Yes the ''output'' of typechecking is impredicative, but the input is not, and plainly should not be rejected. But we may not want to just "enable impredicativity" because that ma allow too much. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 16:42:29 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 16:42:29 -0000 Subject: [GHC] #11970: Simplify Parent for patten synonyms In-Reply-To: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> References: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> Message-ID: <061.9e3df3f1e046cbf1e9bde3eb005324cd@haskell.org> #11970: Simplify Parent for patten synonyms -------------------------------------+------------------------------------- Reporter: simonpj | Owner: mpickering Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): I'm afraid I don't understand the problem with which you are wrestling. My suggestion is to radically simplify what happens * Always allow `T(K)` in the renamer. Make no attempt to check that K is a child of T. * Sort it out in `tcExports`. Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 16:45:08 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 16:45:08 -0000 Subject: [GHC] #11484: Type synonym using -XTypeInType can't be spliced with TH In-Reply-To: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> References: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> Message-ID: <065.eb435d0f0dd2c4bd86ab8d1b9211a6c9@haskell.org> #11484: Type synonym using -XTypeInType can't be spliced with TH -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1-rc1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): I've done this change, pending validation, etc. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 16:49:28 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 16:49:28 -0000 Subject: [GHC] #4012: Compilation results are not deterministic In-Reply-To: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> References: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> Message-ID: <058.dea533c6f7fc9f09ef6001e7965446e0@haskell.org> #4012: Compilation results are not deterministic -------------------------------------+------------------------------------- Reporter: kili | Owner: niteria Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 6.12.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: 11362 | Blocking: Related Tickets: #10424 | Differential Rev(s): Phab:D910, | Phab:D1073, Phab:D1133, Phab:D1192, | Phab:D1268, Phab:D1360, Phab:D1373, Wiki Page: | Phab:D1396, Phab:D1457, Phab:D1468, DeterministicBuilds | Phab:D1487, Phab:D1504, Phab:D1508 -------------------------------------+------------------------------------- Comment (by Bartosz Nitka ): In [changeset:"94320e1d34d14017cc9b38226ea78205a0a76a2b/ghc" 94320e1d/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="94320e1d34d14017cc9b38226ea78205a0a76a2b" Kill varSetElems try_tyvar_defaulting `varSetElems` introduces unnecessary nondeterminism and we can do the same thing deterministically for the same price. Test Plan: ./validate Reviewers: goldfire, austin, simonmar, bgamari, simonpj Reviewed By: simonpj Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2143 GHC Trac Issues: #4012 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 17:46:59 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 17:46:59 -0000 Subject: [GHC] #11984: Pattern match incompleteness / inaccessibility discrepancy Message-ID: <047.1cf132bd89a1199ee00c683072ed7b2c@haskell.org> #11984: Pattern match incompleteness / inaccessibility discrepancy -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Consider this module: {{{ {-# LANGUAGE PolyKinds, TypeOperators, DataKinds, TypeFamilies, GADTs #-} module Bug where data family Sing (a :: k) data Schema = Sch [Bool] data instance Sing (x :: Schema) where SSch :: Sing x -> Sing ('Sch x) data instance Sing (x :: [k]) where SNil :: Sing '[] SCons :: Sing a -> Sing b -> Sing (a ': b) data G a where GCons :: G ('Sch (a ': b)) eval :: G s -> Sing s -> () eval GCons s = case s of -- SSch SNil -> undefined SSch (SCons _ _) -> undefined }}} Upon seeing this, GHC says {{{ Bug.hs:21:9: warning: [-Wincomplete-patterns] Pattern match(es) are non-exhaustive In a case alternative: Patterns not matched: (SSch SNil) }}} So I uncomment the second-to-last line, inducing GHC to say {{{ Bug.hs:22:16: error: ? Couldn't match type ?a : b? with ?'[]? Inaccessible code in a pattern with constructor: SNil :: forall k. Sing '[], in a case alternative ? In the pattern: SNil In the pattern: SSch SNil In a case alternative: SSch SNil -> undefined }}} Thankfully, this pattern is much rarer than it once was, but it's a bit sad that it's still possible. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 19:41:29 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 19:41:29 -0000 Subject: [GHC] #11984: Pattern match incompleteness / inaccessibility discrepancy In-Reply-To: <047.1cf132bd89a1199ee00c683072ed7b2c@haskell.org> References: <047.1cf132bd89a1199ee00c683072ed7b2c@haskell.org> Message-ID: <062.be4079e0f37fad206effe486d2b8b902@haskell.org> #11984: Pattern match incompleteness / inaccessibility discrepancy -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * keywords: => PatternMatchWarnings * cc: gkaracha (added) Comment: This looks like a plain bug (in the exhaustiveness checker) to me. George? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 20:01:32 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 20:01:32 -0000 Subject: [GHC] #4012: Compilation results are not deterministic In-Reply-To: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> References: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> Message-ID: <058.5aa647b82f545404bd9e2568eb73c972@haskell.org> #4012: Compilation results are not deterministic -------------------------------------+------------------------------------- Reporter: kili | Owner: niteria Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 6.12.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: 11362 | Blocking: Related Tickets: #10424 | Differential Rev(s): Phab:D910, | Phab:D1073, Phab:D1133, Phab:D1192, | Phab:D1268, Phab:D1360, Phab:D1373, Wiki Page: | Phab:D1396, Phab:D1457, Phab:D1468, DeterministicBuilds | Phab:D1487, Phab:D1504, Phab:D1508 -------------------------------------+------------------------------------- Comment (by Bartosz Nitka ): In [changeset:"f13a8d219fbb16ece2bede66ac47f8599a86d3e2/ghc" f13a8d2/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="f13a8d219fbb16ece2bede66ac47f8599a86d3e2" Kill varSetElems in markNominal varSetElems introduces unnecessary nondeterminism and it was straighforward to just get a deterministic list. Test Plan: ./validate Reviewers: austin, goldfire, bgamari, simonmar, simonpj Reviewed By: simonpj Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2145 GHC Trac Issues: #4012 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 20:04:17 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 20:04:17 -0000 Subject: [GHC] #11821: Internal error: not in scope during type checking, but it passed the renamer In-Reply-To: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> References: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> Message-ID: <061.003a960a140b6d030cfa1f10705f1c91@haskell.org> #11821: Internal error: not in scope during type checking, but it passed the renamer -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: patch Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2146 Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * status: new => patch * differential: => Phab:D2146 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 20:04:37 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 20:04:37 -0000 Subject: [GHC] #11484: Type synonym using -XTypeInType can't be spliced with TH In-Reply-To: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> References: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> Message-ID: <065.732d526b15f62765dd97de289d6d4915@haskell.org> #11484: Type synonym using -XTypeInType can't be spliced with TH -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1-rc1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2146 Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * status: new => patch * differential: => Phab:D2146 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 20:10:45 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 20:10:45 -0000 Subject: [GHC] #11984: Pattern match incompleteness / inaccessibility discrepancy In-Reply-To: <047.1cf132bd89a1199ee00c683072ed7b2c@haskell.org> References: <047.1cf132bd89a1199ee00c683072ed7b2c@haskell.org> Message-ID: <062.e7bceed8a0ff3f6ec1b831f2a8c42361@haskell.org> #11984: Pattern match incompleteness / inaccessibility discrepancy -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: | PatternMatchWarnings Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by gkaracha): Replying to [comment:1 simonpj]: > This looks like a plain bug (in the exhaustiveness checker) to me. George? Ah, yes, indeed. The checker by design keeps the exhaustiveness and the redundancy checker synced, as well as both of them with the type checker. This is definitely a bug (or omission when we propagate type constraints for nested matches' checking?) of the implementation only. I will look into it :-) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 21:23:39 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 21:23:39 -0000 Subject: [GHC] #11985: Core lint error on record syntax update/pattern synonym Message-ID: <051.bfbd96cdb2d8f4dfe3f8d61c3585b311@haskell.org> #11985: Core lint error on record syntax update/pattern synonym -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple PatternSynonyms | Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- While on a flight I discovered some errors, if you load a file using record syntax for pattern synonyms: {{{#!hs module Foo where pattern Pair{x, y} = (x, y) }}} and load it with `-dcore-lint`: {{{ $ ghci -dcore-lint -ignore-dot-ghci -XPatternSynonyms /tmp/Foo.hs GHCi, version 8.1.20160419: http://www.haskell.org/ghc/ :? for help [1 of 1] Compiling Foo ( /tmp/Foo.hs, interpreted ) Ok, modules loaded: Foo. *Foo> (1, 2) { x = 10 } *** Core Lint errors : in result of desugar expression *** [...] }}} full error message attached. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 21:24:36 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 21:24:36 -0000 Subject: [GHC] #11985: Core lint error on record syntax update/pattern synonym In-Reply-To: <051.bfbd96cdb2d8f4dfe3f8d61c3585b311@haskell.org> References: <051.bfbd96cdb2d8f4dfe3f8d61c3585b311@haskell.org> Message-ID: <066.70c71ea3cdf40c92045d43af567760ee@haskell.org> #11985: Core lint error on record syntax update/pattern synonym -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Iceland_jack): * Attachment "Foo.log" added. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 21:28:30 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 21:28:30 -0000 Subject: [GHC] #11986: Record fields not defined with pattern synonym in ghci Message-ID: <051.325cb826f5f5ec0d1cb2c4996020063d@haskell.org> #11986: Record fields not defined with pattern synonym in ghci -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple PatternSynonyms | Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Another thing discovered while in the air: When you define pattern synonyms with record syntax, the fields aren't defined in GHCI: {{{#!hs $ ghci -ignore-dot-ghci -XPatternSynonyms GHCi, version 8.1.20160419: http://www.haskell.org/ghc/ :? for help Prelude> pattern Point {x, y} = (x, y) Prelude> :t x :1:1: error: Variable not in scope: x Prelude> }}} Works fine when imported from a file. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 21:34:20 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 21:34:20 -0000 Subject: [GHC] #11987: Allow record wildcards with pattern synonyms Message-ID: <051.5d09bf2154726e8ef31bd08d9049caaa@haskell.org> #11987: Allow record wildcards with pattern synonyms -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple PatternSynonyms | Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- With pattern synonym `pattern Point {x, y} = (x, y)` we can write {{{ >>> let { x = 1; y = 2 } in Point { x = x, y = y } (1, 2) }}} {{{ >>> let { x = 1; y = 2 } in Point { x, y } (1, 2) }}} but record wildcards ain't workin {{{#!hs >>> let { x = 1; y = 2 } in Point {..} :342:25-36: error: Pattern synonym ?Point? used as a data constructor }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 21:45:24 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 21:45:24 -0000 Subject: [GHC] #11987: Allow record wildcards with pattern synonyms In-Reply-To: <051.5d09bf2154726e8ef31bd08d9049caaa@haskell.org> References: <051.5d09bf2154726e8ef31bd08d9049caaa@haskell.org> Message-ID: <066.9bc0cfdb5693471dcaa4c0d9a05bc658@haskell.org> #11987: Allow record wildcards with pattern synonyms -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by mpickering): * cc: adamgundry (added) Comment: I was under the impression that Adam fixed this but maybe it was a different bug. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 21:58:10 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 21:58:10 -0000 Subject: [GHC] #11985: Core lint error on record syntax update/pattern synonym In-Reply-To: <051.bfbd96cdb2d8f4dfe3f8d61c3585b311@haskell.org> References: <051.bfbd96cdb2d8f4dfe3f8d61c3585b311@haskell.org> Message-ID: <066.61ad385c83c68dd5d0cfc3a218849748@haskell.org> #11985: Core lint error on record syntax update/pattern synonym -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by mpickering): This only happens when run in ghci. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 22:00:40 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 22:00:40 -0000 Subject: [GHC] #11987: Allow record wildcards with pattern synonyms In-Reply-To: <051.5d09bf2154726e8ef31bd08d9049caaa@haskell.org> References: <051.5d09bf2154726e8ef31bd08d9049caaa@haskell.org> Message-ID: <066.658baec7bae19611e313919c5d9d913e@haskell.org> #11987: Allow record wildcards with pattern synonyms -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by mpickering): Again, this only happens in ghci. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 22:25:42 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 22:25:42 -0000 Subject: [GHC] #11988: All ghc-compiled binaries seg-fault (on Windows) Message-ID: <046.238ed052ab9f92c55320cffd9643fede@haskell.org> #11988: All ghc-compiled binaries seg-fault (on Windows) -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Bad news. On Windows, every binary built with GHC seg-faults. Even {{{ main = print ?Hello? }}} Thus {{{ /cygdrive/c/tmp$ c:/code/HEAD/inplace/bin/ghc-stage1 Hello.hs [1 of 1] Compiling Main ( Hello.hs, Hello.o ) Linking Hello.exe ... /cygdrive/c/tmp$ ./Hello Segmentation fault/access violation in generated code }}} (And of course including the stage-2 compiler.) This started happening sometime in the last day or two; I don?t know exactly when. This is with a fresh tree, downloaded from the git repo, with config settings for validation. Might someone look at this? It?s pretty serious! Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 22:26:02 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 22:26:02 -0000 Subject: [GHC] #11988: All ghc-compiled binaries seg-fault (on Windows) In-Reply-To: <046.238ed052ab9f92c55320cffd9643fede@haskell.org> References: <046.238ed052ab9f92c55320cffd9643fede@haskell.org> Message-ID: <061.6b5360f0b75cea9544457b9f5a8a9ee7@haskell.org> #11988: All ghc-compiled binaries seg-fault (on Windows) -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by simonpj: @@ -1,1 +1,2 @@ - Bad news. On Windows, every binary built with GHC seg-faults. Even + Bad news. On Windows, every binary built with GHC HEAD (as of today) seg- + faults. Even New description: Bad news. On Windows, every binary built with GHC HEAD (as of today) seg- faults. Even {{{ main = print ?Hello? }}} Thus {{{ /cygdrive/c/tmp$ c:/code/HEAD/inplace/bin/ghc-stage1 Hello.hs [1 of 1] Compiling Main ( Hello.hs, Hello.o ) Linking Hello.exe ... /cygdrive/c/tmp$ ./Hello Segmentation fault/access violation in generated code }}} (And of course including the stage-2 compiler.) This started happening sometime in the last day or two; I don?t know exactly when. This is with a fresh tree, downloaded from the git repo, with config settings for validation. Might someone look at this? It?s pretty serious! Simon -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Tue Apr 26 22:37:27 2016 From: ghc-devs at haskell.org (GHC) Date: Tue, 26 Apr 2016 22:37:27 -0000 Subject: [GHC] #11985: Core lint error on record syntax update/pattern synonym In-Reply-To: <051.bfbd96cdb2d8f4dfe3f8d61c3585b311@haskell.org> References: <051.bfbd96cdb2d8f4dfe3f8d61c3585b311@haskell.org> Message-ID: <066.aa8d4634d84ffc01d486a5a28d069e84@haskell.org> #11985: Core lint error on record syntax update/pattern synonym -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: mpickering Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by mpickering): * owner: => mpickering -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 00:10:19 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 00:10:19 -0000 Subject: [GHC] #11985: Core lint error on record syntax update/pattern synonym In-Reply-To: <051.bfbd96cdb2d8f4dfe3f8d61c3585b311@haskell.org> References: <051.bfbd96cdb2d8f4dfe3f8d61c3585b311@haskell.org> Message-ID: <066.e9f957116030b89644a91c668defcf39@haskell.org> #11985: Core lint error on record syntax update/pattern synonym -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: mpickering Type: bug | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2147 Wiki Page: | -------------------------------------+------------------------------------- Changes (by mpickering): * status: new => patch * differential: => Phab:D2147 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 00:12:33 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 00:12:33 -0000 Subject: [GHC] #11987: Allow record wildcards with pattern synonyms which are defined in GHCi (was: Allow record wildcards with pattern synonyms) In-Reply-To: <051.5d09bf2154726e8ef31bd08d9049caaa@haskell.org> References: <051.5d09bf2154726e8ef31bd08d9049caaa@haskell.org> Message-ID: <066.7919bb53c0f852a0269c79d9185f250c@haskell.org> #11987: Allow record wildcards with pattern synonyms which are defined in GHCi -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 00:13:38 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 00:13:38 -0000 Subject: [GHC] #11986: Record fields not defined with pattern synonym in ghci In-Reply-To: <051.325cb826f5f5ec0d1cb2c4996020063d@haskell.org> References: <051.325cb826f5f5ec0d1cb2c4996020063d@haskell.org> Message-ID: <066.352667a5ec96cffbfc8837a120f05026@haskell.org> #11986: Record fields not defined with pattern synonym in ghci -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: duplicate | Keywords: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11985 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by mpickering): * status: new => closed * resolution: => duplicate * related: => #11985 Comment: The same as #11985. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 12:58:59 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 12:58:59 -0000 Subject: [GHC] #9758: By default, testsuite should clean up after successful tests In-Reply-To: <045.6afbb9f1f5e466d1289d5bd3af0bb1ad@haskell.org> References: <045.6afbb9f1f5e466d1289d5bd3af0bb1ad@haskell.org> Message-ID: <060.117ba66b0e6f26f2b1d270a300dcb429@haskell.org> #9758: By default, testsuite should clean up after successful tests -------------------------------------+------------------------------------- Reporter: ezyang | Owner: Type: task | Status: patch Priority: low | Milestone: 8.2.1 Component: Test Suite | Version: 7.9 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2148 Wiki Page: | -------------------------------------+------------------------------------- Changes (by thomie): * status: new => patch * differential: => Phab:D2148 * milestone: => 8.2.1 Comment: > I suggest to simply make `CLEANUP=1` the default Yes, let's do this. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 15:09:28 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 15:09:28 -0000 Subject: [GHC] #11961: PatBind test suite failure with `-DDEBUG` In-Reply-To: <046.8458f776be5ba55c048624dcb46a7891@haskell.org> References: <046.8458f776be5ba55c048624dcb46a7891@haskell.org> Message-ID: <061.6b419f00a319918fb77311da22e19ef7@haskell.org> #11961: PatBind test suite failure with `-DDEBUG` -------------------------------------+------------------------------------- Reporter: nomeata | Owner: simonpj Type: bug | Status: new Priority: high | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by nomeata): * owner: => simonpj Comment: Unless I am mistaken, this was introduced with simon?s changeset:9de405d7a7e746213238375dbbc69e9b5ea8c394/ghc. I take the liberty of assigning this to you, Simon. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 15:27:44 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 15:27:44 -0000 Subject: [GHC] #11989: Performance bug reading large-exponent float without explicit type Message-ID: <051.b1652ea713a69c873f7c28b572efbdef@haskell.org> #11989: Performance bug reading large-exponent float without explicit type -------------------------------------+------------------------------------- Reporter: bpearlmutter | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime | Version: 7.10.3 System | Keywords: | Operating System: Linux Architecture: x86_64 | Type of failure: Runtime (amd64) | performance bug Test Case: 1e1000000 :: | Blocked By: (RealFloat a => a) | Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- {{{ $ time echo '1e700000' | ghci GHCi, version 7.10.3: http://www.haskell.org/ghc/ :? for help Prelude> Infinity Prelude> Leaving GHCi. real 1m25.799s user 0m20.828s sys 0m9.624s $ time echo '1e700000::Double' | ghci GHCi, version 7.10.3: http://www.haskell.org/ghc/ :? for help Prelude> Infinity Prelude> Leaving GHCi. real 0m0.196s user 0m0.120s sys 0m0.032s $ time echo 1e-800000 | ghci GHCi, version 7.10.3: http://www.haskell.org/ghc/ :? for help Prelude> Killed real 2m8.879s user 0m6.684s sys 0m10.256s }}} Giving an explicit type `(RealFloat a => a)` doesn't make any difference. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 15:29:28 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 15:29:28 -0000 Subject: [GHC] #11834: GHC master, not compiling on Archlinux In-Reply-To: <045.4e01e4471eaa123aed65b47cf92d5739@haskell.org> References: <045.4e01e4471eaa123aed65b47cf92d5739@haskell.org> Message-ID: <060.d6daedcbd99aa1fbf493ee08041c1ef8@haskell.org> #11834: GHC master, not compiling on Archlinux -------------------------------------+------------------------------------- Reporter: nitrix | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: (Linking) | Resolution: | Keywords: Operating System: Linux | Architecture: x86_64 Type of failure: Building GHC | (amd64) failed | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Remi): * cc: remi.turk@? (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 16:05:28 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 16:05:28 -0000 Subject: [GHC] #10963: Beginner-targeted language extension In-Reply-To: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> References: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> Message-ID: <060.c6e70189918362d50ff5ade868fa47e7@haskell.org> #10963: Beginner-targeted language extension -------------------------------------+------------------------------------- Reporter: kanetw | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | [wiki:Design/GHCi/Type] | -------------------------------------+------------------------------------- Comment (by aavogt): `:set +t` seems to have been forgotten. I think the defaulted type could be tacked on if you are shown a value, since that value was calculated with a particular instance. For example: {{{ > :set +t > 1+1 2 -- current output it :: Num a => a }}} {{{ > :set +t > 1+1 2 :: Integer -- proposed it :: Num a => a }}} This case shouldn't change because nothing was evaluated {{{ > :set +t > let (x:xs) = [1 .. ] x :: (Num t, Enum t) => t xs :: (Num t, Enum t) => [t] }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 17:52:35 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 17:52:35 -0000 Subject: [GHC] #11990: Custom Type Error not getting triggered in the nested Type function call Message-ID: <047.cd64e02ac6207e6c5247bec38dfaa3ba@haskell.org> #11990: Custom Type Error not getting triggered in the nested Type function call -------------------------------------+------------------------------------- Reporter: magesh.b | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- I have partial type function which is invoked by another type function. When the inner type function fails with TypeError, outer type function is not been able to propagate that type error to its caller. As a result of it, I'm getting following error ? No instance for (KnownSymbol (NestedPartialTF (TypeError ...))) instead of ? Unexpected type @ NestedPartialTF: Char {{{#!hs {-# LANGUAGE DataKinds, TypeOperators, TypeFamilies, UndecidableInstances, ScopedTypeVariables, FlexibleContexts #-} -- | module CErrs where import GHC.TypeLits import Data.Proxy type family PartialTF t :: Symbol where PartialTF Int = "Int" PartialTF Bool = "Bool" PartialTF a = TypeError (Text "Unexpected type @ PartialTF: " :<>: ShowType a) type family NestedPartialTF (tsym :: Symbol) :: Symbol where NestedPartialTF "Int" = "int" NestedPartialTF "Bool" = "bool" NestedPartialTF a = TypeError (Text "Unexpected type @ NestedPartialTF: " :<>: ShowType a) testPartialTF :: forall a.(KnownSymbol (PartialTF a)) => a -> String testPartialTF t = symbolVal (Proxy :: Proxy (PartialTF a)) --t1 = testPartialTF 'a' {- Above code rightly fails with the following error: ? Unexpected type: Char ? In the expression: testPartialTF 'a' In an equation for ?t1?: t1 = testPartialTF 'a' -} -- Bug? testNesPartialTF :: forall a.(KnownSymbol (NestedPartialTF (PartialTF a))) => a -> String testNesPartialTF t = symbolVal (Proxy :: Proxy (NestedPartialTF (PartialTF a))) t2 = testNesPartialTF 'a' {- Above code fails with the following error: ? No instance for (KnownSymbol (NestedPartialTF (TypeError ...))) arising from a use of ?testNesPartialTF? ? In the expression: testNesPartialTF 'a' In an equation for ?t2?: t2 = testNesPartialTF 'a' -} }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 18:02:39 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 18:02:39 -0000 Subject: [GHC] #10053: Regression on MacOS platform, error in ghci calling main after loading compiled code: "Too late for parseStaticFlags..." In-Reply-To: <045.7defde488a4af19895968f8c8b9b5f95@haskell.org> References: <045.7defde488a4af19895968f8c8b9b5f95@haskell.org> Message-ID: <060.a466aaa2cc02c69d3288b9cad6d987ff@haskell.org> #10053: Regression on MacOS platform, error in ghci calling main after loading compiled code: "Too late for parseStaticFlags..." -------------------------------------+------------------------------------- Reporter: George | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.10.1-rc2 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Incorrect result | (amd64) at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by ak3n): * owner: ak3n => -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 19:55:15 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 19:55:15 -0000 Subject: [GHC] #11991: Generics deriving is quadratic Message-ID: <042.7735d6eb3027bc375c2ca53b639c140a@haskell.org> #11991: Generics deriving is quadratic -------------------------------------+------------------------------------- Reporter: nh2 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: Compile-time Unknown/Multiple | performance bug Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- I'm compiling some code with many sum type alternatives and it's absurdly slow. {{{ {-# LANGUAGE DeriveGeneric #-} import GHC.Generics (Generic) data D = D1 | D2 | ... | D400 deriving (Generic) main = return () }}} I did a little benchmark and it's actually precisely O(n?) in the number of alternatives. Easy repro: https://github.com/nh2/ghc-generics-deriving-is-slow/ I assume that this is a bug and it should be linear. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 19:57:06 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 19:57:06 -0000 Subject: [GHC] #11991: Generics deriving is quadratic In-Reply-To: <042.7735d6eb3027bc375c2ca53b639c140a@haskell.org> References: <042.7735d6eb3027bc375c2ca53b639c140a@haskell.org> Message-ID: <057.ae8026931f67fd268dc4ad9277df3d26@haskell.org> #11991: Generics deriving is quadratic -------------------------------------+------------------------------------- Reporter: nh2 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Generics Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by nh2): * keywords: => Generics -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 19:57:47 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 19:57:47 -0000 Subject: [GHC] #11991: Generics deriving is quadratic In-Reply-To: <042.7735d6eb3027bc375c2ca53b639c140a@haskell.org> References: <042.7735d6eb3027bc375c2ca53b639c140a@haskell.org> Message-ID: <057.e84cd94566151896bdb55658e62fd653@haskell.org> #11991: Generics deriving is quadratic -------------------------------------+------------------------------------- Reporter: nh2 | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Generics Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by nh2: @@ -19,0 +19,2 @@ + + Note that it is also quadratic in memory usage. New description: I'm compiling some code with many sum type alternatives and it's absurdly slow. {{{ {-# LANGUAGE DeriveGeneric #-} import GHC.Generics (Generic) data D = D1 | D2 | ... | D400 deriving (Generic) main = return () }}} I did a little benchmark and it's actually precisely O(n?) in the number of alternatives. Easy repro: https://github.com/nh2/ghc-generics-deriving-is-slow/ I assume that this is a bug and it should be linear. Note that it is also quadratic in memory usage. -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 19:59:05 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 19:59:05 -0000 Subject: [GHC] #11415: pandoc-types fails to build on 4 GB machine In-Reply-To: <049.3f4a5adbe3ed958aec19c26d7f43bc21@haskell.org> References: <049.3f4a5adbe3ed958aec19c26d7f43bc21@haskell.org> Message-ID: <064.2aeb9cc0c46f1990bb3f40933c58e938@haskell.org> #11415: pandoc-types fails to build on 4 GB machine -------------------------------------+------------------------------------- Reporter: pavolzetor | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Generics Operating System: Linux | Architecture: x86_64 Type of failure: Compile-time | (amd64) performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nh2): See also #11991 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 20:04:32 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 20:04:32 -0000 Subject: [GHC] #11991: Generics deriving is quadratic In-Reply-To: <042.7735d6eb3027bc375c2ca53b639c140a@haskell.org> References: <042.7735d6eb3027bc375c2ca53b639c140a@haskell.org> Message-ID: <057.0bdbec1b4762c36f3e08a72b9f4c68e0@haskell.org> #11991: Generics deriving is quadratic -------------------------------------+------------------------------------- Reporter: nh2 | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: duplicate | Keywords: Generics Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by nh2): * status: new => closed * resolution: => duplicate Comment: Looks like I just duplicated #5642. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 20:05:48 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 20:05:48 -0000 Subject: [GHC] #5642: Deriving Generic of a big type takes a long time and lots of space In-Reply-To: <049.904645e363a227f735eb4cfb7fbae513@haskell.org> References: <049.904645e363a227f735eb4cfb7fbae513@haskell.org> Message-ID: <064.92518020cb157bafc6416b486c09bc52@haskell.org> #5642: Deriving Generic of a big type takes a long time and lots of space -------------------------------------+------------------------------------- Reporter: basvandijk | Owner: bgamari Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.3 Resolution: | Keywords: deriving- | perf, Generics Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple performance bug | Test Case: T5642 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nh2): I just filed a duplicate of this (#11991) with another easy-to-run repro that demonstrates that it's precisely O(n?) for sum types: https://github.com/nh2/ghc-generics-deriving-is-slow/ -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 20:53:30 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 20:53:30 -0000 Subject: [GHC] #11990: Custom Type Error not getting triggered in the nested Type function call In-Reply-To: <047.cd64e02ac6207e6c5247bec38dfaa3ba@haskell.org> References: <047.cd64e02ac6207e6c5247bec38dfaa3ba@haskell.org> Message-ID: <062.01d3c45ac44690cd75c0155d9af5e58d@haskell.org> #11990: Custom Type Error not getting triggered in the nested Type function call -------------------------------------+------------------------------------- Reporter: magesh.b | Owner: Type: bug | Status: new Priority: normal | Milestone: 8.0.1 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by Iceland_jack): * cc: Iceland_jack (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 20:55:56 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 20:55:56 -0000 Subject: [GHC] #10963: Beginner-targeted language extension In-Reply-To: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> References: <045.cc74d15b01a49696436fbbb3b560b576@haskell.org> Message-ID: <060.fc5959b44128d2e619893b8b2d438c9f@haskell.org> #10963: Beginner-targeted language extension -------------------------------------+------------------------------------- Reporter: kanetw | Owner: Type: feature request | Status: patch Priority: normal | Milestone: Component: Compiler | Version: 7.10.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2136 Wiki Page: | [wiki:Design/GHCi/Type] | -------------------------------------+------------------------------------- Comment (by Iceland_jack): Replying to [comment:7 takenobu]: > Hi, > > Is Alexander Kjeldaas's representation idea useful? [1] > > [1] https://mail.haskell.org/pipermail/ghc- devs/2016-February/011398.html > > > {{{ > Prelude> :t foldr > foldr :: Foldable t => (a -> b -> b) -> b -> t a -> b > For example: > foldr :: (a -> b -> b) -> b -> [a] -> b > foldr :: (a -> b -> b) -> b -> Maybe a -> b > foldr :: (a -> b -> b) -> b -> Identity a -> b > foldr :: (a -> b -> b) -> b -> (c, a) -> b > and more > }}} See #11439 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 21:20:11 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 21:20:11 -0000 Subject: [GHC] #11979: ghc: panic! (the 'impossible' happened) In-Reply-To: <049.711c423e73df29e2ed91fe44485c095f@haskell.org> References: <049.711c423e73df29e2ed91fe44485c095f@haskell.org> Message-ID: <064.1fd314e955edd390dcb0cbdfadd4bad5@haskell.org> #11979: ghc: panic! (the 'impossible' happened) -------------------------------------+------------------------------------- Reporter: javierlopm | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.6.3 Resolution: fixed | Keywords: panic Operating System: Linux | Architecture: Type of failure: Documentation | Unknown/Multiple bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * status: new => closed * resolution: => fixed Comment: HEAD (and I guess 8.0) says {{{ T11979.hs:11:19: error: Record syntax is illegal here: {position :: Pos, content :: String} }}} which is right. So I'll close as fixed. Simon -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 21:24:36 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 21:24:36 -0000 Subject: [GHC] #5642: Deriving Generic of a big type takes a long time and lots of space In-Reply-To: <049.904645e363a227f735eb4cfb7fbae513@haskell.org> References: <049.904645e363a227f735eb4cfb7fbae513@haskell.org> Message-ID: <064.df10cc1933f1c0fe71e8c2e0fb0638ae@haskell.org> #5642: Deriving Generic of a big type takes a long time and lots of space -------------------------------------+------------------------------------- Reporter: basvandijk | Owner: bgamari Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.3 Resolution: | Keywords: deriving- | perf, Generics Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple performance bug | Test Case: T5642 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by bgamari): The profile compiling `Data400.hs` from the repo given in comment:33 looks like this, {{{ Wed Apr 27 23:26 2016 Time and Allocation Profiling Report (Final) ghc +RTS -hc -p -RTS -B/opt/exp/ghc/roots/profiled/lib/ghc-8.1.20160222 Data400.hs -fforce- recomp total time = 5.12 secs (5118 ticks @ 1000 us, 1 processor) total alloc = 7,708,824,224 bytes (excludes profiling overheads) COST CENTRE MODULE %time %alloc canEvVar TcCanonical 41.0 45.8 zonkTopDecls TcRnDriver 17.4 25.3 CorePrep HscMain 6.4 7.5 SimplTopBinds SimplCore 5.9 2.6 CoreTidy HscMain 5.5 5.6 Simplify SimplCore 4.2 0.0 deSugar HscMain 3.6 1.7 tc_rn_src_decls TcRnDriver 3.2 2.9 solve_loop TcInteract 2.5 0.7 OccAnal SimplCore 1.6 0.2 pprNativeCode AsmCodeGen 1.1 1.3 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 21:44:49 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 21:44:49 -0000 Subject: [GHC] #11439: Request for comments: Allow duplicate type signatures In-Reply-To: <051.e7fa516c0e4f1f1253703388b646123a@haskell.org> References: <051.e7fa516c0e4f1f1253703388b646123a@haskell.org> Message-ID: <066.9e216a48937c3d0c049159ff40b0048f@haskell.org> #11439: Request for comments: Allow duplicate type signatures -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by niteria): * cc: niteria (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 22:32:57 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 22:32:57 -0000 Subject: [GHC] #11992: RFC, add Suc to base Message-ID: <051.4a66b63f2092688496d35b0af74a94d4@haskell.org> #11992: RFC, add Suc to base -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: | Version: 8.1 libraries/base | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- {{{#!hs hasSuc :: Int -> Maybe Int hasSuc n = [ n - 1 | n > 0 ] pattern Suc :: Int -> Int pattern Suc n <- (hasSuc -> Just n) where Suc n = n + 1 }}} with a more general type -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 22:39:51 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 22:39:51 -0000 Subject: [GHC] #11993: RFC, allow local bindings in pattern synonyms Message-ID: <051.8c746ee9d0f7bcf6a2764a5c20344e08@haskell.org> #11993: RFC, allow local bindings in pattern synonyms -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature | Status: new request | Priority: normal | Milestone: Component: Compiler | Version: Keywords: | Operating System: Unknown/Multiple PatternSynonyms | Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Code from #11992, allow users to write something like {{{#!hs pattern Suc :: Int -> Int pattern Suc n <- (hasSuc -> Just n) where Suc n = n + 1 hasSuc :: Int -> Maybe Int hasSuc n = [ n - 1 | n > 0 ] }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 22:50:15 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 22:50:15 -0000 Subject: [GHC] #11992: RFC, add Suc to base In-Reply-To: <051.4a66b63f2092688496d35b0af74a94d4@haskell.org> References: <051.4a66b63f2092688496d35b0af74a94d4@haskell.org> Message-ID: <066.782c0f86965012d2db75fb4157a0b579@haskell.org> #11992: RFC, add Suc to base -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by mpickering): Please can you add some motivation for this? Seems like something that could just be provided by a library. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 23:14:36 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 23:14:36 -0000 Subject: [GHC] #11767: Add @since annotations for base instances In-Reply-To: <046.80486230653199e8f5fef1dcd513180c@haskell.org> References: <046.80486230653199e8f5fef1dcd513180c@haskell.org> Message-ID: <061.ed86791f2d7d1ccbf81155703944b06b@haskell.org> #11767: Add @since annotations for base instances -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: task | Status: new Priority: normal | Milestone: 8.2.1 Component: Core Libraries | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11768 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * cc: RyanGlScott (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Wed Apr 27 23:14:59 2016 From: ghc-devs at haskell.org (GHC) Date: Wed, 27 Apr 2016 23:14:59 -0000 Subject: [GHC] #11768: Need a way to attach Haddock documentation to derived instances In-Reply-To: <046.f8385aa0e2bf22414748bbc6aca23dc7@haskell.org> References: <046.f8385aa0e2bf22414748bbc6aca23dc7@haskell.org> Message-ID: <061.5042c2f326e9438bc72c50b06dbba5d4@haskell.org> #11768: Need a way to attach Haddock documentation to derived instances -------------------------------------+------------------------------------- Reporter: bgamari | Owner: Type: feature request | Status: new Priority: normal | Milestone: 8.2.1 Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #11767 | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * cc: RyanGlScott (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 02:29:17 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 02:29:17 -0000 Subject: [GHC] #11992: RFC, add Suc to base In-Reply-To: <051.4a66b63f2092688496d35b0af74a94d4@haskell.org> References: <051.4a66b63f2092688496d35b0af74a94d4@haskell.org> Message-ID: <066.cc70314e109287e88dc1d7026479d6dd@haskell.org> #11992: RFC, add Suc to base -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Iceland_jack): Basically the same [https://prime.haskell.org/wiki/RemoveNPlusK rationale] as for `NPlusKPatterns` without some of its problems (doesn't require an extension or non-standard syntax), natural numbers are one of the most prominent inductive definitions (`data N = O | S N`) and a lot of code mirrors that. Little mental prowess is needed to translate {{{#!hs fac (S n) = (S n) * fac n }}} into {{{#!hs fac n = n * fac (n - 1) }}} but I have found myself itching for it in larger examples. Not a great rationale? Agreed. `BUT!`, no-one said ever, `does it even cover patterns like (5 + n)`? Funny you ask, in GHC head we can define (but ''not actually use'' `S` as a pattern, I'm interested being wrong): {{{#!hs hasS :: forall n. KnownNat n => Integer -> Maybe Integer hasS n = [ n - natVal @n Proxy | n >= natVal @n Proxy ] pattern S :: forall n. KnownNat n => Integer -> Integer pattern S n <- (hasS @n -> Just n) where S n = n + natVal @n Proxy }}} and if #11350 gets implemented hopefully it can be used as `S @5 n`. Then all we need is some type defaulting such that `S m` and `S @1 m` are equivalent, where if a constraint `KnownNat n` is not satisfied it defaults to `n ~ 1`... or is that beyond the pale? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 03:14:27 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 03:14:27 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.f190b6995a2bf3aa2c8f4f9499536322@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Comment (by erikd): My friend `printf` tells me that when the value of `size` is less than `sizeofW(StgThunkHeader)` when the closure type is `WHITEHOLE` which seems legitimate. Since everything seems legitimate, the solution to this may simply be to add a check: {{{ if (size > sizeofW(StgThunkHeader)) { for (i = 0; i < size - sizeofW(StgThunkHeader); i++) { ((StgThunk *)(p))->payload[i] = 0; } } }}} @simonmar does this seem right? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 05:53:39 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 05:53:39 -0000 Subject: [GHC] #11744: Latest Xcode update violates POSIX compliance of `nm -P` In-Reply-To: <042.af01bf0c9281d3187ce47b8cda7a587e@haskell.org> References: <042.af01bf0c9281d3187ce47b8cda7a587e@haskell.org> Message-ID: <057.bcd0de2948a95b2482c0f51e23d83bee@haskell.org> #11744: Latest Xcode update violates POSIX compliance of `nm -P` ---------------------------------+---------------------------------------- Reporter: hvr | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Build System | Version: Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): phab:D2113 Wiki Page: | ---------------------------------+---------------------------------------- Comment (by ilovezfs): Unsurprisingly, especially since the bug is in the upstream LLVM code, it's not fixed in 7.3.1. However, this may be a relatively simple workaround until it's fixed. On OS X, these all appear to have the same output: With Xcode >= 7.3, {{{ nm $k | awk '{ print $NF" "$2" "$1" 0" }' llvm-nm $k | awk '{ print $NF" "$2" "$1" 0" }' nm-classic $k | awk '{ print $NF" "$2" "$1" 0" }' nm-classic -P $k }}} With Xcode < 7.3, {{{ nm $k | awk '{ print $NF" "$2" "$1" 0" }' nm -P $k }}} So {{{ if darwin, `nm $k | awk '{ print $NF" "$2" "$1" 0" }'` else `nm -P` }}} should give the same output regardless of platform or Xcode version. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 08:22:37 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 08:22:37 -0000 Subject: [GHC] #11992: RFC, add Suc to base In-Reply-To: <051.4a66b63f2092688496d35b0af74a94d4@haskell.org> References: <051.4a66b63f2092688496d35b0af74a94d4@haskell.org> Message-ID: <066.9a7f25a184088962f76afa3fd54d4e88@haskell.org> #11992: RFC, add Suc to base -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by nomeata): I?m not convinced that this is `base` material. Most pros in [wiki:RemoveNPlusK] relate to teaching, and I am not sure how many educators want to drag in pattern synonyms into their courses. And if they want, they can simply provide a custom `Nat` module for their students. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 08:58:42 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 08:58:42 -0000 Subject: [GHC] #11992: RFC, add Suc to base In-Reply-To: <051.4a66b63f2092688496d35b0af74a94d4@haskell.org> References: <051.4a66b63f2092688496d35b0af74a94d4@haskell.org> Message-ID: <066.4324e6891ccee84faf903502f7f5307c@haskell.org> #11992: RFC, add Suc to base -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: libraries/base | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Iceland_jack): Fair enough :) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 11:59:20 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 11:59:20 -0000 Subject: [GHC] #11994: ghci not applying defaulting when showing type Message-ID: <049.475a45c3103b3dfe940d6a2c02766dcc@haskell.org> #11994: ghci not applying defaulting when showing type -------------------------------------+------------------------------------- Reporter: j.waldmann | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- This does not look right: {{{ Prelude> :set +t Prelude> 1e1000 Infinity it :: Fractional t => t }}} because the type actually is (defaulted to) `Double`? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 12:05:00 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 12:05:00 -0000 Subject: [GHC] #11994: ghci not applying defaulting when showing type In-Reply-To: <049.475a45c3103b3dfe940d6a2c02766dcc@haskell.org> References: <049.475a45c3103b3dfe940d6a2c02766dcc@haskell.org> Message-ID: <064.3e7ceed14b3a3aac10a57f3978885200@haskell.org> #11994: ghci not applying defaulting when showing type -------------------------------------+------------------------------------- Reporter: j.waldmann | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Description changed by j.waldmann: @@ -11,0 +11,8 @@ + + (but is it really? I don't see default rules for `Fractional` + in the ghc docs + https://downloads.haskell.org/~ghc/latest/docs/html/users_guide + /interactive-evaluation.html#extended-default-rules or in the language + standard https://www.haskell.org/onlinereport/decls.html#sect4.3.4 ) + + How can I find the defaulted type in `ghci`? New description: This does not look right: {{{ Prelude> :set +t Prelude> 1e1000 Infinity it :: Fractional t => t }}} because the type actually is (defaulted to) `Double`? (but is it really? I don't see default rules for `Fractional` in the ghc docs https://downloads.haskell.org/~ghc/latest/docs/html/users_guide /interactive-evaluation.html#extended-default-rules or in the language standard https://www.haskell.org/onlinereport/decls.html#sect4.3.4 ) How can I find the defaulted type in `ghci`? -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 12:20:25 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 12:20:25 -0000 Subject: [GHC] #11989: Performance bug reading large-exponent float without explicit type In-Reply-To: <051.b1652ea713a69c873f7c28b572efbdef@haskell.org> References: <051.b1652ea713a69c873f7c28b572efbdef@haskell.org> Message-ID: <066.63b3c738caeb2a98bcede1cd80634e5f@haskell.org> #11989: Performance bug reading large-exponent float without explicit type -------------------------------------+------------------------------------- Reporter: bpearlmutter | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Runtime System | Version: 7.10.3 Resolution: | Keywords: Operating System: Linux | Architecture: x86_64 | (amd64) Type of failure: Runtime | Test Case: 1e1000000 :: performance bug | (RealFloat a => a) Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by j.waldmann): This happens with 8-rc4 as well. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 12:25:27 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 12:25:27 -0000 Subject: [GHC] #11994: ghci not applying defaulting when showing type In-Reply-To: <049.475a45c3103b3dfe940d6a2c02766dcc@haskell.org> References: <049.475a45c3103b3dfe940d6a2c02766dcc@haskell.org> Message-ID: <064.65860e49c6dc703cf28144f1fb511b05@haskell.org> #11994: ghci not applying defaulting when showing type -------------------------------------+------------------------------------- Reporter: j.waldmann | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by kanetw): Fractional implies Num, and Num can default. I don't know if `:set +t` should show the defaulted or polymorphic type. I always interpreted it as "show the expression's :t afterwards" -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 12:48:04 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 12:48:04 -0000 Subject: [GHC] #4012: Compilation results are not deterministic In-Reply-To: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> References: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> Message-ID: <058.cb5ef4748171a994f26904e6b4698435@haskell.org> #4012: Compilation results are not deterministic -------------------------------------+------------------------------------- Reporter: kili | Owner: niteria Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 6.12.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: 11362 | Blocking: Related Tickets: #10424 | Differential Rev(s): Phab:D910, | Phab:D1073, Phab:D1133, Phab:D1192, | Phab:D1268, Phab:D1360, Phab:D1373, Wiki Page: | Phab:D1396, Phab:D1457, Phab:D1468, DeterministicBuilds | Phab:D1487, Phab:D1504, Phab:D1508 -------------------------------------+------------------------------------- Comment (by Bartosz Nitka ): In [changeset:"82538f65f48f370764691264c3c71b975fd43e16/ghc" 82538f65/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="82538f65f48f370764691264c3c71b975fd43e16" Kill varSetElems in injImproveEqns We want to remove varSetElems at the source level because it might be a source of nondeterminism. I don't think it introduces nondeterminism here, but it's easy to do the same thing deterministically for the same price. instFlexiTcS :: [TKVar] -> TcS (TCvSubst, [TcType]) instFlexiTcS currently gives the range of the produced substitution as the second element of the tuple, but it's not used anywhere right now. If it started to be used in the code I'm modifying it would cause nondeterminism problems. Test Plan: ./validate Reviewers: austin, goldfire, bgamari, simonmar, simonpj Reviewed By: simonpj Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2149 GHC Trac Issues: #4012 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 14:25:25 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 14:25:25 -0000 Subject: [GHC] #5642: Deriving Generic of a big type takes a long time and lots of space In-Reply-To: <049.904645e363a227f735eb4cfb7fbae513@haskell.org> References: <049.904645e363a227f735eb4cfb7fbae513@haskell.org> Message-ID: <064.4b1c3b941a3bba6238c0afaa515fdcc2@haskell.org> #5642: Deriving Generic of a big type takes a long time and lots of space -------------------------------------+------------------------------------- Reporter: basvandijk | Owner: bgamari Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.3 Resolution: | Keywords: deriving- | perf, Generics Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple performance bug | Test Case: T5642 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): Do read comment:8. I think there is something fundamentally difficult here. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 16:20:59 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 16:20:59 -0000 Subject: [GHC] #11994: ghci not applying defaulting when showing type In-Reply-To: <049.475a45c3103b3dfe940d6a2c02766dcc@haskell.org> References: <049.475a45c3103b3dfe940d6a2c02766dcc@haskell.org> Message-ID: <064.2b9fa59ec5b866656ad9bc0e085a972e@haskell.org> #11994: ghci not applying defaulting when showing type -------------------------------------+------------------------------------- Reporter: j.waldmann | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by aavogt): You could (ab)use do notation to get the defaulted type: {{{ > :set +t Prelude> x <- return $ 1+1 x :: Integer }}} The `it` variable is actually generalized, so the reported type is right. After all this works: {{{ Prelude> :set +t Prelude> 1+1 2 it :: Num a => a Prelude> (it :: Int, it :: Double) (2,2.0) it :: (Int, Double) }}} `-XMonoLocalBinds` keeps let from being generalized in files (ie. `let x = 1 in (x::Int,x::Integer)` becomes a type error), so I thought it might make a difference with respect to generalizing `it`. But it has no effect in ghci, not even for the `let x = ...` expression above. At least Richard Eisenberg seems to have said that `MonoLocalBinds` is irrelevant for ghci in a slightly different scenario: ). -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 16:32:16 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 16:32:16 -0000 Subject: [GHC] #11976: Error message mentions impredicative polymorphism In-Reply-To: <051.4851271d9a01683dfc42210ca66e777c@haskell.org> References: <051.4851271d9a01683dfc42210ca66e777c@haskell.org> Message-ID: <066.29ddbb73495f0646cbabab1b5cc593ee@haskell.org> #11976: Error message mentions impredicative polymorphism -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Simon Peyton Jones ): In [changeset:"4c746cb2886b06ca53a2edb62188827c3dbccce0/ghc" 4c746cb/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="4c746cb2886b06ca53a2edb62188827c3dbccce0" Add missing solveEqualities I'd missed a call to solveEqualities in the partial-type-sig case of TcBinds.tcUserTypeSig. Also the checkValidType test done there best done after inference, in checkInferredPolyId (and is already done there). Fixes Trac #11976 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 16:36:04 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 16:36:04 -0000 Subject: [GHC] #11976: Error message mentions impredicative polymorphism In-Reply-To: <051.4851271d9a01683dfc42210ca66e777c@haskell.org> References: <051.4851271d9a01683dfc42210ca66e777c@haskell.org> Message-ID: <066.565cabf3525a5447f45aaa7825ecb60b@haskell.org> #11976: Error message mentions impredicative polymorphism -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: partial- | sigs/should_fail/T11976 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by simonpj): * status: new => merge * testcase: => partial-sigs/should_fail/T11976 * milestone: => 8.0.2 Comment: This fixes a real bug, and I don't think it'll break anything, but I'm doubtful about merging anything after the final release candidate. So let's leave this for the patch release. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 16:39:03 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 16:39:03 -0000 Subject: [GHC] #11970: Simplify Parent for patten synonyms In-Reply-To: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> References: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> Message-ID: <061.e53928578b14d82c66307c894728c15c@haskell.org> #11970: Simplify Parent for patten synonyms -------------------------------------+------------------------------------- Reporter: simonpj | Owner: mpickering Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by mpickering): Firstly, Simon and I talked this morning about this and he suggested my problem was because the constructor names were in the wrong namespace. His hunch was correct. However, there is an unforseen problem with this approach. Say that both modules `M` and `N` export symbols which have the same name, if one of them is a record selector and we try and export it with its parent then we can an ambiguous name warning. Concretely {{{ module M where data T = T { f :: Int } }}} {{{ module N where f = "f" }}} {{{ module Foo (T(f)) where import M import N }}} In this example, `f` is looked up but it is ambiguous whether it should be `N.f` or `M.T.f`. This currently works because renaming for children in export lists is a bit weird and converts the RdrNames to FastStrings and only checks that they are indeed children of the parent without using any of the `lookup*` functions. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 16:43:43 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 16:43:43 -0000 Subject: [GHC] #11970: Simplify Parent for patten synonyms In-Reply-To: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> References: <046.99b58fbbe4691b1cc88a00dd47c4a70f@haskell.org> Message-ID: <061.cf20d6c2f3901d0748ff47576cb8532f@haskell.org> #11970: Simplify Parent for patten synonyms -------------------------------------+------------------------------------- Reporter: simonpj | Owner: mpickering Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by simonpj): This is very similar to {{{ import M import N foo = T { f = 3 } }}} where we disambiguate 'f' (via `lookupSubBndrOcc`) to the `f` that comes from `T`. Can't we do ''exactly'' the same for `T(f)` in an export list? -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 17:47:34 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 17:47:34 -0000 Subject: [GHC] #11994: ghci not applying defaulting when showing type In-Reply-To: <049.475a45c3103b3dfe940d6a2c02766dcc@haskell.org> References: <049.475a45c3103b3dfe940d6a2c02766dcc@haskell.org> Message-ID: <064.d582e74515429cd42ce904d5d992a840@haskell.org> #11994: ghci not applying defaulting when showing type -------------------------------------+------------------------------------- Reporter: j.waldmann | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): I don't think `-XMonoLocalBinds` is at issue here. That extension is implied by `-XTypeFamilies` and `-XGADTs` but is not on by default. What is at issue is the Dreaded Monomorphism Restriction, which is disabled by default in GHCi. If you want defaulting in GHCi, you may wish to see #10963. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 20:30:00 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 20:30:00 -0000 Subject: [GHC] #4012: Compilation results are not deterministic In-Reply-To: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> References: <043.9c3dc141e8901acb12e4d7c1e6038096@haskell.org> Message-ID: <058.f73f765e08469e37e1f2d76b712bf9b9@haskell.org> #4012: Compilation results are not deterministic -------------------------------------+------------------------------------- Reporter: kili | Owner: niteria Type: bug | Status: new Priority: high | Milestone: 8.2.1 Component: Compiler | Version: 6.12.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Other | Test Case: Blocked By: 11362 | Blocking: Related Tickets: #10424 | Differential Rev(s): Phab:D910, | Phab:D1073, Phab:D1133, Phab:D1192, | Phab:D1268, Phab:D1360, Phab:D1373, Wiki Page: | Phab:D1396, Phab:D1457, Phab:D1468, DeterministicBuilds | Phab:D1487, Phab:D1504, Phab:D1508 -------------------------------------+------------------------------------- Comment (by Bartosz Nitka ): In [changeset:"3c426b0552dffa82f1663f2eca19188afe247865/ghc" 3c426b0/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="3c426b0552dffa82f1663f2eca19188afe247865" Add uniqSetAny and uniqSetAll and use them There are couple of places where we do `foldUniqSet` just to compute `any` or `all`. `foldUniqSet` is non-deterministic in the general case and `any` and `all` also read nicer. Test Plan: ./validate Reviewers: simonmar, goldfire, simonpj, bgamari, austin Reviewed By: simonpj Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2156 GHC Trac Issues: #4012 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 21:09:28 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 21:09:28 -0000 Subject: [GHC] #5054: LLVM Errors with test cases In-Reply-To: <045.2eda8b1126eeb5920fd8b8afcbf7c142@haskell.org> References: <045.2eda8b1126eeb5920fd8b8afcbf7c142@haskell.org> Message-ID: <060.fa92e1092e205d79d4f2ea16ca1965f1@haskell.org> #5054: LLVM Errors with test cases ---------------------------------------+--------------------------------- Reporter: arsenm | Owner: dterei Type: bug | Status: closed Priority: normal | Milestone: 7.4.1 Component: Compiler (LLVM) | Version: 7.0.2 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: Unknown/Multiple Type of failure: Compile-time crash | Test Case: Blocked By: | Blocking: ---------------------------------------+--------------------------------- Comment (by Thomas Miedema ): In [changeset:"e20b3ed0d0a3eda9b52544f06694667ddc2dd3a1/ghc" e20b3ed0/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="e20b3ed0d0a3eda9b52544f06694667ddc2dd3a1" Testsuite: delete T5054 and T5054_2 (#5054) These tests no longer compile, because the hmatrix api has completely changed. Even if we managed to fix the tests, I don't think they would provided much value, since the ghc/llvm bug from #5054 was not reproducible in the first place. Reviewed by: bgamari Differential Revision: https://phabricator.haskell.org/D2139 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 21:10:27 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 21:10:27 -0000 Subject: [GHC] #11994: ghci not applying defaulting when showing type In-Reply-To: <049.475a45c3103b3dfe940d6a2c02766dcc@haskell.org> References: <049.475a45c3103b3dfe940d6a2c02766dcc@haskell.org> Message-ID: <064.68826bf0e6cade9a0218eba05259bbb5@haskell.org> #11994: ghci not applying defaulting when showing type -------------------------------------+------------------------------------- Reporter: j.waldmann | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by j.waldmann): > if you want defaulting ... This is not about changing the defaulting rules. It's just about the output of `:set +t`, which looked misleading to me. https://mail.haskell.org/pipermail/ghc-devs/2016-April/011958.html I did not realize that `it` is actually polymorphic. So the output is correct. But then the type of `it` is not the type of the value that is being printed - which is again strange. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Thu Apr 28 21:40:11 2016 From: ghc-devs at haskell.org (GHC) Date: Thu, 28 Apr 2016 21:40:11 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.a685407dd9210e97214e6d55ad906f61@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): Wiki Page: | ---------------------------------+---------------------------------------- Comment (by Erik de Castro Lopo ): In [changeset:"bcfee2181e7b7edfea3473ec408a3a2a1815ecff/ghc" bcfee218/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="bcfee2181e7b7edfea3473ec408a3a2a1815ecff" rts/LdvProfile.c: Fix NULL dereference on shutdown Test Plan: validate Reviewers: carter, austin, simonmar, bgamari Reviewed By: simonmar, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2154 GHC Trac Issues: #11978 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 01:43:13 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 01:43:13 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.063fc128538ea414ab78752ff72fa450@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: patch Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): phab:D2159 Wiki Page: | ---------------------------------+---------------------------------------- Changes (by erikd): * status: new => patch * differential: => phab:D2159 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 03:49:06 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 03:49:06 -0000 Subject: [GHC] #11740: RFC kind synonyms In-Reply-To: <051.0e72c4f1c3d54cad33a28cc5a9b7fcc3@haskell.org> References: <051.0e72c4f1c3d54cad33a28cc5a9b7fcc3@haskell.org> Message-ID: <066.67d88d6a09f025253cda5aee845d9ddd@haskell.org> #11740: RFC kind synonyms -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Iceland_jack): {{{#!hs type NoConstraint = (() :: Constraint) }}} from [https://www.cs.ox.ac.uk/projects/utgp/school/andres.pdf Applying Type-Level and Generic Programming in Haskell] -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 04:39:47 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 04:39:47 -0000 Subject: [GHC] #11995: Can't infer type Message-ID: <051.ecd85ed869df953db3456994d5047fa3@haskell.org> #11995: Can't infer type -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 (Type checker) | Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- {{{#!hs import Data.Kind data NP :: forall k. (? ? Type) ? ([k] ? Type) where Nil :: NP f '[] (:*) :: f x ? NP f xs ? NP f (x:xs) newtype K a b = K a deriving Show unK (K a) = a h'collapse :: NP (K a) xs -> [a] h'collapse = \case Nil -> [] K x:*xs -> x : h'collapse xs }}} if we replace `xs` by an underscore: {{{ tJN0.hs:13:29-30: error: ? ? Could not deduce: (xs :: [?]) ~~ ((':) ? x xs :: [?]) from the context: ((k :: *) ~~ (? :: *), (t :: [k]) ~~ ((':) ? x xs :: [?])) bound by a pattern with constructor: :* :: forall k (f :: k -> *) (x :: k) (xs :: [k]). f x -> NP k k f xs -> NP k k f ((':) k x xs), in a case alternative at /tmp/tJN0.hs:13:3-9 ?xs? is a rigid type variable bound by a pattern with constructor: :* :: forall k (f :: k -> *) (x :: k) (xs :: [k]). f x -> NP k k f xs -> NP k k f ((':) k x xs), in a case alternative at /tmp/tJN0.hs:13:3 Expected type: NP ? k (K ? a) t Actual type: NP ? ? (K ? a) xs ? In the first argument of ?h'collapse?, namely ?xs? In the second argument of ?(:)?, namely ?h'collapse xs? In the expression: x : h'collapse xs ? Relevant bindings include xs :: NP ? ? (K ? a) xs (bound at /tmp/tJN0.hs:13:8) h'collapse :: NP ? k (K ? a) t -> [a] (bound at /tmp/tJN0.hs:11:1) Compilation failed. }}} Should it not be able to infer that? The Glorious Glasgow Haskell Compilation System, version 8.1.20160419 -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 10:08:10 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 10:08:10 -0000 Subject: [GHC] #11980: Testsuite: run each test in its own /tmp directory, after copying required files In-Reply-To: <045.666c00e2d5978d6e6851add98af62b04@haskell.org> References: <045.666c00e2d5978d6e6851add98af62b04@haskell.org> Message-ID: <060.0c3218ab7543cef61e9adc7e052325de@haskell.org> #11980: Testsuite: run each test in its own /tmp directory, after copying required files -------------------------------------+------------------------------------- Reporter: thomie | Owner: thomie Type: task | Status: patch Priority: normal | Milestone: 8.2.1 Component: Test Suite | Version: 8.0.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1187 Wiki Page: | -------------------------------------+------------------------------------- Changes (by thomie): * status: new => patch * differential: => Phab:D1187 @@ -33,7 +33,1 @@ - building mk/ghc-config first. - - There are 2 problems with this: - * you don't expect a call to `make clean` to start building stuff. Even - less so in a pristine source distribution. - * most of the time it doesn't clean all files, because lots of tests are - missing are have incomplete `extra_clean`s. + building mk/ghc-config first. This will all become much simpler. New description: == Plan == For each TEST: * create a directory `` inside `/tmp` * link/copy all source files that the test needs into `` * run the test inside `` * delete `` == Benefits == * running tests in parallel always works, even when two tests write to the same file (for example .hi/.o files, from sharing a .hs file). This should reduce the number of unsuspected and annoying validate failures. There is no longer any need to specify `-outputdir` explicitly. * there is no longer any need to add entries to the perpetually out-of- date `testsuite/.gitignore`. * there is no longer any need to specify `extra_clean` or `clean_cmd` setup functions for tests. Sometimes you //will// have to specify which extra files a test needs, using the (new) `extra_files` setup function, but it will be immediately clear when to do so (i.e. the test won't run if you don't). By default only files with the name `*` are copied to ``. * it could become possible to run //ways// for a single test in parallel (i.e. `make TEST= slow` would become faster) * `clean`ing the testsuite won't be necessary (except for a few files in `testsuite/mk` perhaps) Currently the only way to clean the testsuite is via `make CLEANUP=1 CLEAN_ONLY=1`, which requires a call to the testsuite, which requires building mk/ghc-config first. This will all become much simpler. -- -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 12:59:09 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 12:59:09 -0000 Subject: [GHC] #11821: Internal error: not in scope during type checking, but it passed the renamer In-Reply-To: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> References: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> Message-ID: <061.15a56d7de706fa366b2e74cae909ea57@haskell.org> #11821: Internal error: not in scope during type checking, but it passed the renamer -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: patch Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2146 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Richard Eisenberg ): In [changeset:"c5919f75afab9dd6f0a4a2670402024cece5da57/ghc" c5919f75/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="c5919f75afab9dd6f0a4a2670402024cece5da57" Remove the incredibly hairy splitTelescopeTvs. This patch removes splitTelescopeTvs by adding information about scoped type variables to TcTyCon. Vast simplification! This also fixes #11821 by bringing only unzonked vars into scope. Test case: polykinds/T11821 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 12:59:09 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 12:59:09 -0000 Subject: [GHC] #11484: Type synonym using -XTypeInType can't be spliced with TH In-Reply-To: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> References: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> Message-ID: <065.ada0a5734d86eb5a93d64880e1457bf4@haskell.org> #11484: Type synonym using -XTypeInType can't be spliced with TH -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: patch Priority: normal | Milestone: Component: Template Haskell | Version: 8.0.1-rc1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2146 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Richard Eisenberg ): In [changeset:"7242582b2fad6e0a734c012da25e66fe6f2ef11a/ghc" 7242582/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="7242582b2fad6e0a734c012da25e66fe6f2ef11a" Test #11484 in th/T11484 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 13:01:10 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 13:01:10 -0000 Subject: [GHC] #11821: Internal error: not in scope during type checking, but it passed the renamer In-Reply-To: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> References: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> Message-ID: <061.26af3e8b7755eb30e024ef033dd55e97@haskell.org> #11821: Internal error: not in scope during type checking, but it passed the renamer -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | polykinds/T11821 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2146 Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * status: patch => merge * testcase: => polykinds/T11821 Comment: This is a vast simplification, and I think worth merging (for 8.0.2). Do let me know if you run into merge trouble! -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 13:02:54 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 13:02:54 -0000 Subject: [GHC] #11821: Internal error: not in scope during type checking, but it passed the renamer In-Reply-To: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> References: <046.3b1a9cc72dda92db8ed761d8d50006f8@haskell.org> Message-ID: <061.7fcf3e854af0a9291296783b281f40a2@haskell.org> #11821: Internal error: not in scope during type checking, but it passed the renamer -------------------------------------+------------------------------------- Reporter: darchon | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 8.0.1-rc3 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: GHC rejects | Test Case: valid program | polykinds/T11821 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2146 Wiki Page: | -------------------------------------+------------------------------------- Comment (by goldfire): If you do merge, also please merge comment:8:ticket:11484. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 13:03:25 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 13:03:25 -0000 Subject: [GHC] #11484: Type synonym using -XTypeInType can't be spliced with TH In-Reply-To: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> References: <050.31117dc14e8cb137c4aa49635eca3d7d@haskell.org> Message-ID: <065.69bf12a03a9079c8beab4fa4bb36ccc8@haskell.org> #11484: Type synonym using -XTypeInType can't be spliced with TH -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.2 Component: Template Haskell | Version: 8.0.1-rc1 Resolution: | Keywords: TypeInType Operating System: Unknown/Multiple | Architecture: Type of failure: GHC rejects | Unknown/Multiple valid program | Test Case: th/T11484 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2146 Wiki Page: | -------------------------------------+------------------------------------- Changes (by goldfire): * status: patch => merge * testcase: => th/T11484 * milestone: => 8.0.2 Comment: The actual fix is in c5919f75afab9dd6f0a4a2670402024cece5da57, mentioned as comment:8:ticket:11821. Worth merging the test if you merge that patch. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 13:10:20 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 13:10:20 -0000 Subject: [GHC] #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications In-Reply-To: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> References: <050.0e20687f88786e027fcc8003b550a84a@haskell.org> Message-ID: <065.2dcf67ff84ae93445e9a4d788314841d@haskell.org> #11947: GHC mistakenly warns about type defaulting in the presence of -XTypeApplications -------------------------------------+------------------------------------- Reporter: RyanGlScott | Owner: Type: bug | Status: merge Priority: normal | Milestone: 8.0.2 Component: Compiler (Type | Version: 8.0.1 checker) | Keywords: Resolution: fixed | TypeApplications Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: Incorrect | Test Case: warning at compile-time | typecheck/should_compile/T11947 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by RyanGlScott): * status: closed => merge * milestone: => 8.0.2 Comment: It'd be nice to have this in 8.0.2, since this bug currently requires me to disable `-Wall` in one of my projects. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 17:12:53 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 17:12:53 -0000 Subject: [GHC] #11996: coverage checker iteration flag isn't documented outside of release notes! Message-ID: <045.ec2941f7f4396967d5f2e67aea7c3568@haskell.org> #11996: coverage checker iteration flag isn't documented outside of release notes! -------------------------------------+------------------------------------- Reporter: carter | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Documentation | Version: 8.0.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- as per https://ghc.haskell.org/trac/ghc/ticket/11195#comment:9 and the ghc 8.0rc release notes,`-fmax-pmcheck-iterations` is now a flag! its not listed as a documented flag, aside from mention in the release notes (though a search for pattern or matching will have a hard time turning it up) is this deliberate or not? (nb: not that i've used it, but making note of that subtlety) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 17:57:21 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 17:57:21 -0000 Subject: [GHC] #9478: Partial type signatures In-Reply-To: <046.53a47ac5f73cf1b7df317af2585f061e@haskell.org> References: <046.53a47ac5f73cf1b7df317af2585f061e@haskell.org> Message-ID: <061.116790189d678361f3e78b5aafc3db17@haskell.org> #9478: Partial type signatures -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: feature request | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.8.2 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D168 Wiki Page: | -------------------------------------+------------------------------------- Changes (by mpickering): * status: new => closed * resolution: => fixed -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 18:00:05 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 18:00:05 -0000 Subject: [GHC] #10789: Notify user when a kind mismatch holds up a type family reduction In-Reply-To: <047.282dd8bb976bc76373d556a5e980ac6e@haskell.org> References: <047.282dd8bb976bc76373d556a5e980ac6e@haskell.org> Message-ID: <062.97c97b7f25171c262c692641c2524a6c@haskell.org> #10789: Notify user when a kind mismatch holds up a type family reduction -------------------------------------+------------------------------------- Reporter: goldfire | Owner: Type: feature request | Status: new Priority: normal | Milestone: 8.0.2 Component: Compiler | Version: 7.10.2 Resolution: | Keywords: newcomer, | TypeFamilies Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by mpickering): * owner: ssequeira => Comment: Please reassign yourself ssequeira if you are still working on this ticket. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 18:01:11 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 18:01:11 -0000 Subject: [GHC] #9793: Some as-patterns could be accepted in pattern synonyms In-Reply-To: <045.e251d4b7f57881692430bb7253319357@haskell.org> References: <045.e251d4b7f57881692430bb7253319357@haskell.org> Message-ID: <060.fea0a46f310f49cd117b3286a1c46b48@haskell.org> #9793: Some as-patterns could be accepted in pattern synonyms -------------------------------------+------------------------------------- Reporter: cactus | Owner: Type: feature request | Status: patch Priority: normal | Milestone: 8.2.1 Component: Compiler (Type | Version: 7.8.3 checker) | Keywords: Resolution: | PatternSynonyms Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1666 Wiki Page: | -------------------------------------+------------------------------------- Changes (by mpickering): * owner: cactus => -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 18:01:19 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 18:01:19 -0000 Subject: [GHC] #9793: Some as-patterns could be accepted in pattern synonyms In-Reply-To: <045.e251d4b7f57881692430bb7253319357@haskell.org> References: <045.e251d4b7f57881692430bb7253319357@haskell.org> Message-ID: <060.e5c9fcc133853bfaa741703fcbbfce66@haskell.org> #9793: Some as-patterns could be accepted in pattern synonyms -------------------------------------+------------------------------------- Reporter: cactus | Owner: Type: feature request | Status: patch Priority: normal | Milestone: 8.2.1 Component: Compiler (Type | Version: 7.8.3 checker) | Keywords: Resolution: | PatternSynonyms, newcomer Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D1666 Wiki Page: | -------------------------------------+------------------------------------- Changes (by mpickering): * keywords: PatternSynonyms => PatternSynonyms, newcomer -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 23:05:10 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 23:05:10 -0000 Subject: [GHC] #11997: hSetFileSize zeroes file Message-ID: <047.dfbbcfa7de0b81d904efb3838126ecf3@haskell.org> #11997: hSetFileSize zeroes file -------------------------------------+------------------------------------- Reporter: jacereda | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: | Version: 7.10.3 libraries/base | Keywords: | Operating System: MacOS X Architecture: x86_64 | Type of failure: Incorrect result (amd64) | at runtime Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- The following sequence: {{{ cp /bin/echo /tmp/echo && ghc -e 'import System.IO' -e 'withFile "/tmp/echo" WriteMode (`hSetFileSize` 1000)' }}} results in /tmp/echo containing 1000 zeros. I would expect the truncated content as if truncate() was called. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 23:24:54 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 23:24:54 -0000 Subject: [GHC] #11997: hSetFileSize zeroes file In-Reply-To: <047.dfbbcfa7de0b81d904efb3838126ecf3@haskell.org> References: <047.dfbbcfa7de0b81d904efb3838126ecf3@haskell.org> Message-ID: <062.cada63acb6c2dba743927eb211a4eafa@haskell.org> #11997: hSetFileSize zeroes file -------------------------------------+------------------------------------- Reporter: jacereda | Owner: Type: bug | Status: closed Priority: normal | Milestone: Component: libraries/base | Version: 7.10.3 Resolution: invalid | Keywords: Operating System: MacOS X | Architecture: x86_64 Type of failure: Incorrect result | (amd64) at runtime | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by jacereda): * status: new => closed * resolution: => invalid Comment: My fault, it should use ReadWriteMode to get that behaviour. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Fri Apr 29 23:42:39 2016 From: ghc-devs at haskell.org (GHC) Date: Fri, 29 Apr 2016 23:42:39 -0000 Subject: [GHC] #11998: Symbol not found: __hpc_tickboxes_DataziHeterogeneousEnvironment_hpc Message-ID: <042.6fe71388d0343851a342e288f4d554e2@haskell.org> #11998: Symbol not found: __hpc_tickboxes_DataziHeterogeneousEnvironment_hpc --------------------------------------+------------------------------- Reporter: jdt | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: MacOS X Architecture: x86_64 (amd64) | Type of failure: GHCi crash Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: --------------------------------------+------------------------------- Running some tests associated with Heist and hit this error. I assume I just did something wrong (I'm new to Haskell) but it said to report it, so here you go: ghc: panic! (the 'impossible' happened) (GHC version 7.10.3 for x86_64-apple-darwin): Loading temp shared object failed: dlopen(/var/folders/0z/hz7mx9y567qc5zg6wn8y7blw0000gn/T/ghc23884_0/libghc_372.dylib, 5): Symbol not found: __hpc_tickboxes_DataziHeterogeneousEnvironment_hpc Referenced from: /var/folders/0z/hz7mx9y567qc5zg6wn8y7blw0000gn/T/ghc23884_0/libghc_372.dylib Expected in: flat namespace in /var/folders/0z/hz7mx9y567qc5zg6wn8y7blw0000gn/T/ghc23884_0/libghc_372.dylib -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 30 05:34:37 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 30 Apr 2016 05:34:37 -0000 Subject: [GHC] #11998: Symbol not found: __hpc_tickboxes_DataziHeterogeneousEnvironment_hpc In-Reply-To: <042.6fe71388d0343851a342e288f4d554e2@haskell.org> References: <042.6fe71388d0343851a342e288f4d554e2@haskell.org> Message-ID: <057.9c78ce059e98692beb10d213e0ed0413@haskell.org> #11998: Symbol not found: __hpc_tickboxes_DataziHeterogeneousEnvironment_hpc -------------------------------+-------------------------------------- Reporter: jdt | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: MacOS X | Architecture: x86_64 (amd64) Type of failure: GHCi crash | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------+-------------------------------------- Comment (by thomie): How does one reproduce this bug? See also [wiki:ReportABug#Fulldescription:whatinformationtoprovideinthebodyofyourbugreport]. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 30 07:29:04 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 30 Apr 2016 07:29:04 -0000 Subject: [GHC] #7388: CAPI doesn't work with ghci In-Reply-To: <044.45a130d5455804a7b37a7d8862986ddd@haskell.org> References: <044.45a130d5455804a7b37a7d8862986ddd@haskell.org> Message-ID: <059.9ea54fbe220881f5f20436f26431f5c2@haskell.org> #7388: CAPI doesn't work with ghci -------------------------------------+------------------------------------- Reporter: igloo | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: GHCi | Version: 7.6.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: T4012 Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Changes (by redneb): * cc: redneb (added) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 30 08:15:18 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 30 Apr 2016 08:15:18 -0000 Subject: [GHC] #9758: By default, testsuite should clean up after successful tests In-Reply-To: <045.6afbb9f1f5e466d1289d5bd3af0bb1ad@haskell.org> References: <045.6afbb9f1f5e466d1289d5bd3af0bb1ad@haskell.org> Message-ID: <060.24e69bf9eafbab497fad815f7afd07aa@haskell.org> #9758: By default, testsuite should clean up after successful tests -------------------------------------+------------------------------------- Reporter: ezyang | Owner: Type: task | Status: patch Priority: low | Milestone: 8.2.1 Component: Test Suite | Version: 7.9 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2148 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Thomas Miedema ): In [changeset:"c4259ff3defcac0d8f8075fd99884eef22e5d966/ghc" c4259ff3/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="c4259ff3defcac0d8f8075fd99884eef22e5d966" Testsuite: make CLEANUP=1 the default (#9758) Also move the `cleanup` setting from `default_testopts` to `config`. The `cleanup` setting is the same for all tests, hence it belongs in `config`. Reviewed by: austin Differential Revision: https://phabricator.haskell.org/D2148 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 30 08:18:48 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 30 Apr 2016 08:18:48 -0000 Subject: [GHC] #9758: By default, testsuite should clean up after successful tests In-Reply-To: <045.6afbb9f1f5e466d1289d5bd3af0bb1ad@haskell.org> References: <045.6afbb9f1f5e466d1289d5bd3af0bb1ad@haskell.org> Message-ID: <060.030b804f8ab81693e51a553d6eb91312@haskell.org> #9758: By default, testsuite should clean up after successful tests -------------------------------------+------------------------------------- Reporter: ezyang | Owner: Type: task | Status: closed Priority: low | Milestone: 8.2.1 Component: Test Suite | Version: 7.9 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D2148 Wiki Page: | -------------------------------------+------------------------------------- Changes (by thomie): * status: patch => closed * resolution: => fixed -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 30 09:34:05 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 30 Apr 2016 09:34:05 -0000 Subject: [GHC] #11999: expressing injectivity on functional dependencies gives orphan instances warnings Message-ID: <049.e1a894cc5c9f0aa2059ef87b6b697a86@haskell.org> #11999: expressing injectivity on functional dependencies gives orphan instances warnings -------------------------------------+------------------------------------- Reporter: dredozubov | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- Class.hs {{{ {-# LANGUAGE DataKinds, FlexibleInstances, FunctionalDependencies, KindSignatures, MultiParamTypeClasses, TypeFamilies #-} module Class where class C a b | a -> b, b -> a }}} Lib.hs {{{ {-# LANGUAGE DataKinds, FlexibleInstances, MultiParamTypeClasses, TypeFamilies #-} module Lib where import Class newtype Local = Local () instance C Local () }}} gives {{{ /Users/dr/workspace/broken-ophans-ghc/src/Lib.hs:10:1: warning: [-Worphans] Orphan instance: instance C Local () To avoid this move the instance declaration to the module of the class or of the type, or wrap the type with a newtype and declare the instance on the new type. }}} It seems weird to me and it is either a bug in the orphan instances checker or there is some fundamental aspect which i don't undestand. I've been able to reproduce this with 7.10.3 and 8-rc4. I've compiled a git repo with minimalistic example of this: [https://github.com/dredozubov/broken-instances-minimal] -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 30 11:05:48 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 30 Apr 2016 11:05:48 -0000 Subject: [GHC] #9478: Partial type signatures In-Reply-To: <046.53a47ac5f73cf1b7df317af2585f061e@haskell.org> References: <046.53a47ac5f73cf1b7df317af2585f061e@haskell.org> Message-ID: <061.8502641ae5df983b491b586ed97a7aa6@haskell.org> #9478: Partial type signatures -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: feature request | Status: closed Priority: normal | Milestone: Component: Compiler | Version: 7.8.2 Resolution: fixed | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D168 Wiki Page: | -------------------------------------+------------------------------------- Comment (by Thomas Miedema ): In [changeset:"2ae39acd1309c85dbc579976674bcef7172510c2/ghc" 2ae39acd/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="2ae39acd1309c85dbc579976674bcef7172510c2" Testsuite: accept new output for 2 partial-sigs tests Test Plan: make TEST='ExtraNumAMROn TidyClash2' Differential Revision: https://phabricator.haskell.org/D2155 GHC Trac Issues: #9478 }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 30 11:12:58 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 30 Apr 2016 11:12:58 -0000 Subject: [GHC] #9478: Partial type signatures In-Reply-To: <046.53a47ac5f73cf1b7df317af2585f061e@haskell.org> References: <046.53a47ac5f73cf1b7df317af2585f061e@haskell.org> Message-ID: <061.9357579724b79b22b04010e14c987e09@haskell.org> #9478: Partial type signatures -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: feature request | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.8.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: partial- | sigs/should_compile/PatBind2 | partial- | sigs/should_compile/EqualityConstraint Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Phab:D168 Wiki Page: | -------------------------------------+------------------------------------- Changes (by thomie): * status: closed => new * testcase: => partial-sigs/should_compile/PatBind2 partial- sigs/should_compile/EqualityConstraint * resolution: fixed => Comment: Reopening, because the tests `EqualityConstraint` and `PatBind2` are still marked expect_broken for this ticket. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 30 14:24:10 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 30 Apr 2016 14:24:10 -0000 Subject: [GHC] #12000: static pointer in ghci Message-ID: <051.df0580fca8642cac87b47bf4dfa5d3de@haskell.org> #12000: static pointer in ghci -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Keywords: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: | Blocked By: Blocking: | Related Tickets: Differential Rev(s): | Wiki Page: -------------------------------------+------------------------------------- {{{ $ ghci -fobject-code -ignore-dot-ghci -XStaticPointers GHCi, version 8.1.20160428: http://www.haskell.org/ghc/ :? for help Prelude> a = static id Prelude> a :2:1: error: Variable not in scope: a Prelude> }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 30 14:24:42 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 30 Apr 2016 14:24:42 -0000 Subject: [GHC] #12000: static pointer in ghci In-Reply-To: <051.df0580fca8642cac87b47bf4dfa5d3de@haskell.org> References: <051.df0580fca8642cac87b47bf4dfa5d3de@haskell.org> Message-ID: <066.c8eaf4a9af78e2093a6b9ceb9cde2941@haskell.org> #12000: static pointer in ghci -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Iceland_jack): And {{{ Prelude> let a = static id ByteCodeLink.lookupCE During interactive linking, GHCi couldn't find the following symbol: interactive_Ghci2_sptEntryZC2_closure This may be due to you not asking GHCi to load extra object files, archives or DLLs needed by your current session. Restart GHCi, specifying the missing library using the -L/path/to/object/dir and -lmissinglibname flags, or simply by naming the relevant files on the GHCi command line. Alternatively, this link failure might indicate a bug in GHCi. If you suspect the latter, please send a bug report to: glasgow-haskell-bugs at haskell.org }}} -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 30 18:41:54 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 30 Apr 2016 18:41:54 -0000 Subject: [GHC] #11747: `Strict` causes core lint error In-Reply-To: <051.5f1977edc97bd586c2cbc6d3ff3dff5b@haskell.org> References: <051.5f1977edc97bd586c2cbc6d3ff3dff5b@haskell.org> Message-ID: <066.dc96be28a3cfca06eef9af6bba9f1e52@haskell.org> #11747: `Strict` causes core lint error -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Strict Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by osa1): I can't reproduce this on 8.1.20160430 -- seems like it's fixed in the meantime. -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 30 20:29:28 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 30 Apr 2016 20:29:28 -0000 Subject: [GHC] #11545: Strictness signature blowup In-Reply-To: <046.cb411eddd2debdaa92305f408dd89d74@haskell.org> References: <046.cb411eddd2debdaa92305f408dd89d74@haskell.org> Message-ID: <061.20b41a8901190fcfe0e4b73d17671740@haskell.org> #11545: Strictness signature blowup -------------------------------------+------------------------------------- Reporter: jscholl | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 7.10.3 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: Compile-time | Unknown/Multiple performance bug | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by osa1): This is because of demand analysis -- the usage part of the demand signature of {{{(/=)}}} isn't reaching to a fixpoint, so it's looping 10 times (because that's the hard-coded upper bound for fixpoint iterations), each time generating a bigger usage type. I'm a bit confused about why this is happening though. First, strictness type is reaching to a fixpoint very fast (maybe in the first iteration), but why? Second, {{{(/=)}}} is actually defined as {{{not (a == b)}}}, and {{{(==)}}} is demand type is top (i.e. (Lazy, Used)). This looks wrong to me, because the definition has case expressions on arguments and recursively calls itself. The strictness part should be more precise than that.. (more on this later...) -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 30 21:49:01 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 30 Apr 2016 21:49:01 -0000 Subject: [GHC] #11747: `Strict` causes core lint error In-Reply-To: <051.5f1977edc97bd586c2cbc6d3ff3dff5b@haskell.org> References: <051.5f1977edc97bd586c2cbc6d3ff3dff5b@haskell.org> Message-ID: <066.76b94e8dd00e1ab07bd989e6dcf94e36@haskell.org> #11747: `Strict` causes core lint error -------------------------------------+------------------------------------- Reporter: Iceland_jack | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: Compiler | Version: 8.1 Resolution: | Keywords: Strict Operating System: Unknown/Multiple | Architecture: | Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | Differential Rev(s): Wiki Page: | -------------------------------------+------------------------------------- Comment (by Iceland_jack): Same, could be added as a test case and then closed -- Ticket URL: GHC The Glasgow Haskell Compiler From ghc-devs at haskell.org Sat Apr 30 23:18:42 2016 From: ghc-devs at haskell.org (GHC) Date: Sat, 30 Apr 2016 23:18:42 -0000 Subject: [GHC] #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV In-Reply-To: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> References: <045.e7ec8175631a08659d1526a914fb3334@haskell.org> Message-ID: <060.a048b3800499f7931192ec5350c59619@haskell.org> #11978: running a profiled build of shake test suite with rts args +RTS -hb -N10 triggers SIGSEGV ---------------------------------+---------------------------------------- Reporter: carter | Owner: Type: bug | Status: patch Priority: highest | Milestone: Component: Compiler | Version: 8.0.1 Resolution: | Keywords: Operating System: MacOS X | Architecture: Unknown/Multiple Type of failure: None/Unknown | Test Case: Blocked By: | Blocking: Related Tickets: #4820 | Differential Rev(s): phab:D2159 Wiki Page: | ---------------------------------+---------------------------------------- Comment (by erikd): On IRC @simonmar said that in this function `overwritingClosure` the closure type should not be `WHITEHOLE`. The backtrace looks like: {{{ Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0x7fffca7fc700 (LWP 27422)] executeMessage (cap=cap at entry=0x14861a0, m=0x20022b340) at rts/Messages.c:104 104 doneWithMsgThrowTo(t); (gdb) bt #0 executeMessage (cap=cap at entry=0x14861a0, m=0x20022b340) at rts/Messages.c:104 #1 0x0000000000f47834 in scheduleProcessInbox (pcap=) at rts/Schedule.c:1005 #2 scheduleFindWork (pcap=) at rts/Schedule.c:616 #3 schedule (initialCapability=, task=task at entry=0x7fffc4000910) at rts/Schedule.c:274 #4 0x0000000000f490dc in scheduleWorker (cap=, task=0x7fffc4000910) at rts/Schedule.c:2382 #5 0x00007ffff75b6454 in start_thread (arg=0x7fffca7fc700) at pthread_create.c:334 #6 0x00007ffff6d72eed in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109 }}} The call path seems to be `scheduleProcessInbox` gets the next message, passes it to `executeMessage` which calls `throwToMsg` on it which returns `THROWTO_SUCCESS`, and then passes the message to `doneWithMsgThrowTo` which then passes it to `overwritingClosure`. Reading @ezyang's paper http://ezyang.com/jfp-ghc-rts-draft.pdf suggests that yes indeed this code path should not be executed when the closure type is `WHITEHOLE`. -- Ticket URL: GHC The Glasgow Haskell Compiler