Files
clang-p2996/lld/test/wasm/lto/Inputs/thin1.ll
Sam Clegg 28848e9e1b [lld][WebAssembly] Handle duplicate archive member names in ThinLTO
This entire change, including the test case, comes almost verbatim
from the ELF driver.

Fixes: https://github.com/emscripten-core/emscripten/issues/12763

Differential Revision: https://reviews.llvm.org/D112723
2021-10-28 11:48:04 -07:00

15 lines
399 B
LLVM

; Copied from lld/test/ELF/lto/Inputs/thin1.ll
target datalayout = "e-m:e-p:32:32-p10:8:8-p20:8:8-i64:64-n32:64-S128"
target triple = "wasm32-unknown-unknown"
define i32 @foo(i32 %goo) {
entry:
%goo.addr = alloca i32, align 4
store i32 %goo, i32* %goo.addr, align 4
%0 = load i32, i32* %goo.addr, align 4
%1 = load i32, i32* %goo.addr, align 4
%mul = mul nsw i32 %0, %1
ret i32 %mul
}