1 // RUN: %clang_cc1 -triple i386-apple-darwin9 %s -emit-llvm -o - | FileCheck -check-prefix CHECK-X32 %s
2 // CHECK-X32: %union.command = type <{ ptr, [2 x i8] }>
4 // RUN: %clang_cc1 -triple x86_64-apple-darwin9 %s -emit-llvm -o - | FileCheck -check-prefix CHECK-X64 %s
5 // CHECK-X64: %union.command = type <{ ptr, [2 x i8] }>
8 typedef union command
{
12 unsigned char menuItemIndex
;