mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 19:45:40 -04:00

This reverts r371497 (git commit 3d7e9ab7b9
)
Reorder `not` with `env` in these two tests so they pass:
Driver/rewrite-map-in-diagnostics.c
Index/crash-recovery-modules.m.
This will not be necessary after D66531 lands.
llvm-svn: 371552
16 lines
452 B
Objective-C
16 lines
452 B
Objective-C
// RUN: rm -rf %t
|
|
// RUN: mkdir %t
|
|
|
|
// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/cache \
|
|
// RUN: -F%S/Inputs/at-import-in-framework-header -I%S/Inputs/at-import-in-framework-header \
|
|
// RUN: -Watimport-in-framework-header -fsyntax-only %s \
|
|
// RUN: 2>%t/stderr
|
|
// RUN: FileCheck --input-file=%t/stderr %s
|
|
|
|
// CHECK: use of '@import' in framework header is discouraged
|
|
|
|
#import <A/A.h>
|
|
|
|
int bar() { return foo(); }
|
|
|