diff options
author | Chris Lattner <sabre@nondot.org> | 2010-09-02 23:21:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-09-02 23:21:44 +0000 |
commit | 6cd71f0c4026217a501e09dcc2198c6c7a462e44 (patch) | |
tree | 213a2dee6b0232e2e32c66d129733deeeacc149f /test/Assembler/comment.ll | |
parent | 1dbb3879e81c414733ee38ef6a5e657d7ed47e68 (diff) |
add a new "llvm-dis -show-annotations" option, which causes it to print
#uses comments, with a testcase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112906 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Assembler/comment.ll')
-rw-r--r-- | test/Assembler/comment.ll | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/Assembler/comment.ll b/test/Assembler/comment.ll new file mode 100644 index 0000000000..fe23d26fbe --- /dev/null +++ b/test/Assembler/comment.ll @@ -0,0 +1,20 @@ +; RUN: llvm-as < %s | llvm-dis -show-annotations | FileCheck -check-prefix=ANNOT %s +; RUN: llvm-as < %s | llvm-dis | FileCheck -check-prefix=BARE %s + +; The bare version of this file should not have any #uses lines. +; BARE: @B = +; BARE-NOT: #uses +; BARE: } + +@B = external global i32 +; ANNOT: @B = external global i32 ; [#uses=0] + +define <4 x i1> @foo(<4 x float> %a, <4 x float> %b) nounwind { +entry: + %cmp = fcmp olt <4 x float> %a, %b ; [#uses=1] + ret <4 x i1> %cmp +} + +; ANNOT: %cmp = fcmp olt <4 x float> %a, %b ; [#uses=1] + + |