From: Chandler Carruth Date: Sun, 9 Dec 2012 10:39:18 +0000 (+0000) Subject: Add a triple to this test. It depends on little-endian bitfield layout. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=baab683a5a95fff67439dd069e004487a2c1bc8c;p=clang 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 --- 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.