mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-24 22:08:57 -04:00

Allow users to disable or enable CRC subtarget feature. Differential Revision: http://llvm-reviews.chandlerc.com/D2037 llvm-svn: 193600
9 lines
298 B
C
9 lines
298 B
C
// RUN: %clang -target armv8 -mcrc -### %s 2> %t
|
|
// RUN: FileCheck --check-prefix=CHECK-V8-CRC < %t %s
|
|
// CHECK-V8-CRC: "-target-feature" "+crc"
|
|
|
|
// RUN: %clang -target armv8 -mnocrc -### %s 2> %t
|
|
// RUN: FileCheck --check-prefix=CHECK-V8-NOCRC < %t %s
|
|
// CHECK-V8-NOCRC: "-target-feature" "-crc"
|
|
|