brintos

brintos / llvm-project-archived public Read only

0
0
Text · 370 B · 0a367fa Raw
14 lines · c
1 // RUN: %clang_analyze_cc1 -analyzer-checker=core \2 // RUN:   -analyzer-checker=debug.ExprInspection \3 // RUN:   -triple x86_64-pc-linux-gnu \4 // RUN:   -verify %s5 6// Don't crash when using _BitInt(). Pin to the x86_64 triple for now,7// since not all architectures support _BitInt()8// expected-no-diagnostics9_BitInt(256) a;10_BitInt(129) b;11void c() {12  b = a;13}14