aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-12-09 10:39:18 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-12-09 10:39:18 +0000
commitbaab683a5a95fff67439dd069e004487a2c1bc8c (patch)
tree3df27254f9a38d6d4cb024361e98031e21a9ed4b
parentb50d7a35c2f55be382d462a02fd4e21d6b582162 (diff)
Add a triple to this test. It depends on little-endian bitfield layout.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169696 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGenCXX/2009-12-23-MissingSext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenCXX/2009-12-23-MissingSext.cpp b/test/CodeGenCXX/2009-12-23-MissingSext.cpp
index 1f195b48c7..2b42367842 100644
--- a/test/CodeGenCXX/2009-12-23-MissingSext.cpp
+++ b/test/CodeGenCXX/2009-12-23-MissingSext.cpp
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
+// RUN: %clang_cc1 %s -triple x86_64-unknown-unknown -emit-llvm -o - | FileCheck %s
// The store of p.y into the temporary was not
// getting extended to 32 bits, so uninitialized
// bits of the temporary were used. 7366161.