[clang] [SFrame][Retry] Add assembler option --gsframe (PR #165806)

Tarun Prabhu via cfe-commits cfe-commits at lists.llvm.org
Mon Nov 3 07:43:23 PST 2025


================
@@ -0,0 +1,15 @@
+// RUN: %clang -### -c --target=x86_64 -Wa,--gsframe %s -Werror 2>&1 | FileCheck %s
+// CHECK:  "-cc1" {{.*}}"--gsframe"
+
+// RUN: %clang -### -c --target=x86_64 %s 2>&1 | FileCheck %s --check-prefix=NO
+// NO:     "-cc1"
----------------
tarunprabhu wrote:

It may be better to specifically check for the absence of `--gsframe` here:

```
// RUN: %clang -### -c --target=x86_64 %s 2>&1 | FileCheck %s --check-prefix=NO-GSFRAME
// NO-GSFRAME-NOT:     "--gsframe"
```

https://github.com/llvm/llvm-project/pull/165806


More information about the cfe-commits mailing list