diff options
author | Akira Hatanaka <ahatanaka@apple.com> | 2019-05-09 18:32:16 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@apple.com> | 2019-05-09 18:32:16 +0000 |
commit | b1271cceca7a7e3702593805f8de253fe8a99293 (patch) | |
tree | 27107d65b08a41546915b5c4b5ff052bfc39a6ea /clang/test/CodeGenObjC | |
parent | 41ebe0ce64bfc5ea208fc391b6dabd39bf670cec (diff) | |
download | bcm5719-llvm-b1271cceca7a7e3702593805f8de253fe8a99293.tar.gz bcm5719-llvm-b1271cceca7a7e3702593805f8de253fe8a99293.zip |
Specify target triple to fix the tests I committed in r360359 that are
still failing.
llvm-svn: 360363
Diffstat (limited to 'clang/test/CodeGenObjC')
-rw-r--r-- | clang/test/CodeGenObjC/externally-initialized-selectors.m | 2 | ||||
-rw-r--r-- | clang/test/CodeGenObjC/forward-protocol-metadata-symbols.m | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenObjC/externally-initialized-selectors.m b/clang/test/CodeGenObjC/externally-initialized-selectors.m index d31a74fe0d0..6ec97d4322e 100644 --- a/clang/test/CodeGenObjC/externally-initialized-selectors.m +++ b/clang/test/CodeGenObjC/externally-initialized-selectors.m @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -fobjc-runtime=macosx-fragile-10.5 -o - -emit-llvm %s | FileCheck -check-prefix=FRAGILE %s -// RUN: %clang_cc1 -fobjc-runtime=macosx-10.14 -o - -emit-llvm %s | FileCheck -check-prefix=NONFRAGILE %s +// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-10.14 -o - -emit-llvm %s | FileCheck -check-prefix=NONFRAGILE %s // NONFRAGILE: @OBJC_SELECTOR_REFERENCES_ = internal externally_initialized global // FRAGILE: @OBJC_SELECTOR_REFERENCES_ = private externally_initialized global diff --git a/clang/test/CodeGenObjC/forward-protocol-metadata-symbols.m b/clang/test/CodeGenObjC/forward-protocol-metadata-symbols.m index 836ad06aaf5..4d81b9e44db 100644 --- a/clang/test/CodeGenObjC/forward-protocol-metadata-symbols.m +++ b/clang/test/CodeGenObjC/forward-protocol-metadata-symbols.m @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -fobjc-runtime=macosx-10.14 -emit-llvm -x objective-c %s -o - | FileCheck %s +// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-10.14 -emit-llvm -x objective-c %s -o - | FileCheck %s // rdar://16203115 @interface NSObject @end |