71 lines · plain
1; REQUIRES: arm-registered-target2; REQUIRES: aarch64-registered-target3; check .ll input4; RUN: %clang_cc1 -triple thumbv7-apple-ios8.0.0 -emit-llvm \5; RUN: -fembed-bitcode=all -x ir %s -o - \6; RUN: | FileCheck %s7; RUN: %clang_cc1 -triple thumbv7-apple-ios8.0.0 -emit-llvm \8; RUN: -fembed-bitcode=marker -x ir %s -o - \9; RUN: | FileCheck %s -check-prefix=CHECK-MARKER10; RUN: %clang_cc1 -triple aarch64 -emit-llvm \11; RUN: -fembed-bitcode=all -x ir %s -o - \12; RUN: | FileCheck %s -check-prefix=CHECK-ELF13; RUN: %clang_cc1 -triple spirv64-amd-amdhsa -emit-llvm \14; RUN: -fembed-bitcode=all -x ir %s -o - \15; RUN: | FileCheck %s -check-prefix=CHECK-ELF16 17; check .bc input18; RUN: %clang_cc1 -triple thumbv7-apple-ios8.0.0 -emit-llvm-bc \19; RUN: -x ir %s -o %t.bc20; RUN: %clang_cc1 -triple thumbv7-apple-ios8.0.0 -emit-llvm \21; RUN: -fembed-bitcode=all -x ir %t.bc -o - \22; RUN: | FileCheck %s23; RUN: %clang_cc1 -triple thumbv7-apple-ios8.0.0 -emit-llvm \24; RUN: -fembed-bitcode=bitcode -x ir %t.bc -o - \25; RUN: | FileCheck %s -check-prefix=CHECK-ONLY-BITCODE26; RUN: %clang_cc1 -triple thumbv7-apple-ios8.0.0 -emit-llvm \27; RUN: -fembed-bitcode=marker -x ir %t.bc -o - \28; RUN: | FileCheck %s -check-prefix=CHECK-MARKER29 30; run through -fembed-bitcode twice and make sure it doesn't crash31; RUN: %clang_cc1 -triple thumbv7-apple-ios8.0.0 -emit-llvm-bc \32; RUN: -fembed-bitcode=all -x ir %s -o - \33; RUN: | %clang_cc1 -triple thumbv7-apple-ios8.0.0 -emit-llvm \34; RUN: -fembed-bitcode=all -x ir - -o /dev/null35 36; check the magic number of bitcode at the beginning of the string37; CHECK: @llvm.embedded.module = private constant38; CHECK: c"\DE\C0\17\0B39; CHECK: section "__LLVM,__bitcode"40; CHECK: @llvm.cmdline = private constant41; CHECK: section "__LLVM,__cmdline"42 43; check warning options are not embedded44; RUN: %clang_cc1 -triple thumbv7-apple-ios8.0.0 -emit-llvm \45; RUN: -fembed-bitcode=all -x ir %s -o - -Wall -Wundef-prefix=TEST \46; RUN: | FileCheck %s -check-prefix=CHECK-WARNING47 48; CHECK-ELF: @llvm.embedded.module49; CHECK-ELF-SAME: section ".llvmbc", align 150; CHECK-ELF: @llvm.cmdline51; CHECK-ELF-SAME: section ".llvmcmd", align 152 53; CHECK-ONLY-BITCODE: @llvm.embedded.module = private constant54; CHECK-ONLY-BITCODE: c"\DE\C0\17\0B55; CHECK-ONLY-BITCODE: section "__LLVM,__bitcode"56; CHECK-ONLY-BITCODE-NOT: @llvm.cmdline = private constant57; CHECK-ONLY-BITCODE-NOT: section "__LLVM,__cmdline"58 59; CHECK-MARKER: @llvm.embedded.module60; CHECK-MARKER: constant [0 x i8] zeroinitializer61; CHECK-MARKER: section "__LLVM,__bitcode"62; CHECK-MARKER: @llvm.cmdline63; CHECK-MARKER: section "__LLVM,__cmdline"64 65; CHECK-WARNING-NOT: Wall66; CHECK-WARNING-NOT: Wundef-prefix67 68define i32 @f0() {69 ret i32 070}71