diff options
Diffstat (limited to 'test/Frontend/hexagon-target-basic.c')
-rw-r--r-- | test/Frontend/hexagon-target-basic.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Frontend/hexagon-target-basic.c b/test/Frontend/hexagon-target-basic.c new file mode 100644 index 0000000..5f95fa2 --- /dev/null +++ b/test/Frontend/hexagon-target-basic.c @@ -0,0 +1,9 @@ +// RUN: %clang_cc1 -emit-llvm -triple hexagon-unknown-unknown %s -S -o /dev/null +// REQUIRES: hexagon-registered-target + +// Testcase for bug 14744. Empty file is sufficient, since the problem +// was a bad data layout string in the Hexagon target causing an ICE +// when compiling any Hexagon program. + +int x; // In C99, a translation unit needs to have at least one declaration. + |