diff options
author | Warren Hunt <whunt@google.com> | 2013-10-11 20:19:00 +0000 |
---|---|---|
committer | Warren Hunt <whunt@google.com> | 2013-10-11 20:19:00 +0000 |
commit | 8f8bad723d0fb448c548d9f417fb36f6dfaee019 (patch) | |
tree | 06ebe0ae96b3d79a9d3e27cc65d189152ac16cfe /clang/test/CodeGen/pr2394.c | |
parent | adff3ae3c8e9f3c2bf5caae0d1cb7484fa1b1ff6 (diff) | |
download | bcm5719-llvm-8f8bad723d0fb448c548d9f417fb36f6dfaee019.tar.gz bcm5719-llvm-8f8bad723d0fb448c548d9f417fb36f6dfaee019.zip |
Adds Microsoft compatiable C++ record layout code to clang.
llvm-svn: 192494
Diffstat (limited to 'clang/test/CodeGen/pr2394.c')
-rw-r--r-- | clang/test/CodeGen/pr2394.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/pr2394.c b/clang/test/CodeGen/pr2394.c index f1091ec2fba..c92e364deda 100644 --- a/clang/test/CodeGen/pr2394.c +++ b/clang/test/CodeGen/pr2394.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s +// RUN: %clang_cc1 %s -triple i386-apple-darwin10 -emit-llvm -o - | FileCheck %s struct __attribute((packed)) x {int a : 24;}; int a(struct x* g) { // CHECK: load i24 |