xref: /llvm-project/clang/test/CodeGen/extend-variable-liveness-wide-scalar.cpp (revision 4424c44c8c4ec8e071f5c5999fba216d36fb92c9)
1 // RUN: %clang_cc1 %s -emit-llvm -fextend-variable-liveness -triple x86_64-unknown-linux -o - | FileCheck %s
2 // REQUIRES: x86-registered-target
3 // This test checks that the fake uses can be generated in exception handling
4 // blocks and that we can emit fake uses for the __int128 data type.
5 
6 void bar();
7 
8 // CHECK: call void (...) @llvm.fake.use(i128 %
9 void foo(__int128 wide_int) {
10   bar();
11 }
12