aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PIC16/result_direction.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/PIC16/result_direction.ll')
-rw-r--r--test/CodeGen/PIC16/result_direction.ll13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CodeGen/PIC16/result_direction.ll b/test/CodeGen/PIC16/result_direction.ll
deleted file mode 100644
index 8549e21..0000000
--- a/test/CodeGen/PIC16/result_direction.ll
+++ /dev/null
@@ -1,13 +0,0 @@
-; RUN: llvm-as < %s | llc -march=pic16 | FileCheck %s
-
-@a = common global i16 0, align 1 ; <i16*> [#uses=2]
-
-define void @foo() nounwind {
-entry:
- %tmp = load i16* @a ; <i16> [#uses=1]
- %add = add nsw i16 %tmp, 1 ; <i16> [#uses=1]
- store i16 %add, i16* @a
-;CHECK: movlw 1
-;CHECK: addwf @a + 0, F
- ret void
-}