1*7c3d14c8STreehugger RobotREQUIRES: asserts 2*7c3d14c8STreehugger Robot 3*7c3d14c8STreehugger RobotRUN: %clangxx_cfi -c -o %t1.o %S/simple-fail.cpp 4*7c3d14c8STreehugger RobotRUN: opt -lowertypetests -debug-only=lowertypetests -o /dev/null %t1.o 2>&1 | FileCheck --check-prefix=B0 %s 5*7c3d14c8STreehugger RobotB0: {{1B|B@@}}: {{.*}} size 1 6*7c3d14c8STreehugger Robot 7*7c3d14c8STreehugger RobotRUN: %clangxx_cfi -DB32 -c -o %t2.o %S/simple-fail.cpp 8*7c3d14c8STreehugger RobotRUN: opt -lowertypetests -debug-only=lowertypetests -o /dev/null %t2.o 2>&1 | FileCheck --check-prefix=B32 %s 9*7c3d14c8STreehugger RobotB32: {{1B|B@@}}: {{.*}} size 24 10*7c3d14c8STreehugger RobotB32-NOT: all-ones 11*7c3d14c8STreehugger Robot 12*7c3d14c8STreehugger RobotRUN: %clangxx_cfi -DB64 -c -o %t3.o %S/simple-fail.cpp 13*7c3d14c8STreehugger RobotRUN: opt -lowertypetests -debug-only=lowertypetests -o /dev/null %t3.o 2>&1 | FileCheck --check-prefix=B64 %s 14*7c3d14c8STreehugger RobotB64: {{1B|B@@}}: {{.*}} size 54 15*7c3d14c8STreehugger RobotB64-NOT: all-ones 16*7c3d14c8STreehugger Robot 17*7c3d14c8STreehugger RobotRUN: %clangxx_cfi -DBM -c -o %t4.o %S/simple-fail.cpp 18*7c3d14c8STreehugger RobotRUN: opt -lowertypetests -debug-only=lowertypetests -o /dev/null %t4.o 2>&1 | FileCheck --check-prefix=BM %s 19*7c3d14c8STreehugger RobotBM: {{1B|B@@}}: {{.*}} size 84 20*7c3d14c8STreehugger RobotBM-NOT: all-ones 21