[clang] [llvm] BPF address space insn (PR #84410)
Yingchi Long via cfe-commits
cfe-commits at lists.llvm.org
Fri Mar 8 00:26:20 PST 2024
================
@@ -0,0 +1,52 @@
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 4
+; RUN: opt --bpf-check-and-opt-ir -S -mtriple=bpf-pc-linux < %s | FileCheck %s
+
+; Generated from the following C code:
+;
+; extern int __uptr *magic1();
+; extern int __uptr *magic2();
+;
+; void test(long i) {
+; int __uptr *a;
+;
+; if (i > 42)
+; a = magic1();
+; else
+; a = magic2();
+; a[5] = 7;
+; }
+;
+; Using the following command:
+;
+; clang --target=bpf -O2 -S -emit-llvm -o t.ll t.c
+
+; Function Attrs: nounwind
----------------
inclyc wrote:
this function attrs looks outdated
https://github.com/llvm/llvm-project/pull/84410
More information about the cfe-commits
mailing list