diff options
Diffstat (limited to 'clang/test/CodeGen/2002-01-23-LoadQISIReloadFailure.c')
-rw-r--r-- | clang/test/CodeGen/2002-01-23-LoadQISIReloadFailure.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2002-01-23-LoadQISIReloadFailure.c b/clang/test/CodeGen/2002-01-23-LoadQISIReloadFailure.c new file mode 100644 index 0000000..ec454c8 --- /dev/null +++ b/clang/test/CodeGen/2002-01-23-LoadQISIReloadFailure.c @@ -0,0 +1,11 @@ +// RUN: %clang_cc1 -emit-llvm %s -o /dev/null + +/* Regression test. Just compile .c -> .ll to test */ +int foo(void) { + unsigned char *pp; + unsigned w_cnt; + + w_cnt += *pp; + + return w_cnt; +} |