diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2012-01-07 03:13:18 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2012-01-07 03:13:18 +0000 |
commit | 99b4237c1647156f0e1d3d7e03efdab23ed79778 (patch) | |
tree | d42c2ee376e2ae4534420e024205edc6b7cca8fe /test | |
parent | 977679d6034791fd48a344e5b990503ba50fc242 (diff) | |
download | external_llvm-99b4237c1647156f0e1d3d7e03efdab23ed79778.zip external_llvm-99b4237c1647156f0e1d3d7e03efdab23ed79778.tar.gz external_llvm-99b4237c1647156f0e1d3d7e03efdab23ed79778.tar.bz2 |
Split Finish into Finish and FinishImpl to have a common place to do end of
file error checking. Use that to error on an unfinished cfi_startproc.
The error is not nice, but is already better than a segmentation fault.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147717 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/MC/AsmParser/cfi-unfinished-frame.s | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/MC/AsmParser/cfi-unfinished-frame.s b/test/MC/AsmParser/cfi-unfinished-frame.s new file mode 100644 index 0000000..1182d52 --- /dev/null +++ b/test/MC/AsmParser/cfi-unfinished-frame.s @@ -0,0 +1,5 @@ +// RUN: not llvm-mc -filetype=asm -triple x86_64-pc-linux-gnu %s -o %t 2>%t.out +// RUN: FileCheck -input-file=%t.out %s + +.cfi_startproc +// CHECK: Unfinished frame |