Mercurial > hg > CbC > CbC_llvm
view clang/test/Driver/stack-clash-protection-02.c @ 221:79ff65ed7e25
LLVM12 Original
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 15 Jun 2021 19:15:29 +0900 |
parents | |
children | c4bab56944e8 |
line wrap: on
line source
// RUN: %clang -target s390x-linux-gnu -fstack-clash-protection -### %s 2>&1 | FileCheck %s -check-prefix=SystemZ // SystemZ: "-fstack-clash-protection" // RUN: %clang -target s390x-linux-gnu -fstack-clash-protection -S -emit-llvm -o %t.ll %s 2>&1 | FileCheck %s -check-prefix=SystemZ-warn // SystemZ-warn: warning: Unable to protect inline asm that clobbers stack pointer against stack clash int foo(int c) { int r; __asm__("ag %%r15, %0" : : "rm"(c) : "r15"); return r; }