11 lines
595 B
C
11 lines
595 B
C
|
// REQUIRES: arm-registered-target
|
||
|
// RUN: not %clang_cc1 -emit-obj -triple armv6-unknown-unknown -o %t %s 2>&1 | FileCheck %s
|
||
|
// RUN: not %clang_cc1 -emit-obj -triple armv6-unknown-unknown -flto -o %t %s 2>&1 | FileCheck %s
|
||
|
|
||
|
/// Test the diagnostic behavior considering the whole system including the driver.
|
||
|
// RUN: not %clang --target=armv6-unknown-unknown -c -flto=thin -o %t %s 2>&1 | FileCheck %s
|
||
|
#pragma clang diagnostic ignored "-Wmissing-noreturn"
|
||
|
__asm__(".Lfoo: movw r2, #:lower16:.Lbar - .Lfoo");
|
||
|
// CHECK: <inline asm>:1:8: error: instruction requires: armv6t2
|
||
|
// CHECK-NOT: error:
|