diff options
author | Nemanja Ivanovic <nemanja.i.ibm@gmail.com> | 2017-07-25 17:04:12 +0000 |
---|---|---|
committer | Nemanja Ivanovic <nemanja.i.ibm@gmail.com> | 2017-07-25 17:04:12 +0000 |
commit | 05f7c942391c9f86859709f6599073482c126edf (patch) | |
tree | 195005cd76c23e650d739d3badb71c288b2987a4 | |
parent | 2cb6f208b6d00cbd720f1f7e2cf023f644b5f834 (diff) | |
download | bcm5719-llvm-05f7c942391c9f86859709f6599073482c126edf.tar.gz bcm5719-llvm-05f7c942391c9f86859709f6599073482c126edf.zip |
This test case is causing all PPC and SystemZ bots to remain red.
Notifying the author via Diffusion did not yield any answer. Therefore, I'm
adding the missing triple. I have no idea if this is the intended triple, but
it seems to fit the bill and should turn the bots back to green.
If the intended triple is a different one, please feel free to change it but I
need make this change to turn the bots back to green now.
llvm-svn: 308985
-rw-r--r-- | clang/test/CodeGen/x86-ms-inline-asm-enum_feature.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/x86-ms-inline-asm-enum_feature.cpp b/clang/test/CodeGen/x86-ms-inline-asm-enum_feature.cpp index f520daae334..8f8b1fed792 100644 --- a/clang/test/CodeGen/x86-ms-inline-asm-enum_feature.cpp +++ b/clang/test/CodeGen/x86-ms-inline-asm-enum_feature.cpp @@ -1,5 +1,5 @@ // REQUIRES: x86-registered-target -// RUN: %clang_cc1 %s -fasm-blocks -emit-llvm -o - | FileCheck %s +// RUN: %clang_cc1 %s -triple x86_64-pc-win32 -fasm-blocks -emit-llvm -o - | FileCheck %s namespace x { enum { A = 12 }; struct y_t { |