diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-26 21:53:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-26 21:53:08 +0000 |
commit | b657c4cdc3f37717851a5be12350f2296fd8c3bd (patch) | |
tree | 9bd020802dd94f5a676c5474decdd5f81566425d /llvm/test/CodeGen/ARM/aliases.ll | |
parent | 37bc78a5e2c1044fe4ff9568cd41eba2a61580c6 (diff) | |
download | bcm5719-llvm-b657c4cdc3f37717851a5be12350f2296fd8c3bd.tar.gz bcm5719-llvm-b657c4cdc3f37717851a5be12350f2296fd8c3bd.zip |
emit jump table an alias ".set" directives through MCStreamer as
assignments.
.set x, a-b
is the same as:
x = a-b
llvm-svn: 94596
Diffstat (limited to 'llvm/test/CodeGen/ARM/aliases.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/aliases.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/ARM/aliases.ll b/llvm/test/CodeGen/ARM/aliases.ll index b2c03147740..31c500756c4 100644 --- a/llvm/test/CodeGen/ARM/aliases.ll +++ b/llvm/test/CodeGen/ARM/aliases.ll @@ -1,5 +1,5 @@ ; RUN: llc < %s -mtriple=arm-linux-gnueabi -o %t -; RUN: grep set %t | count 5 +; RUN: grep { = } %t | count 5 ; RUN: grep globl %t | count 4 ; RUN: grep weak %t | count 1 |