diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-09 00:27:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-09 00:27:29 +0000 |
commit | 791fd482be470832fbf5020485946c55c60f9732 (patch) | |
tree | a8940d1de28a5a80246ac0d3a74fe5ecd4d78ee1 /test | |
parent | b34645fefd2084fe39ddbf62aecc535fd2c9b960 (diff) | |
download | external_llvm-791fd482be470832fbf5020485946c55c60f9732.zip external_llvm-791fd482be470832fbf5020485946c55c60f9732.tar.gz external_llvm-791fd482be470832fbf5020485946c55c60f9732.tar.bz2 |
* add some assertions for sanity checking.
* remove some old code that was needed when we'd put ESP in the scale instead of
the base of some instructions.
* Fix a bug with the P modifier in inline asm that caused us to drop it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75077 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/asm-modifier-P.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/asm-modifier-P.ll b/test/CodeGen/X86/asm-modifier-P.ll index b78f1a2..37f43e6 100644 --- a/test/CodeGen/X86/asm-modifier-P.ll +++ b/test/CodeGen/X86/asm-modifier-P.ll @@ -28,7 +28,7 @@ entry: ; CHECK-64: movl %gs:per_cpu__cpu_number,%eax ; CHECK-32: test2: -; FIXME broken: movl %gs:(%eax),%eax +; CHECK-32: movl %gs:(%eax),%eax %A = call i32 asm "movl %gs:${1:P},$0", "=r,*m"(i32* @per_cpu__cpu_number) nounwind |