From noreply at github.com Tue Mar 1 02:19:41 2016 From: noreply at github.com (GitHub) Date: Mon, 29 Feb 2016 17:19:41 -0800 Subject: [M3commit] [modula3/cm3] 93aa20: Add some unsigned max constant values to TInt. Message-ID: <56d4ee2dc3b55_39a23fbd30fbf2c0172261@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 93aa2017d4a7639518b491f2d16d1470963f359e https://github.com/modula3/cm3/commit/93aa2017d4a7639518b491f2d16d1470963f359e Author: Rodney Bates Date: 2016-02-29 (Mon, 29 Feb 2016) Changed paths: M m3-sys/m3middle/src/TInt.i3 Log Message: ----------- Add some unsigned max constant values to TInt. From noreply at github.com Tue Mar 1 04:00:47 2016 From: noreply at github.com (GitHub) Date: Mon, 29 Feb 2016 19:00:47 -0800 Subject: [M3commit] [modula3/cm3] 45fd7b: Fix debug info generation to accept ground ordinal... Message-ID: <56d505df4ee4a_44923fc30193d2b815963f@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 45fd7b04eaaabb80ae10b721c8da572fe9ca1a74 https://github.com/modula3/cm3/commit/45fd7b04eaaabb80ae10b721c8da572fe9ca1a74 Author: Rodney Bates Date: 2016-02-29 (Mon, 29 Feb 2016) Changed paths: M m3-sys/llvm3.6.1/src/M3CG_LLVM.m3 Log Message: ----------- Fix debug info generation to accept ground ordinal types. m3llvm was crashing when generating debug info, by expecting only a subrange type, whereas any ordinal type is possible. This limitation was already noted in comments. Specifically, this happened for the index type of an array and the base type of a subrange or set type. This entailed in part, rework of initialization of the builtin ordinal types, representing them in m3llvm as SubrangeDebug nodes, rather than BasicDebug nodes, which have no fields to hold value bounds. Sadly, llvm, at least 3.6.1, does not handle the Dwarf DW_AT_type attribute of a Dwarf subrange type, which a Modula-3 debugger will need. I suppose this is because C++ subranges have only one base type. We have many. But at least it is stored in the m3llvm SubtypeDebug node, where it can be found easily if/when llvm provides a way to pipe it through to the object module. Enumeration types as well as builtin ordinal types had to be accomodated too. This change also keeps bounds information in TInt form as late as possible, right up until llvm debug nodes are created. At that point, we need something like a TInt.ToLongint, to be sure to get the full range when cross compiling on a 32-bit machine for a 64-bit machine. From noreply at github.com Tue Mar 1 19:05:13 2016 From: noreply at github.com (GitHub) Date: Tue, 01 Mar 2016 10:05:13 -0800 Subject: [M3commit] [modula3/cm3] 0c5827: Clean up aftermath of recent changes. Message-ID: <56d5d9d917a6a_15933fa5150ed2c0199211@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 0c5827aca09a618f287cee11e0aafd95678060b2 https://github.com/modula3/cm3/commit/0c5827aca09a618f287cee11e0aafd95678060b2 Author: Rodney Bates Date: 2016-03-01 (Tue, 01 Mar 2016) Changed paths: M m3-sys/llvm3.6.1/src/M3CG_LLVM.m3 Log Message: ----------- Clean up aftermath of recent changes. Remove dead code, improve comments, formatting, documentation value of identifiers and types, etc. There should be no algorithmic changes here. From noreply at github.com Tue Mar 1 20:19:13 2016 From: noreply at github.com (GitHub) Date: Tue, 01 Mar 2016 11:19:13 -0800 Subject: [M3commit] [modula3/cm3] 484463: Get correct value for "Debug Info Version". Message-ID: <56d5eb3140a6b_248f3f969a22f2c07344f@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 484463afbdab30984a25b5f8b622c05faab85b63 https://github.com/modula3/cm3/commit/484463afbdab30984a25b5f8b622c05faab85b63 Author: Rodney Bates Date: 2016-03-01 (Tue, 01 Mar 2016) Changed paths: M m3-sys/llvm3.6.1/src/M3CG_LLVM.m3 M m3-sys/llvmbindings/src/LLVMTypes.i3 Log Message: ----------- Get correct value for "Debug Info Version". Found in Metadata.h of llvm(3.6.1), named DEBUG_METADATA_VERSION, value = 2. From noreply at github.com Tue Mar 1 22:36:41 2016 From: noreply at github.com (GitHub) Date: Tue, 01 Mar 2016 13:36:41 -0800 Subject: [M3commit] [modula3/cm3] 6733f2: Get correct encoding for subranges. Message-ID: <56d60b69a897e_2ac53f9ea39db29c1336bb@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 6733f2dd43b134bcd08a66f87546f33e3ae1584f https://github.com/modula3/cm3/commit/6733f2dd43b134bcd08a66f87546f33e3ae1584f Author: Rodney Bates Date: 2016-03-01 (Tue, 01 Mar 2016) Changed paths: M m3-sys/llvm3.6.1/src/M3CG_LLVM.m3 Log Message: ----------- Get correct encoding for subranges. encoding for a subrange comes from the base type, but at the time the subrange is defined(declare_subrange), its base type may not have been. Fix to copy the encoding in at the time the subrange is completed (SubrangeDebug). This entailed some rework of a few procedure signatures. From noreply at github.com Fri Mar 25 09:24:17 2016 From: noreply at github.com (GitHub) Date: Fri, 25 Mar 2016 01:24:17 -0700 Subject: [M3commit] [modula3/cm3] e94bb9: Revert "Go ahead and alloca the jmpbufs." Message-ID: <56f4f5b1cfa40_3a363fd4bc2132b8252535@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: e94bb956a4b159936db453c39b283ea37cf363c5 https://github.com/modula3/cm3/commit/e94bb956a4b159936db453c39b283ea37cf363c5 Author: Dragi?a Duri? Date: 2016-03-25 (Fri, 25 Mar 2016) Changed paths: M m3-libs/m3core/src/runtime/ex_frame/RTExFrame.m3 M m3-sys/m3middle/src/Target.m3 Log Message: ----------- Revert "Go ahead and alloca the jmpbufs." This reverts commit ce1cfdd36ecc04559ff9c91fbed75588c77cb8cf. From noreply at github.com Fri Mar 25 11:59:26 2016 From: noreply at github.com (GitHub) Date: Fri, 25 Mar 2016 03:59:26 -0700 Subject: [M3commit] [modula3/cm3] Message-ID: <56f51a0ed2428_601b3fdef91312b85360b6@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 From noreply at github.com Fri Mar 25 12:20:58 2016 From: noreply at github.com (GitHub) Date: Fri, 25 Mar 2016 04:20:58 -0700 Subject: [M3commit] [modula3/cm3] 29e4c0: Revert "Go ahead and alloca the jmpbufs." Message-ID: <56f51f1ad86e0_ac73fe69ac7d2b81849b2@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 29e4c01438535793778681ee77cdc510fd6a7147 https://github.com/modula3/cm3/commit/29e4c01438535793778681ee77cdc510fd6a7147 Author: Dragi?a Duri? Date: 2016-03-25 (Fri, 25 Mar 2016) Changed paths: M m3-libs/m3core/src/runtime/ex_frame/RTExFrame.m3 M m3-sys/m3middle/src/Target.m3 Log Message: ----------- Revert "Go ahead and alloca the jmpbufs." This reverts commit ce1cfdd36ecc04559ff9c91fbed75588c77cb8cf. From noreply at github.com Tue Mar 1 02:19:41 2016 From: noreply at github.com (GitHub) Date: Mon, 29 Feb 2016 17:19:41 -0800 Subject: [M3commit] [modula3/cm3] 93aa20: Add some unsigned max constant values to TInt. Message-ID: <56d4ee2dc3b55_39a23fbd30fbf2c0172261@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 93aa2017d4a7639518b491f2d16d1470963f359e https://github.com/modula3/cm3/commit/93aa2017d4a7639518b491f2d16d1470963f359e Author: Rodney Bates Date: 2016-02-29 (Mon, 29 Feb 2016) Changed paths: M m3-sys/m3middle/src/TInt.i3 Log Message: ----------- Add some unsigned max constant values to TInt. From noreply at github.com Tue Mar 1 04:00:47 2016 From: noreply at github.com (GitHub) Date: Mon, 29 Feb 2016 19:00:47 -0800 Subject: [M3commit] [modula3/cm3] 45fd7b: Fix debug info generation to accept ground ordinal... Message-ID: <56d505df4ee4a_44923fc30193d2b815963f@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 45fd7b04eaaabb80ae10b721c8da572fe9ca1a74 https://github.com/modula3/cm3/commit/45fd7b04eaaabb80ae10b721c8da572fe9ca1a74 Author: Rodney Bates Date: 2016-02-29 (Mon, 29 Feb 2016) Changed paths: M m3-sys/llvm3.6.1/src/M3CG_LLVM.m3 Log Message: ----------- Fix debug info generation to accept ground ordinal types. m3llvm was crashing when generating debug info, by expecting only a subrange type, whereas any ordinal type is possible. This limitation was already noted in comments. Specifically, this happened for the index type of an array and the base type of a subrange or set type. This entailed in part, rework of initialization of the builtin ordinal types, representing them in m3llvm as SubrangeDebug nodes, rather than BasicDebug nodes, which have no fields to hold value bounds. Sadly, llvm, at least 3.6.1, does not handle the Dwarf DW_AT_type attribute of a Dwarf subrange type, which a Modula-3 debugger will need. I suppose this is because C++ subranges have only one base type. We have many. But at least it is stored in the m3llvm SubtypeDebug node, where it can be found easily if/when llvm provides a way to pipe it through to the object module. Enumeration types as well as builtin ordinal types had to be accomodated too. This change also keeps bounds information in TInt form as late as possible, right up until llvm debug nodes are created. At that point, we need something like a TInt.ToLongint, to be sure to get the full range when cross compiling on a 32-bit machine for a 64-bit machine. From noreply at github.com Tue Mar 1 19:05:13 2016 From: noreply at github.com (GitHub) Date: Tue, 01 Mar 2016 10:05:13 -0800 Subject: [M3commit] [modula3/cm3] 0c5827: Clean up aftermath of recent changes. Message-ID: <56d5d9d917a6a_15933fa5150ed2c0199211@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 0c5827aca09a618f287cee11e0aafd95678060b2 https://github.com/modula3/cm3/commit/0c5827aca09a618f287cee11e0aafd95678060b2 Author: Rodney Bates Date: 2016-03-01 (Tue, 01 Mar 2016) Changed paths: M m3-sys/llvm3.6.1/src/M3CG_LLVM.m3 Log Message: ----------- Clean up aftermath of recent changes. Remove dead code, improve comments, formatting, documentation value of identifiers and types, etc. There should be no algorithmic changes here. From noreply at github.com Tue Mar 1 20:19:13 2016 From: noreply at github.com (GitHub) Date: Tue, 01 Mar 2016 11:19:13 -0800 Subject: [M3commit] [modula3/cm3] 484463: Get correct value for "Debug Info Version". Message-ID: <56d5eb3140a6b_248f3f969a22f2c07344f@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 484463afbdab30984a25b5f8b622c05faab85b63 https://github.com/modula3/cm3/commit/484463afbdab30984a25b5f8b622c05faab85b63 Author: Rodney Bates Date: 2016-03-01 (Tue, 01 Mar 2016) Changed paths: M m3-sys/llvm3.6.1/src/M3CG_LLVM.m3 M m3-sys/llvmbindings/src/LLVMTypes.i3 Log Message: ----------- Get correct value for "Debug Info Version". Found in Metadata.h of llvm(3.6.1), named DEBUG_METADATA_VERSION, value = 2. From noreply at github.com Tue Mar 1 22:36:41 2016 From: noreply at github.com (GitHub) Date: Tue, 01 Mar 2016 13:36:41 -0800 Subject: [M3commit] [modula3/cm3] 6733f2: Get correct encoding for subranges. Message-ID: <56d60b69a897e_2ac53f9ea39db29c1336bb@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 6733f2dd43b134bcd08a66f87546f33e3ae1584f https://github.com/modula3/cm3/commit/6733f2dd43b134bcd08a66f87546f33e3ae1584f Author: Rodney Bates Date: 2016-03-01 (Tue, 01 Mar 2016) Changed paths: M m3-sys/llvm3.6.1/src/M3CG_LLVM.m3 Log Message: ----------- Get correct encoding for subranges. encoding for a subrange comes from the base type, but at the time the subrange is defined(declare_subrange), its base type may not have been. Fix to copy the encoding in at the time the subrange is completed (SubrangeDebug). This entailed some rework of a few procedure signatures. From noreply at github.com Fri Mar 25 09:24:17 2016 From: noreply at github.com (GitHub) Date: Fri, 25 Mar 2016 01:24:17 -0700 Subject: [M3commit] [modula3/cm3] e94bb9: Revert "Go ahead and alloca the jmpbufs." Message-ID: <56f4f5b1cfa40_3a363fd4bc2132b8252535@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: e94bb956a4b159936db453c39b283ea37cf363c5 https://github.com/modula3/cm3/commit/e94bb956a4b159936db453c39b283ea37cf363c5 Author: Dragi?a Duri? Date: 2016-03-25 (Fri, 25 Mar 2016) Changed paths: M m3-libs/m3core/src/runtime/ex_frame/RTExFrame.m3 M m3-sys/m3middle/src/Target.m3 Log Message: ----------- Revert "Go ahead and alloca the jmpbufs." This reverts commit ce1cfdd36ecc04559ff9c91fbed75588c77cb8cf. From noreply at github.com Fri Mar 25 11:59:26 2016 From: noreply at github.com (GitHub) Date: Fri, 25 Mar 2016 03:59:26 -0700 Subject: [M3commit] [modula3/cm3] Message-ID: <56f51a0ed2428_601b3fdef91312b85360b6@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 From noreply at github.com Fri Mar 25 12:20:58 2016 From: noreply at github.com (GitHub) Date: Fri, 25 Mar 2016 04:20:58 -0700 Subject: [M3commit] [modula3/cm3] 29e4c0: Revert "Go ahead and alloca the jmpbufs." Message-ID: <56f51f1ad86e0_ac73fe69ac7d2b81849b2@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 29e4c01438535793778681ee77cdc510fd6a7147 https://github.com/modula3/cm3/commit/29e4c01438535793778681ee77cdc510fd6a7147 Author: Dragi?a Duri? Date: 2016-03-25 (Fri, 25 Mar 2016) Changed paths: M m3-libs/m3core/src/runtime/ex_frame/RTExFrame.m3 M m3-sys/m3middle/src/Target.m3 Log Message: ----------- Revert "Go ahead and alloca the jmpbufs." This reverts commit ce1cfdd36ecc04559ff9c91fbed75588c77cb8cf. From noreply at github.com Tue Mar 1 02:19:41 2016 From: noreply at github.com (GitHub) Date: Mon, 29 Feb 2016 17:19:41 -0800 Subject: [M3commit] [modula3/cm3] 93aa20: Add some unsigned max constant values to TInt. Message-ID: <56d4ee2dc3b55_39a23fbd30fbf2c0172261@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 93aa2017d4a7639518b491f2d16d1470963f359e https://github.com/modula3/cm3/commit/93aa2017d4a7639518b491f2d16d1470963f359e Author: Rodney Bates Date: 2016-02-29 (Mon, 29 Feb 2016) Changed paths: M m3-sys/m3middle/src/TInt.i3 Log Message: ----------- Add some unsigned max constant values to TInt. From noreply at github.com Tue Mar 1 04:00:47 2016 From: noreply at github.com (GitHub) Date: Mon, 29 Feb 2016 19:00:47 -0800 Subject: [M3commit] [modula3/cm3] 45fd7b: Fix debug info generation to accept ground ordinal... Message-ID: <56d505df4ee4a_44923fc30193d2b815963f@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 45fd7b04eaaabb80ae10b721c8da572fe9ca1a74 https://github.com/modula3/cm3/commit/45fd7b04eaaabb80ae10b721c8da572fe9ca1a74 Author: Rodney Bates Date: 2016-02-29 (Mon, 29 Feb 2016) Changed paths: M m3-sys/llvm3.6.1/src/M3CG_LLVM.m3 Log Message: ----------- Fix debug info generation to accept ground ordinal types. m3llvm was crashing when generating debug info, by expecting only a subrange type, whereas any ordinal type is possible. This limitation was already noted in comments. Specifically, this happened for the index type of an array and the base type of a subrange or set type. This entailed in part, rework of initialization of the builtin ordinal types, representing them in m3llvm as SubrangeDebug nodes, rather than BasicDebug nodes, which have no fields to hold value bounds. Sadly, llvm, at least 3.6.1, does not handle the Dwarf DW_AT_type attribute of a Dwarf subrange type, which a Modula-3 debugger will need. I suppose this is because C++ subranges have only one base type. We have many. But at least it is stored in the m3llvm SubtypeDebug node, where it can be found easily if/when llvm provides a way to pipe it through to the object module. Enumeration types as well as builtin ordinal types had to be accomodated too. This change also keeps bounds information in TInt form as late as possible, right up until llvm debug nodes are created. At that point, we need something like a TInt.ToLongint, to be sure to get the full range when cross compiling on a 32-bit machine for a 64-bit machine. From noreply at github.com Tue Mar 1 19:05:13 2016 From: noreply at github.com (GitHub) Date: Tue, 01 Mar 2016 10:05:13 -0800 Subject: [M3commit] [modula3/cm3] 0c5827: Clean up aftermath of recent changes. Message-ID: <56d5d9d917a6a_15933fa5150ed2c0199211@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 0c5827aca09a618f287cee11e0aafd95678060b2 https://github.com/modula3/cm3/commit/0c5827aca09a618f287cee11e0aafd95678060b2 Author: Rodney Bates Date: 2016-03-01 (Tue, 01 Mar 2016) Changed paths: M m3-sys/llvm3.6.1/src/M3CG_LLVM.m3 Log Message: ----------- Clean up aftermath of recent changes. Remove dead code, improve comments, formatting, documentation value of identifiers and types, etc. There should be no algorithmic changes here. From noreply at github.com Tue Mar 1 20:19:13 2016 From: noreply at github.com (GitHub) Date: Tue, 01 Mar 2016 11:19:13 -0800 Subject: [M3commit] [modula3/cm3] 484463: Get correct value for "Debug Info Version". Message-ID: <56d5eb3140a6b_248f3f969a22f2c07344f@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 484463afbdab30984a25b5f8b622c05faab85b63 https://github.com/modula3/cm3/commit/484463afbdab30984a25b5f8b622c05faab85b63 Author: Rodney Bates Date: 2016-03-01 (Tue, 01 Mar 2016) Changed paths: M m3-sys/llvm3.6.1/src/M3CG_LLVM.m3 M m3-sys/llvmbindings/src/LLVMTypes.i3 Log Message: ----------- Get correct value for "Debug Info Version". Found in Metadata.h of llvm(3.6.1), named DEBUG_METADATA_VERSION, value = 2. From noreply at github.com Tue Mar 1 22:36:41 2016 From: noreply at github.com (GitHub) Date: Tue, 01 Mar 2016 13:36:41 -0800 Subject: [M3commit] [modula3/cm3] 6733f2: Get correct encoding for subranges. Message-ID: <56d60b69a897e_2ac53f9ea39db29c1336bb@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 6733f2dd43b134bcd08a66f87546f33e3ae1584f https://github.com/modula3/cm3/commit/6733f2dd43b134bcd08a66f87546f33e3ae1584f Author: Rodney Bates Date: 2016-03-01 (Tue, 01 Mar 2016) Changed paths: M m3-sys/llvm3.6.1/src/M3CG_LLVM.m3 Log Message: ----------- Get correct encoding for subranges. encoding for a subrange comes from the base type, but at the time the subrange is defined(declare_subrange), its base type may not have been. Fix to copy the encoding in at the time the subrange is completed (SubrangeDebug). This entailed some rework of a few procedure signatures. From noreply at github.com Fri Mar 25 09:24:17 2016 From: noreply at github.com (GitHub) Date: Fri, 25 Mar 2016 01:24:17 -0700 Subject: [M3commit] [modula3/cm3] e94bb9: Revert "Go ahead and alloca the jmpbufs." Message-ID: <56f4f5b1cfa40_3a363fd4bc2132b8252535@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: e94bb956a4b159936db453c39b283ea37cf363c5 https://github.com/modula3/cm3/commit/e94bb956a4b159936db453c39b283ea37cf363c5 Author: Dragi?a Duri? Date: 2016-03-25 (Fri, 25 Mar 2016) Changed paths: M m3-libs/m3core/src/runtime/ex_frame/RTExFrame.m3 M m3-sys/m3middle/src/Target.m3 Log Message: ----------- Revert "Go ahead and alloca the jmpbufs." This reverts commit ce1cfdd36ecc04559ff9c91fbed75588c77cb8cf. From noreply at github.com Fri Mar 25 11:59:26 2016 From: noreply at github.com (GitHub) Date: Fri, 25 Mar 2016 03:59:26 -0700 Subject: [M3commit] [modula3/cm3] Message-ID: <56f51a0ed2428_601b3fdef91312b85360b6@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 From noreply at github.com Fri Mar 25 12:20:58 2016 From: noreply at github.com (GitHub) Date: Fri, 25 Mar 2016 04:20:58 -0700 Subject: [M3commit] [modula3/cm3] 29e4c0: Revert "Go ahead and alloca the jmpbufs." Message-ID: <56f51f1ad86e0_ac73fe69ac7d2b81849b2@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/modula3/cm3 Commit: 29e4c01438535793778681ee77cdc510fd6a7147 https://github.com/modula3/cm3/commit/29e4c01438535793778681ee77cdc510fd6a7147 Author: Dragi?a Duri? Date: 2016-03-25 (Fri, 25 Mar 2016) Changed paths: M m3-libs/m3core/src/runtime/ex_frame/RTExFrame.m3 M m3-sys/m3middle/src/Target.m3 Log Message: ----------- Revert "Go ahead and alloca the jmpbufs." This reverts commit ce1cfdd36ecc04559ff9c91fbed75588c77cb8cf.