diff options
author | Ayke van Laethem <[email protected]> | 2022-02-05 14:27:50 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-04-23 08:45:46 +0200 |
commit | 6b31ee1e9392a463b536735081cc496405929882 (patch) | |
tree | 2eeb92533ccb7269a2e013b3feb9520c004598d1 /interp | |
parent | cad6a57077c7887025ba532a03f41d6ad78daa72 (diff) | |
download | tinygo-6b31ee1e9392a463b536735081cc496405929882.tar.gz tinygo-6b31ee1e9392a463b536735081cc496405929882.zip |
all: update to LLVM 14
Switch over to LLVM 14 for static builds. Keep using LLVM 13 for regular
builds for now.
This uses a branch of the upstream Espressif branch to fix an issue,
see: https://github.com/espressif/llvm-project/pull/59
Diffstat (limited to 'interp')
-rw-r--r-- | interp/testdata/slice-copy.out.ll | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/interp/testdata/slice-copy.out.ll b/interp/testdata/slice-copy.out.ll index 9f88df094..281756433 100644 --- a/interp/testdata/slice-copy.out.ll +++ b/interp/testdata/slice-copy.out.ll @@ -1,8 +1,6 @@ target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64--linux" -@"main$alloc.1" = internal unnamed_addr constant [6 x i8] c"\05\00{\00\00\04", align 8 - declare void @runtime.printuint8(i8) local_unnamed_addr declare void @runtime.printint16(i16) local_unnamed_addr @@ -17,7 +15,6 @@ entry: call void @runtime.printuint8(i8 3) call void @runtime.printuint8(i8 3) call void @runtime.printint16(i16 5) - %int16SliceDst.val = load i16, i16* bitcast ([6 x i8]* @"main$alloc.1" to i16*), align 2 - call void @runtime.printint16(i16 %int16SliceDst.val) + call void @runtime.printint16(i16 5) ret void } |