[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / llvm / test / CodeGen / X86 / mmx-bitcast-fold.ll
blobfb2517f5a891bee813bc338b044fa1e779dc0d0f
1 ; RUN: opt -mtriple=x86_64-- -passes=early-cse -earlycse-debug-hash < %s -S | FileCheck %s
3 ; CHECK: @foo(<1 x i64> zeroinitializer)
5 define void @bar() {
6 entry:
7   %0 = bitcast double 0.0 to <1 x i64>
8   %1 = call <1 x i64> @foo(<1 x i64> %0)
9   ret void
12 declare <1 x i64> @foo(<1 x i64>)