Mercurial > hg > CbC > CbC_llvm
view clang/test/Driver/aarch64-fix-cortex-a53-835769.c @ 221:79ff65ed7e25
LLVM12 Original
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 15 Jun 2021 19:15:29 +0900 |
parents | 1d019706d866 |
children | c4bab56944e8 |
line wrap: on
line source
// RUN: %clang -target aarch64-linux-eabi %s -### 2>&1 \ // RUN: | FileCheck --check-prefix=CHECK-DEF %s // RUN: %clang -target aarch64-linux-eabi -mfix-cortex-a53-835769 %s -### 2>&1 \ // RUN: | FileCheck --check-prefix=CHECK-YES %s // RUN: %clang -target aarch64-linux-eabi -mno-fix-cortex-a53-835769 %s -### 2>&1 \ // RUN: | FileCheck --check-prefix=CHECK-NO %s // RUN: %clang -target aarch64-android-eabi %s -### 2>&1 \ // RUN: | FileCheck --check-prefix=CHECK-YES %s // CHECK-DEF-NOT: "-mllvm" "-aarch64-fix-cortex-a53-835769" // CHECK-YES: "-mllvm" "-aarch64-fix-cortex-a53-835769=1" // CHECK-NO: "-mllvm" "-aarch64-fix-cortex-a53-835769=0"