Files
clang-p2996/clang/test/CodeGenCXX/switch-case-folding-2.cpp
Ulrich Weigand 35668cc401 A number of test cases assume that an "int" parameter or return value
will be represented in the IR as a plain "i32" type.  This causes the
tests to spuriously fail on platforms where int is not a 32-bit type,
or where the ABI requires attributes like "signext" or "zeroext" to
be used.

This patch adds -triple or -target parameters to force those tests
to use the i386-unknown-unknown target.

llvm-svn: 166551
2012-10-24 12:22:56 +00:00

22 lines
402 B
C++

// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm %s -o - | FileCheck %s
// CHECK that we don't crash.
extern int printf(const char*, ...);
int test(int val){
switch (val) {
case 4:
do {
switch (6) {
case 6: do { case 5: printf("bad\n"); } while (0);
};
} while (0);
}
return 0;
}
int main(void) {
return test(5);
}
// CHECK: call i32 (i8*, ...)* @_Z6printfPKcz