[PATCH] D153907: [AIX] [TOC] Add -mtocdata/-mno-tocdata options on AIX

Fangrui Song via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 12 09:49:30 PDT 2023


MaskRay added inline comments.


================
Comment at: test/CodeGen/PowerPC/toc-data-structs-arrays.cpp:2
+// REQUIRES: powerpc-registered-target
+// RUN: %clang++ %s -target powerpc-ibm-aix-xcoff -S -mtocdata=a4,a5,a8,a9,b,c,d,e,v -emit-llvm -o - 2>&1 \
+// RUN:          | FileCheck %s -check-prefixes=CHECK32 --match-full-lines
----------------
`-target ` has been deprecated since Clang 3.4. Use `--target=` for new tests.

`%clang` and `%clang++` are normally only for test/Driver. Use `%clang_cc1` for codegen tests.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D153907/new/

https://reviews.llvm.org/D153907



More information about the llvm-commits mailing list