Testcase:
$ cat log.ir
declare double @llvm.log.f64(double %Val)
define double @foo() {
start:
%0 = call double @llvm.log.f64(double 1.024000e+03) #8
%1 = call double @llvm.log.f64(double 2.000000e+00) #8
%2 = fdiv double %0, %1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -Nru llvm-toolchain-7-7.0.1/debian/changelog llvm-toolchain-7-7.0.1/debian/changelog | |
--- llvm-toolchain-7-7.0.1/debian/changelog 2019-02-28 13:50:21.000000000 +0100 | |
+++ llvm-toolchain-7-7.0.1/debian/changelog 2019-03-11 23:51:24.000000000 +0100 | |
@@ -1,3 +1,41 @@ | |
+llvm-toolchain-7 (1:7.0.1-8+rpi1) buster-staging; urgency=medium | |
+ | |
+ [changes brought forward from llvm-toolchain-3.8 1:3.8-2+rpi1 by Peter Michael Green <[email protected]> at Sat, 14 May 2016 21:43:35 +0000] | |
+ * Cleanup .pyc files in clean target. | |
+ * Add a hack to the cmake based build to force armv6 (unfortunately the cmake | |
+ based build relies on config.guess which assumes you want to build for the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Arduino.h> | |
using namespace Formatters; | |
template <typename T> | |
inline void debug_type(const T&) __attribute__((deprecated)); | |
template <typename T> | |
inline void debug_type() __attribute__((deprecated)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
github.com/3devo/dvconnector github.com/DataDog/[email protected] | |
github.com/3devo/dvconnector github.com/Sereal/[email protected] | |
github.com/3devo/dvconnector github.com/asdine/[email protected]+incompatible | |
github.com/3devo/dvconnector github.com/bob-thomas/[email protected] | |
github.com/3devo/dvconnector github.com/bob-thomas/[email protected] | |
github.com/3devo/dvconnector github.com/boltdb/[email protected] | |
github.com/3devo/dvconnector github.com/coreos/[email protected]+incompatible | |
github.com/3devo/dvconnector github.com/coreos/[email protected] | |
github.com/3devo/dvconnector github.com/creack/[email protected] | |
github.com/3devo/dvconnector github.com/dgrijalva/[email protected]+incompatible |
Start a clean module
matthijs@grubby:~/foo$ go mod init foo
Just to get a clean slate, not influenced by my existing $GOPATH
matthijs@grubby:~/foo$ export GOPATH=$(pwd)/build
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.npmjs.com/package/oss-attribution-generator | |
Supports JS. Should be able to generate an attribution file, but shows a | |
failure after seemingly succesfully processing all dependencies. | |
Has capabilities for overriding the licenses. | |
https://github.com/src-d/go-license-detector | |
Supports Go. Detects the license for a single license folder (returning | |
certainty / match factor), but does not support dependency |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9540f45ec3d8ae8413541fbdfc21c402 /home/matthijs/docs/src/go/pkg/mod/github.com/go-ole/[email protected]/itypeinfo_func.go | |
3260b948a31ab48638fb99ed70b13e45 /home/matthijs/docs/src/go/pkg/mod/github.com/go-ole/[email protected]/variant_ppc64le.go | |
9367f0d34ea8f6bf9c81b241bf50920f /home/matthijs/docs/src/go/pkg/mod/github.com/go-ole/[email protected]/iinspectable_windows.go | |
7326db50c2d71ed0b0ca841d49b9e63e /home/matthijs/docs/src/go/pkg/mod/github.com/go-ole/[email protected]/LICENSE | |
81540614b01d7ce4cf8d0708ff553854 /home/matthijs/docs/src/go/pkg/mod/github.com/go-ole/[email protected]/variant_amd64.go | |
5c48b162b6a51fa11748ba87e7a90f18 /home/matthijs/docs/src/go/pkg/mod/github.com/go-ole/[email protected]/build/register-assembly.bat | |
83a1fcfd0033f30447e1646862ccdcda /home/matthijs/docs/src/go/pkg/mod/github.com/go-ole/[email protected]/go.sum | |
81a59b53e59243eabf4c5e215ab4ceb7 /home/matthijs/docs/src/go/pkg/mod/github.com/go-ole/[email protected]/itypeinfo.go | |
56372d1f0a250415d7056d656889283d /home/matthijs/docs/src/go/pkg/mod/github.com/go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bij het ontwerp van het MJS meetstation is evoor gekozen om zo min mogelijk | |
"moeilijke" componenten te gebruiken. | |
De schakeling is zo opgebouwd dat de sensor met twee stroommeetweerstanden kan | |
worden uitgelezen. | |
Om het aantal verschillende weerstandswaarden in het bouwpakket te beperken is | |
zijn daarvoor 10K (R11) en 100K (R12) gekozen. Dit | |
zijn de standaard waarden die in het bouwpakket zitten. | |
Door R11 te verkleinen naar bijvoorbeeld 2K2 kan je het bereik van de sensor | |
verhogen. | |
In de code dien je dan de waarde voor R11 aan te passen: |