diff options
author | Nick Desaulniers <ndesaulniers@google.com> | 2019-08-22 23:18:46 +0000 |
---|---|---|
committer | Nick Desaulniers <ndesaulniers@google.com> | 2019-08-22 23:18:46 +0000 |
commit | 2fb0cefb12c1d6b1e3b18fbf45f5e548f97640f1 (patch) | |
tree | 1c6607e2c83fe94063d23c72649c278a02dc4d06 | |
parent | 40360407d88c810115337bca51bc7af8add95ed7 (diff) | |
download | bcm5719-llvm-2fb0cefb12c1d6b1e3b18fbf45f5e548f97640f1.tar.gz bcm5719-llvm-2fb0cefb12c1d6b1e3b18fbf45f5e548f97640f1.zip |
[Bugfix] fix r369705 unit test
Summary:
Aliases aren't supported on OSX. Add a GNU target triple.
Reported-by: leonardchan
Reported-by: erik.pilkington
Reviewers: leonardchan, erik.pilkington
Reviewed By: leonardchan, erik.pilkington
Subscribers: dexonsmith, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D66622
llvm-svn: 369713
-rw-r--r-- | clang/test/CodeGen/alias.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/alias.c b/clang/test/CodeGen/alias.c index 296a707c44b..46568ee900c 100644 --- a/clang/test/CodeGen/alias.c +++ b/clang/test/CodeGen/alias.c @@ -2,7 +2,7 @@ // RUN: %clang_cc1 -triple i386-pc-linux-gnu -emit-llvm -o - %s | FileCheck -check-prefix=CHECKBASIC %s // RUN: %clang_cc1 -triple armv7a-eabi -mfloat-abi hard -emit-llvm -o - %s | FileCheck -check-prefix=CHECKCC %s // RUN: %clang_cc1 -triple armv7a-eabi -mfloat-abi hard -S -o - %s | FileCheck -check-prefix=CHECKASM %s -// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck -check-prefix=CHECKGLOBALS %s +// RUN: %clang_cc1 -triple aarch64-linux-gnu -emit-llvm -o - %s | FileCheck -check-prefix=CHECKGLOBALS %s int g0; // CHECKBASIC-DAG: @g0 = common global i32 0 |